Carriage return in label

  • Thread starter Thread starter Nathan
  • Start date Start date
N

Nathan

Is there a way to put a carriage return between tex in a label? Neither
ControlChars.CR and vbCR seem to work.

Thanks,
Nathan
 
Nathan said:
Is there a way to put a carriage return between tex in a label?
Neither ControlChars.CR and vbCR seem to work.

Try ControlChars.CrLf or vbCrLf.
 
Nathan said:
Is there a way to put a carriage return between tex in a label? Neither
ControlChars.CR and vbCR seem to work.

Use 'ControlChars.NewLine' or 'Environment.NewLine' instead. Windows uses
'ControlChars.CrLf' as new line string, but other operating systems may use
other strings.
 
Thanks, fellas

Herfried K. Wagner said:
Use 'ControlChars.NewLine' or 'Environment.NewLine' instead. Windows uses
'ControlChars.CrLf' as new line string, but other operating systems may
use other strings.
 
Back
Top