Of course! Thanks. Maybe I can verify tonight and give you the points tomorrow.
(Boy do I hate the cryptic stuff carried over from C!!!)
Main Topics
Browse All TopicsThis is probably real easy, but I've never had to do it before...
Using Visual Cafe 3.0, I added a multiline textbox and wanted to add several lines of text. When I entered the text, I couldn't figure out how to get to the next line. I tried Ctrl-Enter, Shift-Enter, etc.
So I figured I can add the rest in the init() method, but I couldn't figure out how to append a CR (ASCII code 13/hex-0D) between lines. I looked into the lang library, but couldn't find the VB equivalent to CHR$(13).
So either:
* How do I add multiple lines (in design mode) to a multi-line text box?
-or-
* How do I append an ASCII newline to the end of a string?
(First working answer gets the points. But I probably won't be able to award until Monday...)
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I'm not aiming for the point, juz for your info, you can actually retrieve line separator in java.lang.System class by using:
String lineFeed = System.getProperty("line.s
For more info,
http://java.sun.com/docs/b
cheers!
Business Accounts
Answer for Membership
by: david_dPosted on 2001-05-31 at 15:11:48ID: 6143541
Hi,
try entering a string using the \n character for instance:
String myString = "Hello\nThere!";
It should reside on two lines!
I hope this helps.
David.