Oxygen Basic
Programming => Problems & Solutions => Topic started by: Aaron on February 26, 2014, 02:43:25 AM
-
Hello Mister Pegge,
the last oxygenbasic.dll could have a bug.
That didn't work:
kernel32 = LoadLibrary "kernel32.dll"
Bind kernel32
(
Sleep Sleep
)
But this was able to work:
Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)
May be is a OS problem! I am driving Windows7 here.
-
Hi Aaron,
Welcome to the forum!
I fixed a bug and posted an Oxygen update about 1 hour ago, but I don't think it would affect late binding.
Does this work?
kernel32 = LoadLibrary "kernel32.dll"
Bind kernel32
(
Sleep Sleep
)
Sleep 5000
print "ok"
-
Yes, works.
Thanks for DLL 26.02.2014