hello:)
is it possible to write on form without
placing any control at desing time ?
thanks
Printable View
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:
the problem with that code is that is is always in a line, and it can be erased with the cls command. 2:Code:me.autoredraw = true
print "Your Text Goes Here"
Code:dim newtxt as label
newtxt.left = 340 'positions the control
newtxt.top = 500' positions the control
newtxt.caption="Your Text Here"