Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Email code for new line in (.oleMessage.MsgNoteText )
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00598419
Message ID:
00598473
Vues:
20
>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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform