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?
Printable View
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?
VB Code:
picture1.currentx = somevalue picture1.currenty = somevalue picture1.print "Print Something"
Doh! Of course!
Thanks vbgladiator
Here it is
picture1.currentx = your x position
picture1.currenty = Your y position
picture1.print "Type your word here"