|
The feature allows you to generate message boxes easily.
MZ-Tools offers the following ways to launch the :
- The menu.
- The context menu of a code window.
- The menu on the toolbar.
- The shortcut customized in the window, tab.
The window is the following:

In this window you can enter the following:
- : the title of the message box. It can be or a custom one.
- : the icon of the message box or none.
- : the prompt of the message box.
- : the combination of buttons of the message box and the button which will be preselected when showing the message box.
- : check this setting if the message box should be accepted before continuing using any application and not only the current application.
- : check this setting if you want to display text with alignment to the right.
- : check this setting if you want to display text in a right-to-left reading order (Hebrew and Arabic systems).
- :the help identifier (optional). If you enter a value, will be used.
Once you have entered all the values, you can:
- the message box.
- the message box code into the current procedure.
- the message box code to the clipboard for later use.
If the message box includes only the OK button, then the generated code will be like this:
Call MsgBox("The file can not be copied.", vbExclamation, App.Title)
Otherwise it will be like this:
Select Case MsgBox("The file can not be copied.", vbAbortRetryIgnore + vbExclamation + vbDefaultButton1, App.Title)
Case vbAbort
Case vbRetry
Case vbIgnore
End Select
See Also:
Shortcuts Customization
|