excel - Suppress word-wrap in msgbox -


how suppress word wrap in message box? want extend message box length , keep string on single line.

msg = msgbox("a new file has been created:" & vbcrlf & vbcrlf & _           "file name: " & newfilename & vbcrlf & _           "file path: " & myfilepath & vbcrlf & _           "full path: " & newfile, vbokonly, "file creation successful") 

you can see message box output in pic below. full path long fit on 1 line gets wrapped on next line.

enter image description here


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -