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

C / C++ / MFC

 
AnswerRe: How to restrict the mouse move out of my window? Pin
valikac15-Sep-03 8:22
valikac15-Sep-03 8:22 
AnswerRe: How to restrict the mouse move out of my window? Pin
Rob Manderson15-Sep-03 10:58
protectorRob Manderson15-Sep-03 10:58 
GeneralRe: How to restrict the mouse move out of my window? Pin
Abin15-Sep-03 14:43
Abin15-Sep-03 14:43 
AnswerRe: How to restrict the mouse move out of my window? Pin
Michael Dunn15-Sep-03 17:11
sitebuilderMichael Dunn15-Sep-03 17:11 
AnswerRe: How to restrict the mouse move out of my window? Pin
Roger Allen16-Sep-03 1:49
Roger Allen16-Sep-03 1:49 
QuestionGet PocketPC's SD card size and free space from desktop through RAPI ? Pin
Kochise15-Sep-03 6:01
Kochise15-Sep-03 6:01 
GeneralDifferent Color values Pin
act_x15-Sep-03 5:23
act_x15-Sep-03 5:23 
GeneralRe: Different Color values Pin
David Crow15-Sep-03 6:13
David Crow15-Sep-03 6:13 
Well, since each component of the color has a range of 0-255, there are 16,777,216 possible colors.

for (int nRed = 0; nRed < 256; nRed++)
{
    for (int nGreen = 0; nGreen < 256; nGreen++)
    {
        for (int nBlue = 0; nBlue < 256; nBlue++)
        {
            some_unique_color = RGB(nRed, nGreen, nBlue);
        }
    }
}



Five birds are sitting on a fence.
Three of them decide to fly off.
How many are left?

GeneralRe: Different Color values Pin
act_x15-Sep-03 6:27
act_x15-Sep-03 6:27 
GeneralMultiple Instance of Executable Pin
varadharajanS15-Sep-03 5:20
varadharajanS15-Sep-03 5:20 
GeneralRe: Multiple Instance of Executable Pin
Navin15-Sep-03 6:50
Navin15-Sep-03 6:50 
QuestionSame Socket in Two Threads? Pin
Lee Menningen15-Sep-03 4:47
sussLee Menningen15-Sep-03 4:47 
AnswerRe: Same Socket in Two Threads? Pin
antlers15-Sep-03 5:20
antlers15-Sep-03 5:20 
AnswerRe: Same Socket in Two Threads? Pin
valikac15-Sep-03 8:23
valikac15-Sep-03 8:23 
GeneralOverlapping CStatics Pin
eugi15-Sep-03 4:31
eugi15-Sep-03 4:31 
GeneralRe: Overlapping CStatics Pin
Shog915-Sep-03 5:51
sitebuilderShog915-Sep-03 5:51 
GeneralRe: Overlapping CStatics Pin
eugi15-Sep-03 6:03
eugi15-Sep-03 6:03 
GeneralCBrush link Pin
R. Thomas15-Sep-03 4:27
R. Thomas15-Sep-03 4:27 
QuestionOffice Automation - Converting Doc to RTF does not save Header/Footer? Pin
GTS202015-Sep-03 4:25
GTS202015-Sep-03 4:25 
AnswerRe: Office Automation - Converting Doc to RTF does not save Header/Footer? Pin
David Crow15-Sep-03 4:34
David Crow15-Sep-03 4:34 
GeneralRe: Office Automation - Converting Doc to RTF does not save Header/Footer? Pin
GTS202016-Sep-03 1:47
GTS202016-Sep-03 1:47 
GeneralRe: Office Automation - Converting Doc to RTF does not save Header/Footer? Pin
David Crow16-Sep-03 5:17
David Crow16-Sep-03 5:17 
GeneralHelp wanted to create a C++.NET DLL Pin
Eric de la Harpe15-Sep-03 3:37
Eric de la Harpe15-Sep-03 3:37 
Generalapplication wide global variables Pin
r i s h a b h s15-Sep-03 3:35
r i s h a b h s15-Sep-03 3:35 
GeneralRe: application wide global variables Pin
David Crow15-Sep-03 4:00
David Crow15-Sep-03 4:00 

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.