|
|
|
|
|
NetClientMessageBox (Function) In french: NetMessageBoxClient Displays a dialog box on each client computer connected to the server. The server is an FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV. Note This function is only enabled when all dialog boxes are closed on all client workstations. ServerID is int = NetStartServer()
IF NetClientMessageBox(ServerID, "Do you want to continue?", ...
"", netYesNo) = 1 THEN
...
END
Syntax
<Result> = NetClientMessageBox(<Server identifier> , <Message> , <Window title> , <Window type>)
<Result>: Integer Number of the button clicked in the message box by the last client computer. <Server identifier>: Integer Identifier of the server (returned by NetStartServer). <Message>: ANSI character string Text that must be displayed in the dialog box. <Window title>: ANSI character string Text displayed in the title bar of the window. <Window type>: Integer constant Type of the dialog box to display. | | netConfirm | Message box with Yes, No and Cancel buttons. | netInfo | Information message box (OK button only). | netOkCancel | Message box with OK and Cancel buttons. | netRetryCancel | Message box with Retry and Cancel buttons. | netRetryIgnore | Message box with Cancel, Retry and Ignore buttons. | netYesNo | Message box with Yes and No buttons. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|