Andrew_46
Andrew_46

Reputation: 37

Distributing a VFP application

I have a VFP application which I distribute to my customers. It is a compiled and linked program, myprog.exe. When I distribute it, I have learned to also include in the folder these files :

gdiplus.fll, msvcr71.dll, vfp9r.dll, vfprenu.dll

This all works fine. Is it possible to include these in the .exe program (I only distribute two .exe programs : myinit.exe, and myprog.exe)?

Thank you. Andrew

Upvotes: 0

Views: 687

Answers (2)

Tamar E. Granor
Tamar E. Granor

Reputation: 3937

As Missy said, you have to distribute the libraries. What you can do is build a setup program, so that you don't have to think about what to include. A lot of VFP developers like InnoSetup: http://www.jrsoftware.org/isinfo.php. You'll find help in using it for VFP applications starting here: http://fox.wikis.com/wc.dll?Wiki~InnoSetup~Wiki.

Upvotes: 2

Missy
Missy

Reputation: 1368

No -- sadly, you need the libraries as well.

Upvotes: 3

Related Questions