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

C / C++ / MFC

 
AnswerRe: How to detect Internet connection Pin
Ravi Bhavnani3-Jul-03 3:08
professionalRavi Bhavnani3-Jul-03 3:08 
GeneralRe: How to detect Internet connection Pin
Ryan Binns3-Jul-03 4:10
Ryan Binns3-Jul-03 4:10 
GeneralReal Time performance problem Pin
Anonymous3-Jul-03 0:40
Anonymous3-Jul-03 0:40 
GeneralRe: Real Time performance problem Pin
Ryan Binns3-Jul-03 1:17
Ryan Binns3-Jul-03 1:17 
GeneralRe: Real Time performance problem Pin
Valeria Bogdevich3-Jul-03 1:27
Valeria Bogdevich3-Jul-03 1:27 
Generaltrap a-z keys!!! Pin
xxhimanshu2-Jul-03 23:18
xxhimanshu2-Jul-03 23:18 
GeneralRe: trap a-z keys!!! Pin
Mil102-Jul-03 23:37
Mil102-Jul-03 23:37 
GeneralRe: trap a-z keys!!! Pin
Mathias S.3-Jul-03 0:26
Mathias S.3-Jul-03 0:26 
Like it says in winuser.h

/* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
/* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */

Example...
void CMyCtrl::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
  if( nChar == 'A' )
  {
     // Do Stuff
  }
}

GeneralIAccessible Pin
anshumanshinde2-Jul-03 21:01
anshumanshinde2-Jul-03 21:01 
GeneralIn-proc to out-of-proc Pin
In-At2-Jul-03 20:27
In-At2-Jul-03 20:27 
GeneralCComboBoxEx Pin
bigmirror2-Jul-03 17:36
bigmirror2-Jul-03 17:36 
QuestionHow to use Vector in the VC++? Pin
David12152-Jul-03 17:25
David12152-Jul-03 17:25 
AnswerRe: How to use Vector in the VC++? Pin
Abbas_Riazi2-Jul-03 19:12
professionalAbbas_Riazi2-Jul-03 19:12 
AnswerRe: How to use Vector in the VC++? Pin
Andrew Walker2-Jul-03 19:37
Andrew Walker2-Jul-03 19:37 
GeneralCDialogBar Pin
alex742-Jul-03 14:32
alex742-Jul-03 14:32 
GeneralRe: CDialogBar Pin
dexo2-Jul-03 15:27
dexo2-Jul-03 15:27 
GeneralSetting DIR/file in edit box Pin
dark-hawk2-Jul-03 13:31
dark-hawk2-Jul-03 13:31 
GeneralRe: Setting DIR/file in edit box Pin
PJ Arends2-Jul-03 14:00
professionalPJ Arends2-Jul-03 14:00 
GeneralRe: Setting DIR/file in edit box Pin
dark-hawk2-Jul-03 14:32
dark-hawk2-Jul-03 14:32 
GeneralCreateWindow Failed Pin
ElizabethC2-Jul-03 12:42
ElizabethC2-Jul-03 12:42 
GeneralRe: CreateWindow Failed Pin
Magnus Westin2-Jul-03 13:00
Magnus Westin2-Jul-03 13:00 
GeneralRe: CreateWindow Failed Pin
ElizabethC2-Jul-03 13:19
ElizabethC2-Jul-03 13:19 
GeneralRe: CreateWindow Failed Pin
Magnus Westin2-Jul-03 13:23
Magnus Westin2-Jul-03 13:23 
GeneralRe: CreateWindow Failed Pin
ElizabethC2-Jul-03 13:38
ElizabethC2-Jul-03 13:38 
GeneralRe: CreateWindow Failed Pin
ElizabethC2-Jul-03 13:48
ElizabethC2-Jul-03 13:48 

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.