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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compile issue with a FLL file. 1

Status
Not open for further replies.

MrDataGuy

Programmer
Oct 18, 2010
231
0
0
US
In my application I have the following code:

Code:
… <Other code>

SET LIBRARY TO LOCFILE( [vfpcompression.fll] )
ZipOpen( m.Output_Zip_File ) 	
ZipFolder( m.pDir_of_files_to_Backup, .F.)  
ZipClose()

.. Other code.

In development everything is working OK, but when I go to compile it into an EXE. I get the following issues:

Program <FooBar.PRG> has the following errors:
Unknown ZIPOPEN - Undefined
Unknown ZIPFOLDER - Undefined
Unknown ZIPCLOSE - Undefined

What ‘clue’ etc do I need to give the compiler to make it happy?


Lion Crest Software Services
Anthony L. Testi
President
 
Is vfpcompression.fll included in the Project?

The FLL files should be in your Project | Code | API Libraries

Good Luck,
JRB-Bldr
 
The FLL files should be in your Project | Code | API Libraries"

The sound you here is my hand slapping my forehead!
I have the FLL loaded in the project as a "OTHER"

Thanks you get the gold star!

Lion Crest Software Services
Anthony L. Testi
President
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top