How can get value of keyboard pressed key?
-
-
Hi all, how can i get the value of pressed key of keyboard . how can check it is is "A to Z" or "0 tp 9" of special character. Thanks in advance.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
Handle
WM_CHAR
[^] notification. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke -
Handle
WM_CHAR
[^] notification. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain ClarkeCPallini wrote:
Handle WM_CHAR[^] notification.
What if the window had controls like editbox on it? (which is usually the case) :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Hi all, how can i get the value of pressed key of keyboard . how can check it is is "A to Z" or "0 tp 9" of special character. Thanks in advance.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
You may over-ride PreTranslateMessage()
BOOL CTrialDlg::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->message == WM_KEYDOWN){
if(pMsg->wParam >= 0x41 && pMsg->wParam <= 0x5A)
{
//something between a and z was pressed
}
else if(pMsg->wParam >= 0x30 && pMsg->wParam <= 0x39)
{
//a number was pressed
//check 0x60 through 0x69 to trap numbers
//from the numpad keys as well
}
}
return CDialog::PreTranslateMessage(pMsg);
}Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
CPallini wrote:
Handle WM_CHAR[^] notification.
What if the window had controls like editbox on it? (which is usually the case) :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
You may over-ride PreTranslateMessage()
BOOL CTrialDlg::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->message == WM_KEYDOWN){
if(pMsg->wParam >= 0x41 && pMsg->wParam <= 0x5A)
{
//something between a and z was pressed
}
else if(pMsg->wParam >= 0x30 && pMsg->wParam <= 0x39)
{
//a number was pressed
//check 0x60 through 0x69 to trap numbers
//from the numpad keys as well
}
}
return CDialog::PreTranslateMessage(pMsg);
}Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Rajesh R Subramanian wrote:
BOOL CTrialDlg::PreTranslateMessage(MSG* pMsg) { if(pMsg->lParam == WM_KEYDOWN){ if(pMsg->wParam >= 0x41 && pMsg->wParam <= 0x5A) { //something between a and z was pressed } else if(pMsg->wParam >= 0x30 && pMsg->wParam <= 0x39) { //a number was pressed //check 0x60 through 0x69 to trap numbers //from the numpad keys as well } } return CDialog::PreTranslateMessage(pMsg);}
How can use it on purticular EditBox.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
-
Rajesh R Subramanian wrote:
BOOL CTrialDlg::PreTranslateMessage(MSG* pMsg) { if(pMsg->lParam == WM_KEYDOWN){ if(pMsg->wParam >= 0x41 && pMsg->wParam <= 0x5A) { //something between a and z was pressed } else if(pMsg->wParam >= 0x30 && pMsg->wParam <= 0x39) { //a number was pressed //check 0x60 through 0x69 to trap numbers //from the numpad keys as well } } return CDialog::PreTranslateMessage(pMsg);}
How can use it on purticular EditBox.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
if(pMsg->hwnd == .m_hWnd) in your PreTranslateMessage
-@SuDhIrKuMaR@-
-
Rajesh R Subramanian wrote:
BOOL CTrialDlg::PreTranslateMessage(MSG* pMsg) { if(pMsg->lParam == WM_KEYDOWN){ if(pMsg->wParam >= 0x41 && pMsg->wParam <= 0x5A) { //something between a and z was pressed } else if(pMsg->wParam >= 0x30 && pMsg->wParam <= 0x39) { //a number was pressed //check 0x60 through 0x69 to trap numbers //from the numpad keys as well } } return CDialog::PreTranslateMessage(pMsg);}
How can use it on purticular EditBox.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
change the initial if condition to something like this:
//IDC_EDIT1 is ID of the edit control of your interest
if(pMsg->message == WM_KEYDOWN && GetFocus()==GetDlgItem(IDC_EDIT1))
{
...
}Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Hi all, how can i get the value of pressed key of keyboard . how can check it is is "A to Z" or "0 tp 9" of special character. Thanks in advance.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
Use Richedit instead of smple Editbox. There you can add function on message EN_MSGFILTER. This permits filtering of mouse and keyboard message in the control. TODO: The control will not send this notification unless you override the CDialog::OnInitDialog() function to send the EM_SETEVENTMASK message to the control with either the ENM_KEYEVENTS or ENM_MOUSEEVENTS flag ORed into the lParam mask. inside OnInitDialog mask the key events
m_rich.SetEventMask(m_rich.GetEventMask()|ENM_KEYEVENTS); `` void CExampleDlg::OnMsgfilter(NMHDR* pNMHDR, LRESULT* pResult) { MSGFILTER *pMsgFilter = reinterpret_cast(pNMHDR); //TODO: Add your control notification handler code here CString buf; if(pMsgFilter->msg==WM_CHAR ) { buf+=pMsgFilter->wParam; } *pResult = 0; }
buntyrolln
-
Hi all, how can i get the value of pressed key of keyboard . how can check it is is "A to Z" or "0 tp 9" of special character. Thanks in advance.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH
If you derive a class from
CEdit
, you can overrideOnChar()
."Love people and use things, not love things and use people." - Unknown
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
change the initial if condition to something like this:
//IDC_EDIT1 is ID of the edit control of your interest
if(pMsg->message == WM_KEYDOWN && GetFocus()==GetDlgItem(IDC_EDIT1))
{
...
}Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
if(pMsg->hwnd == GetDlgItem(IDC_EDIT1)->m_hWnd) ;P ptimization!
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
Do you mean to say that it isn't optimized? Have you examined the generated assembly? It would be essentially the same. Or, is that you're just kidding? :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Do you mean to say that it isn't optimized? Have you examined the generated assembly? It would be essentially the same. Or, is that you're just kidding? :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
I was kidding but it has to be true too. See, How come a getfocus() "call" be equivalent to a structure that's already coming in? Why do want to make an extra call to get the hwnd? Moreover getFocus() deals with CWnd* And how would the assemblies just match in parallel?
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
-
I was kidding but it has to be true too. See, How come a getfocus() "call" be equivalent to a structure that's already coming in? Why do want to make an extra call to get the hwnd? Moreover getFocus() deals with CWnd* And how would the assemblies just match in parallel?
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
It is not the assemblies being a "match". The essence of my statement is that the compiler will optimize it to a very reasonable extent, thereby making it the same. Simply because it "knows" what I'm trying to do. Everything becomes assembler instructions there. There's no API call or CWnd pointer to deal with. Do you agree that the following two snippets are essentially equally optimized? (not by way of code, but by way of the assembly the compiler generates)
while(condition)
{
CStringArray str;
__int64 nBigAss[10];
//use str and nBigAss
}CStringArray str;
__int64 nBigAss[10];
while(condition)
{
//use str and nBigAss
}One may argue "There is an allocation every time the loop runs". Well, I don't think so. (No, I ain't going to kill time generating and rearranging assembly with the PreTranslateMessage() stuff, but I can almost say it for sure) :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
It is not the assemblies being a "match". The essence of my statement is that the compiler will optimize it to a very reasonable extent, thereby making it the same. Simply because it "knows" what I'm trying to do. Everything becomes assembler instructions there. There's no API call or CWnd pointer to deal with. Do you agree that the following two snippets are essentially equally optimized? (not by way of code, but by way of the assembly the compiler generates)
while(condition)
{
CStringArray str;
__int64 nBigAss[10];
//use str and nBigAss
}CStringArray str;
__int64 nBigAss[10];
while(condition)
{
//use str and nBigAss
}One may argue "There is an allocation every time the loop runs". Well, I don't think so. (No, I ain't going to kill time generating and rearranging assembly with the PreTranslateMessage() stuff, but I can almost say it for sure) :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Yes modern compiler does these. But it will never optimize the way you say about "getfocus()". When you ask a compiler to make a call, it has to call. It doesn't know what you are going to do with the CWnd*. Not that intelligent dude ;p. So I still can't agree. :cool:
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
-
Yes modern compiler does these. But it will never optimize the way you say about "getfocus()". When you ask a compiler to make a call, it has to call. It doesn't know what you are going to do with the CWnd*. Not that intelligent dude ;p. So I still can't agree. :cool:
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
Actually, you were right the first time. I was just farting making up things, only because I said it. Probably you knew it too. And yes, I could have avoided a function call. You caught me there. :sigh: But ya know? I typed an answer on reading the query immediately. No opening of visual studio, no cheating. It couldn't be the most optimized answer and optimization can be left to the OP, right? You can understand, can't you? :-D
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Actually, you were right the first time. I was just farting making up things, only because I said it. Probably you knew it too. And yes, I could have avoided a function call. You caught me there. :sigh: But ya know? I typed an answer on reading the query immediately. No opening of visual studio, no cheating. It couldn't be the most optimized answer and optimization can be left to the OP, right? You can understand, can't you? :-D
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Rajesh R Subramanian wrote:
Actually, you were right the first time. I was just farting making up things, only because I said it. Probably you knew it too. And yes, I could have avoided a function call. You caught me there
I was actually kidding + tried to provoke you :D
Rajesh R Subramanian wrote:
But ya know? I typed an answer on reading the query immediately. No opening of visual studio, no cheating. It couldn't be the most optimized answer and optimization can be left to the OP, right? You can understand, can't you?
lol :) . Now I'm free to agre that you know more MFC than me. That's true.
OK,. what country just started work for the day ? The ASP.NET forum is flooded with retarded questions. -Christian Graus Best wishes to Rexx[^]
-
Actually, you were right the first time. I was just farting making up things, only because I said it. Probably you knew it too. And yes, I could have avoided a function call. You caught me there. :sigh: But ya know? I typed an answer on reading the query immediately. No opening of visual studio, no cheating. It couldn't be the most optimized answer and optimization can be left to the OP, right? You can understand, can't you? :-D
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Rajesh R Subramanian wrote:
It couldn't be the most optimized answer and optimization can be left to the OP, right?
I think it's not just about optimization here. GetFocus and GetDlgItem can potentially return temporary CWnd objects - so comparing them won't always be the right thing to do. So Vunic's code seems to be the right way here.
Regards, Nish
Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
My latest book : C++/CLI in Action / Amazon.com link -
Actually, you were right the first time. I was just farting making up things, only because I said it. Probably you knew it too. And yes, I could have avoided a function call. You caught me there. :sigh: But ya know? I typed an answer on reading the query immediately. No opening of visual studio, no cheating. It couldn't be the most optimized answer and optimization can be left to the OP, right? You can understand, can't you? :-D
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Rajesh R Subramanian wrote:
It couldn't be the most optimized answer and optimization can be left to the OP, right?
I think it's not just about optimization here. GetFocus and GetDlgItem can potentially return temporary CWnd objects - so comparing them won't always be the right thing to do. So Vunic's code seems to be the right way here.
Regards, Nish
Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
My latest book : C++/CLI in Action / Amazon.com linkIndeed, look at my previous reply (and vote) to him. :)
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP