B
BDawg
Guest
In VB 6, I was trained to display lines of text in a picturebox. In one line, you could mix text with variables as follows.
picOut.print "The number in the array is"; Tab(30); array(i)
Now theyve taken the print ability of the picture box out of .NET, and Im very confused.
The upgrade wizard told me I need to be using the creategraphics extension of the picturebox, but I cant seem to use variables in it.
I tried using a textbox and a label (as I was forbid to do in vb6), but could not figure out how to put them all in the same line...neither recognise the ; .
Some of the tutorials online show practice problems using the console, but isnt the point to stay away from the console? Shouldnt I be able to display and format text in my forms?
Whats the new way of outputting and formatting text on screen? Im sure this is an easy question for the vb gurus out there.
picOut.print "The number in the array is"; Tab(30); array(i)
Now theyve taken the print ability of the picture box out of .NET, and Im very confused.
The upgrade wizard told me I need to be using the creategraphics extension of the picturebox, but I cant seem to use variables in it.
I tried using a textbox and a label (as I was forbid to do in vb6), but could not figure out how to put them all in the same line...neither recognise the ; .
Some of the tutorials online show practice problems using the console, but isnt the point to stay away from the console? Shouldnt I be able to display and format text in my forms?
Whats the new way of outputting and formatting text on screen? Im sure this is an easy question for the vb gurus out there.