ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Net functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Warning
This function is kept for backward compatibility. It is recommended to use a standard FTP, SSH or SCP server. For more details, see Handling files on an FTP server and Standard FTP functions.
Displays a dialog box on the screen of the FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV.
Remark: To allow (or not) the use of this function on an FTP/RPC server, call NetServerOption.
Example
ConnectRPC is int
ConnectRPC = NetConnect("148.61.125.245", RPCServer, "GUEST", "")
...
// Displays a YesNo dialog box on the server
IF NetRemoteMessageBox(ConnectRPC, ...
"Do you want to continue?", "", netYesNo) = 1 THEN
...
END
Syntax
<Result> = NetRemoteMessageBox(<Connection identifier> , <Message> , <Window title> , <Window type>)
<Result>: Integer
Number of the button clicked in the message box on the server.
<Connection identifier>: Integer
Identifier of the connection for the client computer (returned by NetConnect).
<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.
netConfirmMessage box with Yes, No and Cancel buttons.
netInfoInformation message box (OK button only).
netOkCancelMessage box with OK and Cancel buttons.
netRetryCancelMessage box with Retry and Cancel buttons.
netRetryIgnoreMessage box with Cancel, Retry and Ignore buttons.
netYesNoMessage box with Yes and No buttons.
Component: wd290com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help