Hello Guest it is June 20, 2025, 02:53:51 PM

Author Topic: MESSAGE BOX MULTILINE  (Read 1455 times)

0 Members and 1 Guest are viewing this topic.

MESSAGE BOX MULTILINE
« on: February 18, 2025, 10:23:25 AM »
Hello everyone, is it possible to create a multi-line MSGBOX message box?
That is, always in the same window window have a first line with a message and immediately below another with a different message?

Offline Graham Waterworth

*
  • *
  •  2,783 2,783
  • Yorkshire Dales, England
Re: MESSAGE BOX MULTILINE
« Reply #1 on: February 18, 2025, 08:07:30 PM »
I think you can do this:-

msg="first message " & chr(13) & "second message"
MsgBox(msg)

Without engineers the world stops
Re: MESSAGE BOX MULTILINE
« Reply #2 on: February 19, 2025, 03:13:52 AM »
Hi Graham thanks for the reply, that's what I was looking for. Great, I searched everywhere but couldn't find the answer