Posts: 45
Threads: 13
Joined: Jul 2009
Hi all, i am stuck once again on something simple i used to know how to do
I have 2 dialogs
One dialog is quite large, other is quite small
Basically when the second one is open, i want it to open right above the big dialog and when the big dialog is dragged around, the small one will follow it exactly
Any help is much appreciated
Posts: 45
Threads: 13
Joined: Jul 2009
Nevermind i got it
Used GetWinXY and mov
Sorry this topic can be deleted if need be
Posts: 12,147
Threads: 143
Joined: Dec 2002
Function
dlg_connect_1
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
if(!ShowDialog("dlg_connect_1" &dlg_connect_1 0)) ret
;BEGIN DIALOG
;0 "" 0x90CF0AC8 0x0 0 0 217 129 "Dialog"
;1 Button 0x54030001 0x4 120 116 48 14 "OK"
;2 Button 0x54030000 0x4 170 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2030208 "*" "" ""
ret
;messages
int-- hDlg2
sel message
,case WM_INITDIALOG
,hDlg2=ShowDialog("dlg_connect_2" 0 0 hDlg 1)
,goto g1
,
,case WM_DESTROY
,DestroyWindow hDlg2
,
,case WM_COMMAND goto messages2
,
,case WM_MOVE
,;g1
,RECT r r2
,GetWindowRect hDlg &r
,GetWindowRect hDlg2 &r2
,mov r.left r.top-(r2.bottom-r2.top) hDlg2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1
Function
dlg_connect_2
;\Dialog_Editor
;BEGIN DIALOG
;0 "" 0x90C40048 0x80 0 0 217 39 "Dialog"
;END DIALOG
;DIALOG EDITOR: "" 0x2030208 "" "" ""