sooprise
sooprise

Reputation: 23187

DLL Needed For Excel VBA Sleep()?

When using:

Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Is it required to have some sort of DLL? If so, which DLL and where can I obtain it?

Upvotes: 2

Views: 1623

Answers (1)

Mitch Wheat
Mitch Wheat

Reputation: 300549

kernel32.dll is part of Windows, and as such will be on every Windows OS based machine.

Upvotes: 3

Related Questions