|
-
Jun 24th, 2002, 10:25 AM
#1
Thread Starter
Addicted Member
events in controls
I made a dialog IDD_MY_DIALOG and associate procedure MY_DlgProc(....).
I have created a edit control IDC_EDIT1 and a button IDC_BUTTON1.
I can trap the clickevent of IDC_BUTTON in MY_DlgProc(....). as below
MY_DlgProc(....).
{
switch(msg)
{
case WM_CPMMAND:
switch(wParam)
{
case IDC_BUTTON1:
...........
}
}
}
Now How Can I trap the (EN_CHANGE) change event of IDC_EDIT1 in MY_DlgProc(....).
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
|