Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Waiting for a function to finish..

Status
Not open for further replies.

clatimier

Programmer
Apr 11, 2003
26
FR
Hi

I made a call to a function defined into a DLL and want to wait for his termination before to continue the execution of my code.
Is there a way to do that without making a random timer ?

Thx
 
Hi,

If you are not using

SomeCode
START(myFunction)
MoreCode

but

SomeCode
MyFunction()
MoreCode

then you automatically wait for it to return before to proceed...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top