Click here to Skip to main content
15,917,320 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Open Dialog problem Pin
Gary R. Wheeler25-Sep-04 2:33
Gary R. Wheeler25-Sep-04 2:33 
GeneralRe: Open Dialog problem Pin
Plons26-Sep-04 5:29
Plons26-Sep-04 5:29 
Generalhidding a file for good Pin
gamitech24-Sep-04 23:27
gamitech24-Sep-04 23:27 
GeneralRe: hidding a file for good Pin
Brian Delahunty25-Sep-04 0:12
Brian Delahunty25-Sep-04 0:12 
GeneralRe: hidding a file for good Pin
Moak26-Sep-04 23:15
Moak26-Sep-04 23:15 
GeneralEN_CHANGE Pin
gamitech24-Sep-04 23:06
gamitech24-Sep-04 23:06 
GeneralRe: EN_CHANGE Pin
Andrzej Markowski24-Sep-04 23:44
Andrzej Markowski24-Sep-04 23:44 
GeneralRe: EN_CHANGE Pin
Andrzej Markowski3-Oct-04 16:31
Andrzej Markowski3-Oct-04 16:31 
This is a working code:
LRESULT CALLBACK wndproc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_COMMAND:
// (HWND) lParam - handle of control 
// LOWORD(wParam) - item, control, or accelerator identifier 
// HIWORD(wParam) - notification code 
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) 
{
EndDialog(hDlg, LOWORD(wParam));
return TRUE;
}
else if(LOWORD(wParam) == IDC_EDIT1)
{
switch(HIWORD(wParam))
{
case EN_CHANGE:
MessageBox(NULL,"EN_CHANGE","Edit Notify",MB_OK);
return TRUE;
case EN_UPDATE:
MessageBox(NULL,"EN_UPDATE","Edit Notify",MB_OK);
return TRUE;
}
}
break;
}
return FALSE;
}


____________________
A.M.

Generalproblem with NT service Pin
JimmyRopes24-Sep-04 23:04
professionalJimmyRopes24-Sep-04 23:04 
GeneralRe: problem with NT service Pin
ThatsAlok24-Sep-04 23:26
ThatsAlok24-Sep-04 23:26 
GeneralRe: problem with NT service Pin
JimmyRopes25-Sep-04 3:38
professionalJimmyRopes25-Sep-04 3:38 
GeneralRe: problem with NT service Pin
Blake Miller27-Sep-04 12:18
Blake Miller27-Sep-04 12:18 
GeneralRe: problem with NT service Pin
JimmyRopes27-Sep-04 18:45
professionalJimmyRopes27-Sep-04 18:45 
GeneralProblem with Serial communication Pin
Jbardo24-Sep-04 22:50
Jbardo24-Sep-04 22:50 
GeneralSetting attributes to CFile Pin
ledallam24-Sep-04 20:47
ledallam24-Sep-04 20:47 
GeneralRe: Setting attributes to CFile Pin
BAIJUMAX24-Sep-04 22:50
professionalBAIJUMAX24-Sep-04 22:50 
GeneralRe: Setting attributes to CFile Pin
Andrzej Markowski24-Sep-04 22:52
Andrzej Markowski24-Sep-04 22:52 
GeneralRepainting part of a dialog Pin
Fantmx24-Sep-04 18:12
Fantmx24-Sep-04 18:12 
GeneralRe: Repainting part of a dialog Pin
ThatsAlok24-Sep-04 20:19
ThatsAlok24-Sep-04 20:19 
GeneralRe: Repainting part of a dialog Pin
Michael Dunn25-Sep-04 10:13
sitebuilderMichael Dunn25-Sep-04 10:13 
GeneralUnresolved external symbol _main error Pin
Anonymous24-Sep-04 18:09
Anonymous24-Sep-04 18:09 
Generalcombo box Pin
PrathibaDhinakaran24-Sep-04 17:26
PrathibaDhinakaran24-Sep-04 17:26 
GeneralRe: combo box Pin
Maximilien25-Sep-04 1:41
Maximilien25-Sep-04 1:41 
GeneralRe: combo box Pin
PrathibaDhinakaran11-Oct-04 16:15
PrathibaDhinakaran11-Oct-04 16:15 
GeneralFileSystemWatcher.OnChanged Pin
persian_boi24-Sep-04 16:56
persian_boi24-Sep-04 16:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.