-
Hi I'm relatively new to VB, and I'm taking an intro course in it. I've come across a little problem here. Here's the scenario:
In the sub form_load, I make a call to another sub
Within that sub I have something like "picMessage.Print "Hello"
And this displays nothing! This only happens when the sub is called from the form_load.
Can someone please explain????
Thanks,
Mike
-
Probably the AutoRedraw property is set to False. I think if you set it to True (either in Design time or in Run time before the print command) the problem will be solved.
Sorry for the lack of explanation, but it is bedtime for me now (its 5 AM over here :o). Try F1.
-
worked!