I'm calling the "sleep" function in VB script in Access.
I've declared the library as the following:

Declare Sub sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)

And then called sleep from a function:

Sleep(1000)

I get a run-time error 453 - Can't find DLL entry point...

I guess it can't find the sleep procedure in kernel32.dll..But where would it be? Any help would be appreciated thanks.