-
Hi!
I forgot how to create an object in memory (so not on a form)... How did I do it again?
Code:
Dim Pb As PictureBox
Dim O As Object
Set O = Pb
O.AutoRedraw = True
This does not work... also
Code:
Dim Pb as New PictureBox
doesn't work...
I can't remember... Help?
-
Problem is I have to create a picturebox without showing it on a form. The won't be any forms in my app so that's why... The contents of the picturebox will be saved to a BMP file... Hiding a form won't be an option, also setting some .visible property to false is not good enough... Please...? anyone?