Line Break in VBA Code

Meldja Posted messages 343 Registration date   Status Membre Last intervention   -  
 StartOof -
Hello,
I have a line in a msgbox that is too long, and I don't remember how to go to the next line without it making a line break. I'm not sure if my question is clear.
Thank you in advance
Configuration: Windows XP Internet Explorer 6.0

4 réponses

eriiic Posted messages 24581 Registration date   Status Contributeur Last intervention   7 281
 
Ahhhhh.
the character _ (with a space before)
Otherwise, I do msg="blablabla" & vbcr
msg=msg & "blablabla"
msgbox(msg)
eric
9
Meldja Posted messages 343 Registration date   Status Membre Last intervention   33
 
Ok, thank you very much.
0
rayane > Meldja Posted messages 343 Registration date   Status Membre Last intervention  
 
to return to the line, you need:
blablabla _
& blablabla _
& blablabla
0