Form_Load() + Print Command?
Hey,
Im trying to make it so when this form loads it immedeatly prints into the picture box... Really easy thing to do, i dunno why its not doing it!!!!!!!!!!!!
VB Code:
Private Sub Form_Load()
Picture1.Cls
Picture1.Print "Print!"
End Sub
Any ideas???
ooh And When i do it to Form 2 I would just write
And so on?? I dunno??
Re: Form_Load() + Print Command?
Since the Picture Box isn't visible when the Form_Load event is fired you either need to move the code to the Form_Paint event or set the AutoRedraw property of the PictureBox to True.
Re: Form_Load() + Print Command?
Works like a charm
Thankss! :wave: