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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top