DBWMsgBox1

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Library Reference > UserInterface >

DBWMsgBox1

Description

Shows a simple message box with a specified title.

Syntax

Function DBWMsgBox1(message,title)

Parameters

message

message to display

title

title of the window

dbwmsgbox1

 

See also

DBWMsgBox
DBWMsgBox2

 

Example

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