MsgBox

The MsgBox function displays a message box, waits for the user to click a button, and returns a value that indicates which button the user clicked.

Syntax :

MsgBox(Message,[Style],[Title])
Parameters Description
Message Type the pop up message here.
style Optional. Format to how the message has to look.
title Optional. The title of the message box. Default is the application name.

Example :

MsgBox(“Test”)

Result :

= Test