How to insert a picture when form load and how to set it in the left side of the form. Thanks
Printable View
How to insert a picture when form load and how to set it in the left side of the form. Thanks
VB Code:
Form1.Picture = LoadPicture("C:\Path\Picture.jpg")
Thanks Mc Brain but do you know how to adjust the size of image like to put it in the left side of form ?
VB Code:
picture.left = form.left picture.top = form.top
If you load the image in the form.... it will be loaded at the top and left.
Thanks all, I got it but I have one question just curious. I saw PaintPicture object but I don't know when do you use it ? Is it different with Picture object ?
Yes... PaintPicture is not an object, but a method.