Hi, how can i do this that a messagebox with a ok and cance button are displayes on any screen even a event has created?
i found that code in the forum but doesnt work
i need this for my Standby.Watcher plugin which are nearly completed.
Can i fire a dialogbox with a OK button from a process plugin?
thank you for any tips or sample code(s)
MoPhat
i found that code in the forum but doesnt work
Code:
GUIDialogYesNo dlgYesNo = (GUIDialogYesNo)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_OK);
dlgYesNo.SetHeading("Test message");
dlgYesNo.SetLine(1, "message...");
dlgYesNo.DoModal(GUIWindowManager.ActiveWindow);
if (dlgYesNo.IsConfirmed)
{
GUIWindowManager.ActivateWindow(35);
}
i need this for my Standby.Watcher plugin which are nearly completed.
Can i fire a dialogbox with a OK button from a process plugin?
thank you for any tips or sample code(s)
MoPhat