Machsupport Forum
Mach Discussion => General Mach Discussion => Topic started by: Giuno85 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?
-
I think you can do this:-
msg="first message " & chr(13) & "second message"
MsgBox(msg)
-
Hi Graham thanks for the reply, that's what I was looking for. Great, I searched everywhere but couldn't find the answer