Click here to Skip to main content
15,868,141 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: classes and inline functions Pin
David Crow14-Mar-08 6:03
David Crow14-Mar-08 6:03 
QuestionBitmap button Pin
Schehaider_Aymen1-Dec-07 2:34
Schehaider_Aymen1-Dec-07 2:34 
AnswerRe: Bitmap button Pin
Hamid_RT1-Dec-07 3:14
Hamid_RT1-Dec-07 3:14 
GeneralRe: Bitmap button Pin
Schehaider_Aymen1-Dec-07 3:18
Schehaider_Aymen1-Dec-07 3:18 
GeneralRe: Bitmap button Pin
Schehaider_Aymen1-Dec-07 3:23
Schehaider_Aymen1-Dec-07 3:23 
GeneralRe: Bitmap button Pin
Hamid_RT1-Dec-07 4:44
Hamid_RT1-Dec-07 4:44 
QuestionProblem in capturing the enter event of an edit control. Pin
chandu0041-Dec-07 0:50
chandu0041-Dec-07 0:50 
AnswerRe: Problem in capturing the enter event of an edit control. Pin
Jijo.Raj2-Dec-07 0:59
Jijo.Raj2-Dec-07 0:59 
Hello Chandu,

You can identify whether the handle is that of an edit control by getting the class name. Please go throught the code below.

TCHAR strClassName[255];<br />
CString csEditBoxClassName( _T("Edit")); <br />
<br />
// Get Class name of the wnd from handle.<br />
::GetClassName( pMsg->hwnd, strClassName, 255 );<br />
<br />
if( 0 == csEditBoxClassName.CompareNoCase( strClassName ))<br />
{<br />
	// Yes. Its an edit control.<br />
	// TODO: Do your stuffs here.<br />
}


I can give you one more hint. Since you have 200 controls, i guess you have created those controls dynamically by providing a range of control ids. If thats the case, you can use the resource id to identify whether its an edit control. For getting the resource id from handle,

UINT nResourceId = GetWindowLong( pMsg->hwnd, GWL_ID );

If you still have problems or if this is not what you needs, let me know. Smile | :)

Regards,
Jijo.


________________________________

Yesterday is history,
Tomorrow is a mystery,
But today is a present.

QuestionNo CPen? Pin
Haakon S.1-Dec-07 0:29
Haakon S.1-Dec-07 0:29 
AnswerRe: No CPen? Pin
CPallini1-Dec-07 0:44
mveCPallini1-Dec-07 0:44 
GeneralRe: No CPen? Pin
Haakon S.1-Dec-07 0:56
Haakon S.1-Dec-07 0:56 
GeneralRe: No CPen? Pin
Haakon S.1-Dec-07 1:38
Haakon S.1-Dec-07 1:38 
QuestionThreads Pin
krishna Vuppala30-Nov-07 23:30
krishna Vuppala30-Nov-07 23:30 
AnswerRe: Threads Pin
CPallini1-Dec-07 0:00
mveCPallini1-Dec-07 0:00 
GeneralRe: Threads Pin
krishna Vuppala1-Dec-07 0:46
krishna Vuppala1-Dec-07 0:46 
GeneralRe: Threads Pin
CPallini1-Dec-07 6:55
mveCPallini1-Dec-07 6:55 
GeneralRe: Threads Pin
Hamid_RT1-Dec-07 8:08
Hamid_RT1-Dec-07 8:08 
Questionabout unary_function Pin
George_George30-Nov-07 22:52
George_George30-Nov-07 22:52 
AnswerRe: about unary_function Pin
CPallini1-Dec-07 0:43
mveCPallini1-Dec-07 0:43 
Questioni have some question about binary stream file. Pin
buffering8330-Nov-07 22:07
buffering8330-Nov-07 22:07 
QuestionRe: i have some question about binary stream file. Pin
CPallini30-Nov-07 23:41
mveCPallini30-Nov-07 23:41 
AnswerRe: i have some question about binary stream file. Pin
buffering831-Dec-07 0:53
buffering831-Dec-07 0:53 
GeneralRe: i have some question about binary stream file. Pin
CPallini1-Dec-07 2:53
mveCPallini1-Dec-07 2:53 
GeneralRe: i have some question about binary stream file. Pin
buffering831-Dec-07 3:02
buffering831-Dec-07 3:02 
GeneralRe: i have some question about binary stream file. Pin
CPallini1-Dec-07 6:47
mveCPallini1-Dec-07 6:47 

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.