In my application I have the following 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
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