Machsupport Forum

Mach Discussion => General Mach Discussion => Topic started by: Giuno85 on February 18, 2025, 10:23:25 AM

Title: MESSAGE BOX MULTILINE
Post 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?
Title: Re: MESSAGE BOX MULTILINE
Post by: Graham Waterworth on February 18, 2025, 08:07:30 PM
I think you can do this:-

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

Title: Re: MESSAGE BOX MULTILINE
Post by: Giuno85 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