Click here to Skip to main content
15,903,012 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: const type; Pin
Joaquín M López Muñoz23-Jan-05 4:50
Joaquín M López Muñoz23-Jan-05 4:50 
QuestionHow to idntification device manufacture of pocket pc? Pin
arash47122-Jan-05 7:24
arash47122-Jan-05 7:24 
GeneralSend cookie in HTTP request Pin
dorutzu22-Jan-05 6:32
dorutzu22-Jan-05 6:32 
Questionremove installed programs programmatically? Pin
LukeV22-Jan-05 6:11
LukeV22-Jan-05 6:11 
AnswerRe: remove installed programs programmatically? Pin
ThatsAlok23-Jan-05 18:13
ThatsAlok23-Jan-05 18:13 
GeneralWMA Decoder Source Code Pin
aRtsZ22-Jan-05 5:37
aRtsZ22-Jan-05 5:37 
QuestionPut different data types in binary form in a char array? Pin
capriole22-Jan-05 5:22
capriole22-Jan-05 5:22 
AnswerRe: Put different data types in binary form in a char array? Pin
toxcct22-Jan-05 7:53
toxcct22-Jan-05 7:53 
is this satisfy to you ?
<font color=#0000FF>long</font> myLong = 0x1254FA5C;    <font color=#008000>// For example...</font>
<font color=#0000FF>char</font> cTab[4] = {0};
 
<font color=#008000>// let's say cTab[0] is MSB</font>
cTab[0] = (myLong & 0xFF000000) >> 24;
cTab[1] = (myLong & 0x00FF0000) >> 16;
cTab[2] = (myLong & 0x0000FF00) >> 8;
cTab[3] = (myLong & 0x000000FF);
 
<font color=#008000>// cTab[] is now : {0x12, 0x54, 0xFA, 0x5C} in binary format</font>



TOXCCT >>> GEII power
[toxcct][VisualCalc]
GeneralRe: Put different data types in binary form in a char array? Pin
capriole25-Jan-05 5:39
capriole25-Jan-05 5:39 
GeneralRe: Put different data types in binary form in a char array? Pin
toxcct25-Jan-05 9:40
toxcct25-Jan-05 9:40 
QuestionRemedial UI Thread ? Pin
ddut22-Jan-05 4:48
ddut22-Jan-05 4:48 
AnswerRe: Remedial UI Thread ? Pin
Gary R. Wheeler22-Jan-05 10:50
Gary R. Wheeler22-Jan-05 10:50 
Generalplease tell me the difference Pin
vividwu22-Jan-05 3:32
vividwu22-Jan-05 3:32 
GeneralRe: please tell me the difference Pin
Bob Ciora22-Jan-05 3:49
Bob Ciora22-Jan-05 3:49 
GeneralGlobal Objects in MFC Programs Pin
phijophlip22-Jan-05 1:59
phijophlip22-Jan-05 1:59 
GeneralRe: Global Objects in MFC Programs Pin
Gary R. Wheeler22-Jan-05 3:15
Gary R. Wheeler22-Jan-05 3:15 
GeneralRe: Global Objects in MFC Programs Pin
Bob Ciora22-Jan-05 3:30
Bob Ciora22-Jan-05 3:30 
QuestionHow can I know if the user is pressing on a CButton for more than 250msec? (MFC CButton) Pin
rbid22-Jan-05 1:20
rbid22-Jan-05 1:20 
AnswerRe: How can I know if the user is pressing on a CButton for more than 250msec? (MFC CButton) Pin
Gary R. Wheeler22-Jan-05 2:25
Gary R. Wheeler22-Jan-05 2:25 
GeneralSome question about MCIWndSave() Pin
hcgiap21-Jan-05 22:40
hcgiap21-Jan-05 22:40 
GeneralRe: Some question about MCIWndSave() Pin
hcgiap24-Jan-05 7:59
hcgiap24-Jan-05 7:59 
GeneralUnit tests Pin
Ravi Bhavnani21-Jan-05 17:48
professionalRavi Bhavnani21-Jan-05 17:48 
GeneralRe: Unit tests Pin
Bob Ciora21-Jan-05 19:02
Bob Ciora21-Jan-05 19:02 
GeneralRe: Unit tests Pin
Henry miller24-Jan-05 4:47
Henry miller24-Jan-05 4:47 
GeneralRe: Unit tests Pin
Ravi Bhavnani24-Jan-05 5:11
professionalRavi Bhavnani24-Jan-05 5:11 

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.