NoUserPrompt
property (DataWindow object)
Description
Determines whether message boxes are displayed to the user during
DataWindow processing.
Applies to
DataWindows
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.NoUserPrompt |
Describe and Modify argument:
|
1 |
"DataWindow.NoUserPrompt { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
value |
A string specifying whether any message box Values are: Yes — No No — (Default) Message boxes |
Usage
Set the NoUserPrompt property to yes if the DataWindow is to be
used in a batch process when there is no possibility of end-user
intervention. Dialog boxes you can prevent from displaying include the
Error, Print, Retrieve, CrossTab, Expression, SaveAs, Import, Query,
RichText, Filter, and Sort dialog boxes.
Examples
|
1 2 |
dw1.Object.DataWindow.NoUserPrompt = "yes" dw1.Modify("DataWindow.NoUserPrompt=no") |