MsgBox Method (ProgressDialog)Displays a simple dialog box containing a message, one or more push buttons, and an optional icon. This message dialog box is guaranteed not to be covered by the ProgressDialog used to create it. Note: The Dialog object also possesses a MsgBox function -- but that function is not guaranteed to cover the ProgressDialog box. return_value = object.MsgBox text,
caption, flags Arguments
Remarks To use this MsgBox method, you must already have created a ProgressDialog object, and you must use the dialog object to invoke MsgBox. See also the StayOnTop property. Example ' Create the progress dialog box Set PDlg = CreateObject("TPFSoftware.ProgressDialog") |