PDA

Click to See Complete Forum and Search --> : [RESOLVED] [2.0] Pocket PC


Fromethius
Dec 5th, 2006, 09:13 PM
I am using a pocket pc. How do I make a new line using code? Thanks for any help

jmcilhinney
Dec 5th, 2006, 09:25 PM
ControlChars.NewLine

Fromethius
Dec 5th, 2006, 09:30 PM
isn't in my framework apparently

jmcilhinney
Dec 5th, 2006, 09:44 PM
Oops! I forgot I was in C# land. ControlChars is a VB feature. It was added to VB because it doesn't support C-style escape sequences, like "\r\n", which is a line break.

Fromethius
Dec 5th, 2006, 09:44 PM
alright thanks