Line Break in VBA Code

Meldja Posted messages 343 Registration date   Status Member 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 answers

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