English 中文(简体)
How would I include a (VFP) merge module in an ASP.NET Web Deployment Project?
原标题:

I have an ASP.NET application that is installed using a Web Deployment Project. I d like to add the Visual FoxPro merge module to the installer. Does anyone have examples of how to do this - or how to install any merge module in a Web Deployment Project?

Going to WiX will be my fallback, but as the Web Deployment Project is working effectively, I d rather stick with it, if I can.

The application is developed using C#.

最佳回答

I don t quite understand what you are trying to do with the merge modules, but if you need VFP capabilities, you SHOULD be able to get away with just including the following 4 files in whatever path needs access...

VFP9.exe VFP9R.dll VFP9RENU.dll VFP9T.dll

above are obviously VFP9, but would respectively be for version 8 and 7 too. You can take a VFP app, or anything relying on VFP, put in a stand-alone directory with these files and run it (provided you have your other tables as needed).

These files should be found within your WindowsSystem32 folder if a VFP application has been so installed.

Also, if you are doing web, and going through OleDb, you ll have to get that driver from M$ too.

HTH

问题回答

Visual FoxPro Required Runtime Files are: vfp9r.dll, vfp9t.dll, vfp9renu.dll, msvcr71.dll, and gdiplus.dll

As DRapp mentioned, you can simply include these files in the same folder with the compiled application.

Additional files may be required, depending on the features included in the application. A detailed list can be found here VFP 9 Runtime Files





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签