hello is it possible to write on form without placing any control at desing time ? thanks
i can think of two ways of putting text on a form w/o controls. the first is: Code: me.autoredraw = true print "Your Text Goes Here" the problem with that code is that is is always in a line, and it can be erased with the cls command. 2: Code: dim newtxt as label newtxt.left = 340 'positions the control newtxt.top = 500' positions the control newtxt.caption="Your Text Here"
me.autoredraw = true print "Your Text Goes Here"
dim newtxt as label newtxt.left = 340 'positions the control newtxt.top = 500' positions the control newtxt.caption="Your Text Here"
< o >
Forum Rules