Click here to Skip to main content
15,920,508 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Skinning an application [modified] Pin
Hamid_RT4-Jun-06 0:51
Hamid_RT4-Jun-06 0:51 
QuestionMemDC bug? Pin
Jim Crafton3-Jun-06 12:25
Jim Crafton3-Jun-06 12:25 
AnswerRe: MemDC bug? [modified] Pin
bob169723-Jun-06 13:43
bob169723-Jun-06 13:43 
GeneralRe: MemDC bug? Pin
Jim Crafton3-Jun-06 13:47
Jim Crafton3-Jun-06 13:47 
QuestionTutorial About WinFX Pin
Muhammad Chitrali3-Jun-06 9:39
Muhammad Chitrali3-Jun-06 9:39 
AnswerRe: Tutorial About WinFX Pin
Hamid_RT4-Jun-06 0:55
Hamid_RT4-Jun-06 0:55 
QuestionError in alpha blending Pin
Luksky3-Jun-06 9:14
Luksky3-Jun-06 9:14 
AnswerRe: Error in alpha blending Pin
Jim Crafton3-Jun-06 13:49
Jim Crafton3-Jun-06 13:49 
AnswerRe: Error in alpha blending Pin
Hamid_RT4-Jun-06 0:53
Hamid_RT4-Jun-06 0:53 
GeneralRe: Error in alpha blending Pin
Luksky4-Jun-06 3:34
Luksky4-Jun-06 3:34 
QuestionUsing OSK.EXE inside W2K or XP Pin
jumbojetjames3-Jun-06 8:25
jumbojetjames3-Jun-06 8:25 
Questionwhy c++/mfc Pin
Muhammad Chitrali3-Jun-06 8:07
Muhammad Chitrali3-Jun-06 8:07 
AnswerRe: why c++/mfc Pin
bob169723-Jun-06 9:03
bob169723-Jun-06 9:03 
AnswerRe: why c++/mfc Pin
Rick York3-Jun-06 9:33
mveRick York3-Jun-06 9:33 
GeneralRe: why c++/mfc Pin
Trollslayer4-Jun-06 9:30
mentorTrollslayer4-Jun-06 9:30 
AnswerRe: why c++/mfc Pin
George L. Jackson3-Jun-06 10:00
George L. Jackson3-Jun-06 10:00 
QuestionHow to redefine HEX symbols Pin
tbrake3-Jun-06 7:56
tbrake3-Jun-06 7:56 
AnswerRe: How to redefine HEX symbols Pin
bob169723-Jun-06 8:47
bob169723-Jun-06 8:47 
GeneralRe: How to redefine HEX symbols Pin
tbrake3-Jun-06 8:57
tbrake3-Jun-06 8:57 
GeneralRe: How to redefine HEX symbols Pin
bob169723-Jun-06 9:24
bob169723-Jun-06 9:24 
GeneralRe: How to redefine HEX symbols Pin
bob169723-Jun-06 9:38
bob169723-Jun-06 9:38 
GeneralRe: How to redefine HEX symbols Pin
tbrake3-Jun-06 10:07
tbrake3-Jun-06 10:07 
I am not sure but i think i need the numeric interpretation.

The controller is a GPIB card (16 BIT connector) - to the receiver there is an initialisation string send to as char "N00,TH0,V0123456789:;<=>?\n" changing anything here will end up in errors.

...


ah i think i can do this like :
<br />
int hex = 0x2ABCDEF;<br />
cmd[0] = ((hex & 0x0F000000)>>24)+48;<br />
cmd[1] = ((hex & 0x00F00000)>>20)+48;<br />
cmd[2] = ((hex & 0x000F0000)>>16)+48;<br />
cmd[3] = ((hex & 0x0000F000)>>12)+48;<br />
...<br />


OK i try this Cool | :cool:

THX


Timen
QuestionPolygon and FrameRgn Pin
includeh103-Jun-06 7:00
includeh103-Jun-06 7:00 
AnswerRe: Polygon and FrameRgn Pin
bob169723-Jun-06 8:13
bob169723-Jun-06 8:13 
GeneralRe: Polygon and FrameRgn Pin
includeh103-Jun-06 9:34
includeh103-Jun-06 9:34 

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.