Windows/MFC
GetDlgItem 컨트롤 disabled enabled
aucd29
2013. 10. 2. 13:55
[code]// 숨기기 보이기
GetDlgItem(IDC_PROGTORUN)->ShowWindow(TRUE);
// 사용정지 사용
GetDlgItem(IDC_PROGTORUN)->EnableWindow(TRUE);[/code]
GetDlgItem(IDC_PROGTORUN)->ShowWindow(TRUE);
// 사용정지 사용
GetDlgItem(IDC_PROGTORUN)->EnableWindow(TRUE);[/code]