How can I check, if there is an ID in my resource
eg.
IsId(oDialog,4711)
Frank-Peter
How can I check, if there is an ID in my resource
eg.
IsId(oDialog,4711)
Before or after the controls have been REDEFINEd?
EMG
EnricoMaria wrote:Before or after the controls have been REDEFINEd?
EMG
I don't know, sorry. It seems you can't.
EMG
Frank,
You can only do it from the ON INIT clause of the ACTIVATE DIALOG ... command:
GetDlgItem( oDlg:hWnd , nID ) --> hWndControl
hWndControl will be zero if it does not exists
You are right, it works!
EMG