Results 1 to 2 of 2

Thread: abt writing on form

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2001
    Location
    India
    Posts
    53

    Cool

    hello

    is it possible to write on form without

    placing any control at desing time ?


    thanks

  2. #2
    Addicted Member
    Join Date
    Feb 2001
    Location
    Upstate NY
    Posts
    210

    i think so

    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"
    < o >

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width