I am not sure I understand the importance of hParent in relation to it's parent dialog. If I create a main dialog like this,
DIALOG NEW hParent,"Main",0,0,100,100 TO firstDlg
and then create a secondary dialog which is called from the 'Main' dialog like this,
DIALOG NEW firstDlg,"Secondary",0,0,100,100 TO secondDlg
What is the value of firstDlg to the secondary dialog. It is not available to the secondary dialog without making it a global or am I missing something.
David Hoff Jr
DIALOG NEW hParent,"Main",0,0,100,100 TO firstDlg
and then create a secondary dialog which is called from the 'Main' dialog like this,
DIALOG NEW firstDlg,"Secondary",0,0,100,100 TO secondDlg
What is the value of firstDlg to the secondary dialog. It is not available to the secondary dialog without making it a global or am I missing something.
David Hoff Jr
Comment