|
-
Nov 26th, 2008, 09:01 PM
#1
Thread Starter
New Member
Updating Picture Box
What should I do for making this program. I want it to have a picturebox set that when you type in a specific textbox, the text you wrote in the textbox shows up in a specific spot IN the picturebox. Click a button, making it show up in the picturebox.
And maybe changing the way the font looks in the picturebox within runtime.
Thanks.
-
Nov 26th, 2008, 09:35 PM
#2
Re: Updating Picture Box
Make sure that the AutoRedraw property of the picture is set to True.
Then...
Picture1.CurrentX = <some number>
Picture1.CurrentY = <some number>
Picture1.Print Text1.Text
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|