Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using FLL files - avoiding 'Unknown' during compile

Status
Not open for further replies.

GriffMG

Programmer
Mar 4, 2002
6,334
FR
I'm sure this is a simple one

I'm now using Craig Boyds VFP Compression utility which is packaged in a .FLL file.

The code works very well, but when I compile to make my application - I'm getting some errors.

Basically, because the functions are contained in the .FLL file the compiler can't 'see' them at compile time and says:

Code:
Form c:\dev\myproject\myform.scx has the following errors:
    Unknown ZIPOPEN - Undefined
    Unknown ZIPCLOSE - Undefined
    Unknown ZIPFILE - Undefined

Is there a way to avoid this?



Regards

Griff
Keep [Smile]ing
 
It's just a warning, but
Code:
EXTERNAL LIBRARY some.fll
in your main prg should help.

Bye, Olaf.
 
That does work... Thank you Olaf
B-)

Regards

Griff
Keep [Smile]ing
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top