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

C / C++ / MFC

 
GeneralRe: Notify Change Pin
ThatsAlok12-Apr-05 0:52
ThatsAlok12-Apr-05 0:52 
GeneralRe: Notify Change Pin
sunit512-Apr-05 0:57
sunit512-Apr-05 0:57 
GeneralLONGLONG Pin
fardak11-Apr-05 22:07
fardak11-Apr-05 22:07 
GeneralRe: LONGLONG [Edited] Pin
Joel Holdsworth11-Apr-05 22:56
Joel Holdsworth11-Apr-05 22:56 
GeneralRe: LONGLONG Pin
fardak11-Apr-05 23:22
fardak11-Apr-05 23:22 
GeneralRe: LONGLONG Pin
toxcct11-Apr-05 23:27
toxcct11-Apr-05 23:27 
GeneralRe: LONGLONG Pin
Joel Holdsworth12-Apr-05 0:06
Joel Holdsworth12-Apr-05 0:06 
GeneralRe: LONGLONG [edited] Pin
toxcct11-Apr-05 23:08
toxcct11-Apr-05 23:08 
datas are written in binary format in memory...

however, if you like to print an integer in binary format, this link[^] should help.
here is the sample :
<font color=#0000FF>LONGLONG</font> iVal = 125932;   <font color=#008000>// For example</font>
CString strVal = <font color=#808080>""</font>;      <font color=#008000>// CString because more easy to use</font>

<font color=#0000FF>for</font> (<font color=#0000FF>int</font> i = 0; i < <font color=#0000FF>sizeof</font>(LONGLONG); i++) {
    strVal.Insert(0, ((iVal & 0x00000001) ? <font color=#808080>"1"</font> : <font color=#808080>"0"</font>));
    iVal >>= 1;
}


cheers,



TOXCCT >>> GEII power
[toxcct][VisualCalc]
GeneralRe: LONGLONG Pin
fardak11-Apr-05 23:42
fardak11-Apr-05 23:42 
GeneralRe: LONGLONG Pin
toxcct11-Apr-05 23:47
toxcct11-Apr-05 23:47 
GeneralRe: LONGLONG Pin
fardak12-Apr-05 0:05
fardak12-Apr-05 0:05 
GeneralRe: LONGLONG Pin
Joel Holdsworth12-Apr-05 0:11
Joel Holdsworth12-Apr-05 0:11 
GeneralRe: LONGLONG Pin
fardak12-Apr-05 0:26
fardak12-Apr-05 0:26 
GeneralRe: LONGLONG Pin
Joel Holdsworth12-Apr-05 0:30
Joel Holdsworth12-Apr-05 0:30 
GeneralRe: LONGLONG Pin
fardak12-Apr-05 0:42
fardak12-Apr-05 0:42 
GeneralRe: LONGLONG Pin
Joel Holdsworth12-Apr-05 0:50
Joel Holdsworth12-Apr-05 0:50 
GeneralRe: LONGLONG Pin
toxcct12-Apr-05 0:14
toxcct12-Apr-05 0:14 
GeneralRe: LONGLONG Pin
fardak12-Apr-05 0:35
fardak12-Apr-05 0:35 
GeneralRe: LONGLONG Pin
fardak12-Apr-05 1:59
fardak12-Apr-05 1:59 
GeneralRe: LONGLONG Pin
Joel Holdsworth12-Apr-05 0:26
Joel Holdsworth12-Apr-05 0:26 
Generalb+ tree implementation in c Pin
chaitanyajonnalagadda11-Apr-05 21:18
chaitanyajonnalagadda11-Apr-05 21:18 
GeneralAutomated building Pin
JensB11-Apr-05 20:53
JensB11-Apr-05 20:53 
GeneralRe: Automated building Pin
CP Visitor12-Apr-05 4:47
CP Visitor12-Apr-05 4:47 
GeneralHelp me about DSP Pin
vtalau11-Apr-05 20:35
vtalau11-Apr-05 20:35 
GeneralRe: Help me about DSP Pin
namaskaaram11-Apr-05 21:15
namaskaaram11-Apr-05 21:15 

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.