Results 1 to 4 of 4

Thread: Writing on a picturebox

  1. #1

    Thread Starter
    Addicted Member Guru's Avatar
    Join Date
    May 2000
    Location
    sulking in the cupboard under the stairs
    Posts
    237

    Writing on a picturebox

    I want to print 1 letter on a picture box but I want to specify its location EXACTLY (and I don't mean padding it with vbcrlfs and spaces)

    How can I do this?
    Another light-hearted post from Guru

  2. #2
    Frenzied Member vbgladiator's Avatar
    Join Date
    May 2001
    Posts
    1,950
    VB Code:
    1. picture1.currentx = somevalue
    2.     picture1.currenty = somevalue
    3.     picture1.print "Print Something"

  3. #3

    Thread Starter
    Addicted Member Guru's Avatar
    Join Date
    May 2000
    Location
    sulking in the cupboard under the stairs
    Posts
    237
    Doh! Of course!

    Thanks vbgladiator
    Another light-hearted post from Guru

  4. #4
    haravinth
    Guest
    Here it is

    picture1.currentx = your x position

    picture1.currenty = Your y position

    picture1.print "Type your word here"

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