hi,
1. How do save a picture to application directory in a folder named "Picture" with ID number (eg. 0000001.jpg)?
2. How to read and populate the picture from the directory to PictureBox?
Currently I'm saving the picture in C:\
Any help with sample code wl guide me to finish my task. Thanx
Rgds,
jpdbay
1. How do save a picture to application directory in a folder named "Picture" with ID number (eg. 0000001.jpg)?
2. How to read and populate the picture from the directory to PictureBox?
Currently I'm saving the picture in C:\
VB.NET:
obj.GetPicture("c:\test1.bmp")
PictureBox1.Image = Image.FromFile("c:\test1.bmp")
Any help with sample code wl guide me to finish my task. Thanx
Rgds,
jpdbay