Click here to Skip to main content
15,907,392 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How can I tell if an app has shut down? Pin
Jeremy Falcon21-Jun-02 5:26
professionalJeremy Falcon21-Jun-02 5:26 
GeneralRe: How can I tell if an app has shut down? Pin
Paresh Solanki21-Jun-02 6:01
Paresh Solanki21-Jun-02 6:01 
GeneralRe: How can I tell if an app has shut down? Pin
Carlos Antollini21-Jun-02 6:12
Carlos Antollini21-Jun-02 6:12 
AnswerRe: How can I tell if an app has shut down? Pin
Martin Ziacek21-Jun-02 5:30
Martin Ziacek21-Jun-02 5:30 
AnswerRe: How can I tell if an app has shut down? Pin
Jason Henderson21-Jun-02 9:48
Jason Henderson21-Jun-02 9:48 
Generalusing bits for program control Pin
21-Jun-02 4:59
suss21-Jun-02 4:59 
GeneralRe: using bits for program control Pin
Martin Ziacek21-Jun-02 5:50
Martin Ziacek21-Jun-02 5:50 
GeneralRe: using bits for program control Pin
Jason Henderson21-Jun-02 9:53
Jason Henderson21-Jun-02 9:53 
Use a DWORD like this:

#define ACTION1  2
#define ACTION2  4
#define ACTION3  8
#define ACTION4  16
#define ACTION5  32

DWORD actions = ACTION3 | ACTION5;

if (actions & ACTION3)
  // do something

...


Jason Henderson
quasi-homepage
articles
"Like it or not, I'm right!"


GeneralRe: using bits for program control Pin
PJ Arends21-Jun-02 18:48
professionalPJ Arends21-Jun-02 18:48 
Generalproblem with Cristi Posea's Control Bar usage Pin
21-Jun-02 4:57
suss21-Jun-02 4:57 
GeneralWindows XP locks on waveOutReset() and waveInReset() Pin
JohnnyNin21-Jun-02 4:45
JohnnyNin21-Jun-02 4:45 
GeneralRecommendations Pin
Al_Pennyworth21-Jun-02 4:27
Al_Pennyworth21-Jun-02 4:27 
GeneralRe: Recommendations Pin
Bill Wilson21-Jun-02 9:20
Bill Wilson21-Jun-02 9:20 
QuestionHow do i find out if a graphics device supports the GetPixel API? Pin
redeemer21-Jun-02 4:12
redeemer21-Jun-02 4:12 
AnswerRe: How do i find out if a graphics device supports the GetPixel API? Pin
Chris Losinger21-Jun-02 4:59
professionalChris Losinger21-Jun-02 4:59 
GeneralOdd list box behaviour Pin
Jason Hooper21-Jun-02 4:05
Jason Hooper21-Jun-02 4:05 
GeneralRe: Odd list box behaviour Pin
Roger Allen21-Jun-02 6:32
Roger Allen21-Jun-02 6:32 
GeneralRe: Odd list box behaviour Pin
Jason Hooper21-Jun-02 11:35
Jason Hooper21-Jun-02 11:35 
GeneralRe: Odd list box behaviour Pin
Shog921-Jun-02 12:41
sitebuilderShog921-Jun-02 12:41 
GeneralRe: Odd list box behaviour Pin
Jason Hooper22-Jun-02 6:46
Jason Hooper22-Jun-02 6:46 
GeneralRe: Odd list box behaviour Pin
Roger Allen24-Jun-02 2:26
Roger Allen24-Jun-02 2:26 
GeneralRe: Odd list box behaviour Pin
Jason Hooper25-Jun-02 7:44
Jason Hooper25-Jun-02 7:44 
Generalinclude collision Pin
Zizilamoroso21-Jun-02 2:55
Zizilamoroso21-Jun-02 2:55 
GeneralRe: include collision Pin
Zizilamoroso21-Jun-02 3:04
Zizilamoroso21-Jun-02 3:04 
GeneralRe: include collision Pin
Alvaro Mendez21-Jun-02 6:16
Alvaro Mendez21-Jun-02 6: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.