Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

How to add a linefeed to a string.


1 reply to this topic

kerber

kerber
  • Members
  • 13 posts

Posted 27 August 2003 - 16:56

Hi,

I'd like to add an additional linefeed to a string.
In VBScript this would be

strSQL = strSQL + strLine + vbCrLf

Does anyone know how this can be done in InstallScript.

Thanks

Klaus

kerber

kerber
  • Members
  • 13 posts

Posted 28 August 2003 - 09:35

I figured it out on my own:

svSQL = svSQL + svLine + "\n";