Is it possible to add a label to a picture box control at run time and save it directly as a part of the picture/ graphic (.bmp)
Printable View
Is it possible to add a label to a picture box control at run time and save it directly as a part of the picture/ graphic (.bmp)
You don't need a label to do that: you can simply Print text in the wanted location.
Code:Option Explicit
Private Sub Command1_Click()
Picture1.AutoRedraw = True
Picture1.CurrentX = 100
Picture1.CurrentY = 200
Picture1.Print "Hello!"
Picture1.Refresh
End Sub
Thank u Merri,but i needed a label
Just draw the label on, or copy/paste it to, the picturebox.