-
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.
-
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