Click here to Skip to main content
16,011,383 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralString resource length Pin
Hugo Hallman11-Jun-02 3:30
Hugo Hallman11-Jun-02 3:30 
GeneralRe: String resource length Pin
Martin Ziacek11-Jun-02 6:22
Martin Ziacek11-Jun-02 6:22 
GeneralRe: String resource length Pin
Michael Dunn11-Jun-02 15:00
sitebuilderMichael Dunn11-Jun-02 15:00 
General9 bit serial communication Pin
11-Jun-02 2:57
suss11-Jun-02 2:57 
General9 bit serial communication Pin
11-Jun-02 2:56
suss11-Jun-02 2:56 
GeneralRe: 9 bit serial communication Pin
redeemer11-Jun-02 3:19
redeemer11-Jun-02 3:19 
GeneralRe: 9 bit serial communication Pin
11-Jun-02 3:22
suss11-Jun-02 3:22 
GeneralRe: 9 bit serial communication Pin
Ravi Sudhakar11-Jun-02 4:18
Ravi Sudhakar11-Jun-02 4:18 
If you can read the 2 bytes in 2 characters
- if the 9th bit is the last bit (LSB) of second byte.
then logical and with 0x01 and if it's 0 then ur 9th bit is 0,
else if it's 1 - 9th bit is 1.

example : firstbyte = 0xf4
secondbyte = 0x01 (it can be either 1 or 0)
if(secondbyte & 0x01)
ninthbit = 1;
else
ninthbit = 0;

hope this helps..!
if you have further queries,post them..

thanks,
ravi
General.dsw or .dsp from a make file... Pin
Neha11-Jun-02 2:28
Neha11-Jun-02 2:28 
GeneralRe: .dsw or .dsp from a make file... Pin
Ravi Sudhakar11-Jun-02 3:50
Ravi Sudhakar11-Jun-02 3:50 
GeneralDr Watson Log Files Pin
Steve Thresher11-Jun-02 2:13
Steve Thresher11-Jun-02 2:13 
GeneralRe: Dr Watson Log Files Pin
Chris Losinger11-Jun-02 2:21
professionalChris Losinger11-Jun-02 2:21 
GeneralRe: Dr Watson Log Files Pin
Steve Thresher11-Jun-02 4:07
Steve Thresher11-Jun-02 4:07 
Questionhow to change font color! Pin
tiaozi11-Jun-02 2:03
tiaozi11-Jun-02 2:03 
AnswerRe: how to change font color! Pin
Gary Kirkham11-Jun-02 3:00
Gary Kirkham11-Jun-02 3:00 
QuestionIf ListView_GetSelectedCount returns more than 1, how do i know which items are selected? Pin
redeemer11-Jun-02 1:37
redeemer11-Jun-02 1:37 
AnswerRe: If ListView_GetSelectedCount returns more than 1, how do i know which items are selected? Pin
Chris Losinger11-Jun-02 4:05
professionalChris Losinger11-Jun-02 4:05 
GeneralRe: If ListView_GetSelectedCount returns more than 1, how do i know which items are selected? Pin
redeemer11-Jun-02 4:56
redeemer11-Jun-02 4:56 
GeneralRe: If ListView_GetSelectedCount returns more than 1, how do i know which items are selected? Pin
Chris Losinger11-Jun-02 5:29
professionalChris Losinger11-Jun-02 5:29 
GeneralRe: If ListView_GetSelectedCount returns more than 1, how do i know which items are selected? Pin
redeemer11-Jun-02 7:29
redeemer11-Jun-02 7:29 
Generalfor_each Pin
11-Jun-02 0:36
suss11-Jun-02 0:36 
GeneralRe: for_each Pin
Christian Graus11-Jun-02 1:26
protectorChristian Graus11-Jun-02 1:26 
GeneralRe: for_each Pin
Paul M Watt11-Jun-02 5:41
mentorPaul M Watt11-Jun-02 5:41 
GeneralRe: for_each Pin
Christian Graus11-Jun-02 10:29
protectorChristian Graus11-Jun-02 10:29 
GeneralRe: for_each Pin
Paul M Watt11-Jun-02 11:16
mentorPaul M Watt11-Jun-02 11:16 

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.