public static bool Execute(IModalTask Task, string InTitle, string InMessage, out string ErrorMessage)
		{
			ModalTaskWindow Window = new ModalTaskWindow(Task, InTitle, InMessage);
			Window.ShowDialog();
			ErrorMessage = Window.ErrorMessage;
			return Window.bSucceeded;
		}
Exemple #2
0
        public static bool Execute(IModalTask Task, string InTitle, string InMessage, out string ErrorMessage)
        {
            ModalTaskWindow Window = new ModalTaskWindow(Task, InTitle, InMessage);

            Window.ShowDialog();
            ErrorMessage = Window.ErrorMessage;
            return(Window.bSucceeded);
        }