How to line feed in a text box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a text box(multiline=true) and want to have two tow extra lines on the
top.
how can i do this.


Thanks in advance.
V Suresh
 
In VB you should be using vbCrLf constant:
"Hi," + vbCrLf + " how are you?"
 
The current code written for both PDA(C#) and Web(VB) works fine as it is.
The problem is when i sync the data from PDA to the Web SQL server the web
application is showing these (\r\/n) characters.

Do u mean i need to replace every time to vbCrlf while saving in PDA.
And while displaying it in PDA again i have to replace vbCrlf to \r\n.

Is there a better way to solve this. Can i place Chr(13) instead. (Will that
work out, i have not tried)
 
Back
Top