Click here to Skip to main content
15,913,027 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionKilling exe after running Pin
pooja_friends10-Feb-09 20:47
pooja_friends10-Feb-09 20:47 
AnswerRe: Killing exe after running Pin
«_Superman_»10-Feb-09 20:52
professional«_Superman_»10-Feb-09 20:52 
GeneralRe: Killing exe after running Pin
pooja_friends10-Feb-09 23:33
pooja_friends10-Feb-09 23:33 
GeneralRe: Killing exe after running Pin
«_Superman_»10-Feb-09 23:43
professional«_Superman_»10-Feb-09 23:43 
GeneralRe: Killing exe after running Pin
David Crow11-Feb-09 4:37
David Crow11-Feb-09 4:37 
AnswerRe: Killing exe after running [modified] Pin
Sarath C10-Feb-09 22:42
Sarath C10-Feb-09 22:42 
GeneralRe: Killing exe after running Pin
Cedric Moonen10-Feb-09 22:46
Cedric Moonen10-Feb-09 22:46 
GeneralRe: Killing exe after running Pin
Sarath C10-Feb-09 22:53
Sarath C10-Feb-09 22:53 
AnswerRe: Killing exe after running Pin
Naveen10-Feb-09 23:09
Naveen10-Feb-09 23:09 
QuestionAdding button/control to an existing dialog Pin
Identity Undisclosed10-Feb-09 20:33
Identity Undisclosed10-Feb-09 20:33 
AnswerRe: Adding button/control to an existing dialog Pin
Eytukan10-Feb-09 20:54
Eytukan10-Feb-09 20:54 
GeneralRe: Adding button/control to an existing dialog Pin
Identity Undisclosed10-Feb-09 21:26
Identity Undisclosed10-Feb-09 21:26 
AnswerRe: Adding button/control to an existing dialog Pin
«_Superman_»10-Feb-09 20:56
professional«_Superman_»10-Feb-09 20:56 
GeneralRe: Adding button/control to an existing dialog Pin
Identity Undisclosed10-Feb-09 21:27
Identity Undisclosed10-Feb-09 21:27 
AnswerRe: Adding button/control to an existing dialog Pin
SandipG 10-Feb-09 20:57
SandipG 10-Feb-09 20:57 
GeneralRe: Adding button/control to an existing dialog Pin
Identity Undisclosed10-Feb-09 21:25
Identity Undisclosed10-Feb-09 21:25 
AnswerRe: Adding button/control to an existing dialog Pin
shark_1710-Feb-09 21:32
shark_1710-Feb-09 21:32 
AnswerRe: Adding button/control to an existing dialog Pin
Sarath C10-Feb-09 22:45
Sarath C10-Feb-09 22:45 
AnswerRe: Adding button/control to an existing dialog Pin
Stuart Dootson10-Feb-09 23:01
professionalStuart Dootson10-Feb-09 23:01 
QuestionReading data of a monochrome BMP file Pin
Member 211673610-Feb-09 20:08
Member 211673610-Feb-09 20:08 
AnswerRe: Reading data of a monochrome BMP file Pin
Code-o-mat10-Feb-09 21:49
Code-o-mat10-Feb-09 21:49 
GeneralRe: Reading data of a monochrome BMP file Pin
Member 211673610-Feb-09 22:26
Member 211673610-Feb-09 22:26 
GeneralRe: Reading data of a monochrome BMP file Pin
Code-o-mat10-Feb-09 23:00
Code-o-mat10-Feb-09 23:00 
GeneralRe: Reading data of a monochrome BMP file Pin
Member 211673611-Feb-09 4:33
Member 211673611-Feb-09 4:33 
AnswerRe: Reading data of a monochrome BMP file Pin
CPallini10-Feb-09 22:04
mveCPallini10-Feb-09 22:04 
From BITMAPINFOHEADER documentation [^], about biBitCount member equal to 1:

The bitmap is monochrome, and the bmiColors member of BITMAPINFO contains two entries. Each bit in the bitmap array represents a pixel. If the bit is clear, the pixel is displayed with the color of the first entry in the bmiColors table; if the bit is set, the pixel has the color of the second entry in the table.


Thus one byte of the bitmap array having value 205 represents eight adjacent pixels colors: 11001101 (1-second color of the color table, for instance black, 0-first entry of the color table, for instance white).
Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

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.