I found out the hard way. Hope it helps someone else.
The following code works under Win9.x but not under Win2K.
(Win2K comes up with the message that it can't find MyLibrary.dll)
In contrast the following works under both Win9.x and Win2k
Maybe I should have known all along.
Bern
------------------
The following code works under Win9.x but not under Win2K.
(Win2K comes up with the message that it can't find MyLibrary.dll)
Code:
Declare Function MyFunction Lib "MyLibrary" Alias _ "_MyFunction" () As Long
Code:
Declare Function MyFunction Lib "MyLibrary.dll" Alias _ "_MyFunction" () As Long
Bern
------------------
Comment