Hi!
is it possible to show dialog and hide page from where it was started
and close dialog to show back the page?
is it possible to show dialog and hide page from where it was started
and close dialog to show back the page?
Window.Hide(Application.GetWndHandle()); nRet = Dialog.Message("Notice", "Your message here.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1); if nRet == IDOK then Window.Show(Application.GetWndHandle()); end
[B]-- DialogEx:[/B] Window.Hide(Application.GetWndHandle()); DialogEx.Show("Dialog1"); Window.Show(Application.GetWndHandle());
[B]-- Dialog Message:[/B] Window.Hide(Application.GetWndHandle()); Dialog.Message("Notice", "Your message here.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1); Window.Show(Application.GetWndHandle());
tFiles = { "ir_ext_temp_0.tmp", "ir_ext_temp_1.tmp", "ir_ext_temp_2.tmp", }; for k,v in pairs (tFiles) do if File.DoesExist(_TempFolder.."\\"..v) then File.Delete(_TempFolder.."\\"..v, false, false, true, nil); end end
Comment