Click here to Skip to main content
16,010,114 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
0x01000000 is not a binary code, it is a hexadecimal number (note the '0x'). Each digit in a hexadecimal number represents four bits.
Hexadecimal Digital Binary
          0    0    0000
          1    1    0001
          2    2    0010
          3    3    0011
          4    4    0100
          5    5    0101
          6    6    0110
          7    7    0111
          8    8    1000
          9    9    1001
          A   10    1010
          B   11    1011
          C   12    1100
          D   13    1101
          E   14    1110
          F   15    1111

So when we say bit 24 is set we get this
bit       33     2     2      1      1
number    1098 7654 3210 9876 5432 1098 7654 3210
           |     |     |      |     |     |     |
binary    0000 0001 0000 0000 0000 0000 0000 0000

hex          0    1    0    0    0    0    0    0

Also look up bitwise operators in MSDN
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 
GeneralRe: hmmmm.... another one Pin
Erik Funkenbusch26-Mar-01 12:39
Erik Funkenbusch26-Mar-01 12:39 
GeneralRe: hmmmm.... another one Pin
Tim Deveaux26-Mar-01 13:31
Tim Deveaux26-Mar-01 13:31 

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.