Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to calling file *.fll
Message
 
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00670913
Message ID:
00670976
Views:
21
>Hi guys..
>
>i got some problems... i had download the cipher30.fll and the try to calling it... from my main.prg how do i deal with a fll or dll files...
>
To make function in FLL visible for FoxpRo use SET LIBRARY command. After that you can call any function in FLL.
SET LIBRARY TO (HOME() + "foxtools.fll")
DISPLAY STATUS
? FoxToolVer()
The functions in DLL you've to declare individualy. For example,
Declare Sleep in WIn32api Integer nMilliseconds
Sleep(1*1000)   & Suspend application execution for 1 second
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform