|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Library Reference > UserInterface > DBWMsgBox1 |
Shows a simple message box with a specified title.
Function DBWMsgBox1(message,title)
message |
message to display |
|---|---|
title |
title of the window |

Sub main()
DBWinit(TRUE)
ok = DBWMsgBox1("hello world!","msgbox title")
End sub