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

C / C++ / MFC

 
GeneralRe: ActiveX method return value question Pin
Chris Losinger18-Dec-02 16:20
professionalChris Losinger18-Dec-02 16:20 
GeneralRe: ActiveX method return value question Pin
work_to_live19-Dec-02 7:36
work_to_live19-Dec-02 7:36 
GeneralPAUSE!!!!!!!!! Pin
Lucky200218-Dec-02 12:55
Lucky200218-Dec-02 12:55 
GeneralRe: PAUSE!!!!!!!!! Pin
Tim Smith18-Dec-02 13:02
Tim Smith18-Dec-02 13:02 
GeneralRe: PAUSE!!!!!!!!! Pin
Sunnygirl18-Dec-02 13:14
Sunnygirl18-Dec-02 13:14 
GeneralRe: PAUSE!!!!!!!!! Pin
Christian Graus18-Dec-02 13:22
protectorChristian Graus18-Dec-02 13:22 
GeneralRe: PAUSE!!!!!!!!! Pin
Lucky200218-Dec-02 13:37
Lucky200218-Dec-02 13:37 
GeneralRe: PAUSE!!!!!!!!! Pin
Christian Graus18-Dec-02 13:43
protectorChristian Graus18-Dec-02 13:43 
Ah - then Tim's answer was correct, but your question was wrong. You need to do what I said in the last post, set up a timer. I forget the syntax but if you look up WM_TIMER in MSDN you should have no trouble finding it. It's something *like* SetTimer(42, 2000, NULL), where 42 is the number that identifies your timer ( and is passed to the WM_TIMER message handler you'll need to set up with the Class Wizard ), 2000 is the number of milliseconds ( so this one waits for two seconds ) and NULL means you're not specifying your own callback for the timer. I also believe the timer will go off over and over again, so you need to KillTimer(42) when you catch it. But my MFC/Win32 days are long behind me, you should verify the details in MSDN.


Christian

No offense, but I don't really want to encourage the creation of another VB developer.
- Larry Antram 22 Oct 2002

C# will attract all comers, where VB is for IT Journalists and managers - Michael
P Butler 05-12-2002


Again, you can screw up a C/C++ program just as easily as a VB program. OK, maybe not
as easily, but it's certainly doable.
- Jamie Nordmeyer - 15-Nov-2002
GeneralTHREAD PROBLEM Pin
Sunnygirl18-Dec-02 12:03
Sunnygirl18-Dec-02 12:03 
GeneralRe: THREAD PROBLEM Pin
Nish Nishant18-Dec-02 12:13
sitebuilderNish Nishant18-Dec-02 12:13 
GeneralRe: THREAD PROBLEM Pin
Tim Smith18-Dec-02 12:16
Tim Smith18-Dec-02 12:16 
GeneralRe: THREAD PROBLEM Pin
Sunnygirl18-Dec-02 12:31
Sunnygirl18-Dec-02 12:31 
GeneralRe: THREAD PROBLEM Pin
Nish Nishant18-Dec-02 13:22
sitebuilderNish Nishant18-Dec-02 13:22 
GeneralRe: THREAD PROBLEM Pin
Sunnygirl18-Dec-02 12:57
Sunnygirl18-Dec-02 12:57 
GeneralView Printing Pin
act_x18-Dec-02 11:11
act_x18-Dec-02 11:11 
GeneralCreate a Service Pin
Member 13661818-Dec-02 11:02
Member 13661818-Dec-02 11:02 
GeneralRe: Create a Service Pin
l a u r e n18-Dec-02 11:11
l a u r e n18-Dec-02 11:11 
GeneralRe: Create a Service Pin
Member 13661818-Dec-02 11:14
Member 13661818-Dec-02 11:14 
GeneralRe: Create a Service Pin
Nish Nishant18-Dec-02 11:14
sitebuilderNish Nishant18-Dec-02 11:14 
GeneralRe: Create a Service Pin
Anonymous18-Dec-02 17:15
Anonymous18-Dec-02 17:15 
GeneralRe: Create a Service Pin
Member 13661819-Dec-02 4:48
Member 13661819-Dec-02 4:48 
Generalself-upgrading program Pin
thisisnotfake18-Dec-02 10:53
thisisnotfake18-Dec-02 10:53 
GeneralTransparent the staticbox ?! Pin
Hadi Rezaee18-Dec-02 10:34
Hadi Rezaee18-Dec-02 10:34 
GeneralInheritance. Pin
WREY18-Dec-02 10:16
WREY18-Dec-02 10:16 
GeneralRe: Inheritance. Pin
Ravi Bhavnani18-Dec-02 10:23
professionalRavi Bhavnani18-Dec-02 10:23 

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.