IWinApplicationClass.NotImplementedBox

Syntax

NotImplementedBox([ParentWindow: IWin32Window = Null]);

Parameters

ParentWindow. The parent window, for which the dialog box opens modally. The Null value is passed by default, the dialog box opens modally for the current window.

Description

The NotImplementedBox method opens the dialog box with the following message: "Sorry, this function is under development".

Comments

The dialog box contains only the OK button and looks as follows:

Fore Example

Executing the example requires a form and a button named Button1 on the form.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    WinApplication.NotImplementedBox;
End Sub Button1OnClick;

Clicking the button opens the dialog box with the message that function is under development.

Fore.NET Example

Executing the example requires a .NET form with a button.

Imports Prognoz.Platform.Forms.Net;
Imports Prognoz.Platform.Interop.Ui;

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    WinAppCls: WinApplicationClass = New WinApplicationClassClass();
Begin
    WinAppCls.NotImplementedBox(New IWin32WindowForeAdapter(Self));
End Sub;

Clicking the button opens the dialog box with the message that function is under development.

See also:

IWinApplicationClass