Click here to Skip to main content
15,915,074 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DLL help Pin
Member 62736417-Jun-04 22:54
Member 62736417-Jun-04 22:54 
GeneralRe: DLL help Pin
Blake Miller18-Jun-04 4:35
Blake Miller18-Jun-04 4:35 
GeneralRe: DLL help Pin
Rodrigo Pinto Pereira de Souza18-Jun-04 2:11
Rodrigo Pinto Pereira de Souza18-Jun-04 2:11 
GeneralMultiple Timer Processes Pin
jerry1211a17-Jun-04 5:09
jerry1211a17-Jun-04 5:09 
GeneralRe: Multiple Timer Processes Pin
palbano17-Jun-04 5:15
palbano17-Jun-04 5:15 
GeneralRe: Multiple Timer Processes Pin
jerry1211a17-Jun-04 5:33
jerry1211a17-Jun-04 5:33 
GeneralRe: Multiple Timer Processes Pin
David Crow17-Jun-04 5:40
David Crow17-Jun-04 5:40 
GeneralRe: Multiple Timer Processes Pin
palbano17-Jun-04 5:53
palbano17-Jun-04 5:53 
Real concurrency is only possible on multi-processor hardware. Otherwise you have the appearance of concurrency by the OS switching thread context.

The only way to acquire concurrency or even simulated concurrency is with multiple threads. If your process only has a single thread then your code executes synchronously. You can have two timers but only one at a time will execute.

For win2k and above OS you can use the CreateTimerQueueTimer() APIs which handle worker thread creation for you. Otherwise for older OS's you will have to generate your own threads.


"No matter where you go, there your are." - Buckaroo Banzai
-pete

GeneralRe: Multiple Timer Processes Pin
jerry1211a17-Jun-04 6:50
jerry1211a17-Jun-04 6:50 
GeneralRe: Multiple Timer Processes Pin
toxcct17-Jun-04 7:46
toxcct17-Jun-04 7:46 
Generalproblem with building help Pin
dart1317-Jun-04 4:41
dart1317-Jun-04 4:41 
GeneralRe: problem with building help Pin
palbano17-Jun-04 4:44
palbano17-Jun-04 4:44 
GeneralRe: problem with building help Pin
dart1317-Jun-04 5:02
dart1317-Jun-04 5:02 
GeneralSQLConnect() Pin
SuzannaS17-Jun-04 4:32
SuzannaS17-Jun-04 4:32 
GeneralCListCtrl & ToolTips Pin
Gizmo7917-Jun-04 4:25
Gizmo7917-Jun-04 4:25 
GeneralRe: CListCtrl & ToolTips Pin
palbano17-Jun-04 5:19
palbano17-Jun-04 5:19 
GeneralRe: CListCtrl & ToolTips Pin
Gizmo7917-Jun-04 5:55
Gizmo7917-Jun-04 5:55 
QuestionAnybody use SetWorldTransform? Pin
CodeHead17-Jun-04 3:36
CodeHead17-Jun-04 3:36 
GeneralInserting a property sheet/ tab in a dialog box Pin
aarti vimal17-Jun-04 3:24
aarti vimal17-Jun-04 3:24 
GeneralRe: Inserting a property sheet/ tab in a dialog box Pin
David Crow17-Jun-04 3:32
David Crow17-Jun-04 3:32 
GeneralCTreeViewCtrl question Pin
kfaday17-Jun-04 2:58
kfaday17-Jun-04 2:58 
GeneralRe: CTreeViewCtrl question Pin
Arjan Schouten17-Jun-04 3:12
Arjan Schouten17-Jun-04 3:12 
GeneralRe: CTreeViewCtrl question Pin
kfaday19-Jun-04 4:19
kfaday19-Jun-04 4:19 
Generalchange cursor in win32 Pin
udi444417-Jun-04 2:50
udi444417-Jun-04 2:50 
GeneralRe: change cursor in win32 Pin
Johan Rosengren17-Jun-04 5:22
Johan Rosengren17-Jun-04 5:22 

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.