Using Visual Basic 6.0
I want the program to be able to print the carriage return.
txtDisplay.Text = "Welcome to" + Chr(13) + "my demo."
All I get is
Welcome to|my demo.
With some strange character instead!
I want the program to be able to print the carriage return.
txtDisplay.Text = "Welcome to" + Chr(13) + "my demo."
All I get is
Welcome to|my demo.
With some strange character instead!
Comment