PDA

Click to See Complete Forum and Search --> : abt writing on form


kulkarni_ajit
Feb 21st, 2001, 04:51 AM
hello:)

is it possible to write on form without

placing any control at desing time ?


thanks

Rh0ads
Feb 21st, 2001, 08:31 AM
i can think of two ways of putting text on a form w/o controls. the first is:


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:


dim newtxt as label
newtxt.left = 340 'positions the control
newtxt.top = 500' positions the control
newtxt.caption="Your Text Here"