Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Restart a dialog from within the dialog
#1
I am in need to restart a dialog, under certain conditions, from within the dialog. A simple simulation routine to this end follows :

Function Dialog43
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;3 Button 0x54032000 0x0 19 13 48 14 "Restart"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040308 "*" "" "" ""

if(!ShowDialog(dd &sub.DlgProc 0)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG

,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case 3
,atend Dialog43
,DT_Cancel hDlg
,case IDOK
,case IDCANCEL
ret 1

It works, but only once. It can be restarted only the first time, not for a second. Any advice is much appreciated. Many thanks in advance.
#2
Macro Macro477
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;3 Button 0x54032000 0x0 19 13 48 14 "Restart"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040308 "*" "" "" ""

;g1
int r=ShowDialog(dd &sub.DlgProc 0)
if(r=3) goto g1
if(!r) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG

,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case 3
,DT_Ok hDlg 3
,case IDOK
,case IDCANCEL
ret 1
#3
Many thanks, sincerely.


Forum Jump:


Users browsing this thread: 1 Guest(s)