Hi,
Does somebody know hto disable an edit control in dialog procedure?
for example ,(attchements) if I uncheck the "Enable AF Lost Step check",
the two edit controls should become gray or disable to accept text input.
invoke SendDlgMessage hDlg,IDC_ED1,???,
Thanks in advance.
RGS!
Does somebody know hto disable an edit control in dialog procedure?
for example ,(attchements) if I uncheck the "Enable AF Lost Step check",
the two edit controls should become gray or disable to accept text input.
invoke SendDlgMessage hDlg,IDC_ED1,???,
Thanks in advance.
RGS!
invoke EnableWindow,HandleMax,FALSE
invoke EnableWindow,HandleMin,FALSE
invoke EnableWindow,HandleMin,FALSE
Thanks
i will try
Rgs!
i will try
Rgs!
invoke SendDlgItemMessage, hDlg, IDC_ED1, EM_SETREADONLY, TRUE, 0
Thanks, both do work.
The latter seem more simple.
RGS!
The latter seem more simple.
RGS!