|
-
May 10th, 1999, 11:39 PM
#1
Disabling a Button, and executing other progs...
I'm having 2 major problems right now. First, I need to find out how to disable a button(stop laughing, I'm new). I also need to know how to Winexec something and after that's done, Winexec something else. Please help.
-
May 11th, 1999, 01:37 AM
#2
Re: Disabling a Button, and executing other progs...
I don't know about the second question (I still pretty new at this too), but I do know the first one. Just use something like this...
CButton* pB = (CButton*)GetDlgItem(IDC_BUTTONNAME);
pB->EnableWindow(FALSE);
-
May 11th, 1999, 01:48 AM
#3
Re: Disabling a Button, and executing other progs...
Try ShellExecute() or ShellExecuteEx()
Sally
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|