Search found 2 matches

by Ivega718
Wed Jun 20, 2018 6:09 pm
Forum: Liberty BASIC Language
Topic: Trouble calling a DLL
Replies: 2
Views: 6757

Re: Trouble calling a DLL

Also you can test with BBC BASIC code in LBBOOSTER:

Code: Select all

!SYS "LoadLibrary", "IsFile32.dll" TO MyDll%
!PRINT MyDll%
!ff=MyDll%
ff now have the MyDll% value in LBB

If MyDll% return a number more great than 0 then DLL is load
by Ivega718
Wed Jun 20, 2018 5:59 pm
Forum: Liberty BASIC Language
Topic: Trouble calling a DLL
Replies: 2
Views: 6757

Re: Trouble calling a DLL

You can explicitly put the path and file of DLL and test. May be this can help.

Sample:

Open "C:\BBCBASIC\LIB\IsFile32.dll" FOR DLL AS #FF