Click here to Skip to main content
15,892,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: %systemroot% \System32 Pin
Gerry26-Mar-01 23:57
Gerry26-Mar-01 23:57 
QuestionHow to write codes that load a text file? Pin
leonwoo26-Mar-01 22:12
leonwoo26-Mar-01 22:12 
AnswerRe: How to write codes that load a text file? Pin
l a u r e n27-Mar-01 7:32
l a u r e n27-Mar-01 7:32 
GeneralBand Explorer Problem. Pin
Hushpappy26-Mar-01 21:48
Hushpappy26-Mar-01 21:48 
GeneralRe: Band Explorer Problem. Pin
Erik Thompson27-Mar-01 6:21
sitebuilderErik Thompson27-Mar-01 6:21 
GeneralCDateTimeCtrl's background color Pin
26-Mar-01 21:15
suss26-Mar-01 21:15 
Questionright or left control-key ??? Pin
26-Mar-01 20:09
suss26-Mar-01 20:09 
AnswerRe: right or left control-key ??? Pin
PJ Arends26-Mar-01 23:17
professionalPJ Arends26-Mar-01 23:17 
the right key (extended key) is pressed if bit 24 of lParam is set. so use the bitwise AND operator (&) to check that bit.
if (lParam & 0x01000000)
    {
    // An extended key
    }
Smile | :)
GeneralRe: right or left control-key ??? Pin
27-Mar-01 9:12
suss27-Mar-01 9:12 
GeneralRe: right or left control-key ??? Pin
PJ Arends27-Mar-01 13:13
professionalPJ Arends27-Mar-01 13:13 
GeneralRe: right or left control-key ??? Pin
Ryan Park27-Mar-01 14:54
Ryan Park27-Mar-01 14:54 
GeneralRe: right or left control-key ??? Pin
PJ Arends27-Mar-01 15:31
professionalPJ Arends27-Mar-01 15:31 
QuestionSimple ASP Object problem?!? Pin
26-Mar-01 17:58
suss26-Mar-01 17:58 
GeneralSTL Map and function pointers Pin
Jamie Nordmeyer26-Mar-01 9:20
Jamie Nordmeyer26-Mar-01 9:20 
GeneralRe: STL Map and function pointers Pin
Chris Losinger26-Mar-01 9:33
professionalChris Losinger26-Mar-01 9:33 
GeneralRe: STL Map and function pointers Pin
Jamie Nordmeyer26-Mar-01 9:37
Jamie Nordmeyer26-Mar-01 9:37 
GeneralRe: STL Map and function pointers Pin
Chris Losinger26-Mar-01 9:44
professionalChris Losinger26-Mar-01 9:44 
GeneralRe: STL Map and function pointers Pin
Jamie Nordmeyer26-Mar-01 9:48
Jamie Nordmeyer26-Mar-01 9:48 
GeneralRe: STL Map and function pointers Pin
Erik Funkenbusch26-Mar-01 12:11
Erik Funkenbusch26-Mar-01 12:11 
GeneralRe: STL Map and function pointers Pin
26-Mar-01 14:57
suss26-Mar-01 14:57 
GeneralRe: STL Map and function pointers Pin
26-Mar-01 15:00
suss26-Mar-01 15:00 
Generalhmmmm.... another one Pin
l a u r e n26-Mar-01 3:03
l a u r e n26-Mar-01 3:03 
GeneralRe: hmmmm.... another one Pin
26-Mar-01 10:45
suss26-Mar-01 10:45 
GeneralRe: hmmmm.... another one Pin
26-Mar-01 10:47
suss26-Mar-01 10:47 
GeneralRe: hmmmm.... another one Pin
l a u r e n26-Mar-01 11:30
l a u r e n26-Mar-01 11:30 

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.