Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Email code for new line in (.oleMessage.MsgNoteText )
Message
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00598419
Message ID:
00598473
Views:
18
>Thank you Sergey,
>
>Sergey could you please tell me what does it mean by CHR(13) + CHR(10)

CHR(13) - Carriage return
CHR(10) - Line Feed
CHR(13) + CHR(10) - New Line
You can use it this way
lcCRLF = CHR(13) + CHR(10)
oleMessage.MsgNoteText = "The following Submittal has been issued for merit review " + ;
  sub.Project_no+" "+sub.Workpkg_no+" "+alltrim(STR(sub_seq,9,2)) + ;
  lcCRLF + "New Line with some additional info" + ;
  lcCRLF + "One more line ...." 
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform