VBGamer |
|
Picture vs Image... Rag on a Stick (0 replies, 0 views) (2001-Apr-3) Picture is the handle to the picture that you loaded into the box... hard to explain... ok, if you go to your form and set the picture property to being some photo or something like that (actually a handle to the photo), the form will have the photo on it. Then, if you had this code:
Private Sub Form_Load()
Me.Line (5, 5)-(100, 100), QBColor(12)
End Sub
Then once the form loads, there will be a line on it (shock horror). The Picture property will be a handle to the original picture without the line, and the Image property will be a handle to whatever is on the form.
So you would most probably be wanting the .Image property. |