visual-foxpro

Microsoft Visual Studio Community 2015 always crashes in Windows 10 if swithed to Visual FoxPro

随声附和 提交于 2019-12-24 01:16:54
问题 If Microsoft Visual Studio 2015 community edition IDE is opened in Windows 10 and Microsoft Visal Foxpro IDE is in foreground, after few seconds Visual Studio crashes with Microsoft Visual Studio 2015 stopped working message. How to fix this ? It is not possible to use Microsoft Visal FoxPro IDE is Visual Studio is opened. After that in shows collection information for a long time but no more information is given. After it is restared, it offers to recovers files. If FixPro IDE is brought to

Why doesn't VFP .NET OLEdb provider work in 64 bit Windows?

戏子无情 提交于 2019-12-23 06:47:09
问题 I wrote a windows service using VB that read some legacy data from Visual Foxpro Databases to be inserted in SQL 2005. The problem is this use to run fine in Windows server 2003 32-Bits, but the client recently moved to Windows 2003 64-Bits and now the service won't work. I'm getting a message the the VFP .NET OLEdb provider is not found. I researched and everything seems to point out that there is no solution. Any Help, please... 回答1: Have you tried changing the target CPU to x86 instead of

Find a Specific Character in a Field and Replace it with a Phrase

﹥>﹥吖頭↗ 提交于 2019-12-23 05:12:07
问题 I've been searching around the internet for an answer to this question for a few hours and I'm not able to find anything. My experience with FoxPro is quite limited. This will probably be 2 questions in one. First question: I have a list of items and some of these items may contain a comma which is not allowed in the program I'm transferring the data to. I basically need sort of a statement like this: REPLACE ALL Field1 with STRTRAN(field1, "," , "<break time='250ms' />" Is something like

Visual FoxPro OLEDB error: Invalid path or file name

断了今生、忘了曾经 提交于 2019-12-22 12:27:25
问题 We have Novell server and there Advantage Database Server 9.1 is installed and all other Xbase++ programs access DBF files from that location. I want to access DBF files from C# asmx webservice. Problem is if I use Visual FoxPro VFP OLEDB then it only works while running asmx webservice in Visual studio's Debug mode but when I publish it to IIS, it gives this error: System.Data.OleDb.OleDbException: Invalid path or file name First Attempt (with ADS OLEDB): It works ONLY when DBF files are not

Getting the error “The 'VFPOLEDB.1' provider is not registered on the local machine” even after installing and registering the provider

杀马特。学长 韩版系。学妹 提交于 2019-12-18 15:52:08
问题 Alright, so I've got a Windows service that has a FileSystemWatcher that watches an output folder for some Visual FoxPro database files. And it leverages the VFPOLEDB.1 provider to read those files. I cannot go away from this provider because it's being used in production. However, I've never had to support this application before so that's why my development box isn't setup for it. Here is my environment: Windows 7 x64 Visual Studio 2005 .NET 2.0 Windows service so, when I first started

SSIS Package Not Running as 32bit in SQL Server 2012

百般思念 提交于 2019-12-17 13:59:46
问题 I have a package that I developed in VS2012 (using the SQL Data Tools component) which collects data from a DBF file using the VFPOLEDB provider, and puts it into a database on a SQL Server 2012 X64 server. The project containing the package has the DebugOption of Run64BitRuntime set to false. I have imported this package to the SSIS Package Store of a test and live server (identical setups). The VFPOLEDB provider is installed on both, and I can see in the registry of both machines that it's

FoxPro, Google Translate, and Unicode

…衆ロ難τιáo~ 提交于 2019-12-13 17:15:06
问题 I have recently been given the task of writing a piece of FoxPro to interface with Google Translate so we can translate text in our software to the language of the current user/machine. The code I have found/modified/written works perfectly for Latin-based character sets, but if you try something like Chinese it comes back all question marks. I have already tried using the VFP function STRCONV() with every option combination possible, but no success. I also tried setting the LocaleID before

Create .DBF in C# code that is readable from Excel (VFP or not)

穿精又带淫゛_ 提交于 2019-12-13 16:20:49
问题 LANGUAGE: C#, System: Windows7, Excel 2007 I want to create a .DBF from some data, and i want to open it from Excel 2007. It can be either dBase or foxpro. I am currently doing in FoxPro9 (btw this code is from the internet): OleDbConnection con = new OleDbConnection("Provider=VFPOLEDB.1;Data Source=C:\\Temp\\;"); con.Open(); OleDbCommand cmd1 = new OleDbCommand("Create Table TestDBF (Field1 I, Field2 C(10))", con); OleDbCommand cmd2 = new OleDbCommand("Insert Into TestDBF Values (1, 'Hello')

How to use Visual Studio Online source control with VFP 9 SP1

浪子不回头ぞ 提交于 2019-12-13 03:48:38
问题 How can I use this Visual Studio Online source control with a visual foxpro (vfp) 9 sp1 project so that the VFP does automatic check in and check out as I change files and lets me undo or check in source code and view history like I can do in the Visual Studio 2010 IDE with dot net projects? I see there's a free team explorer everywhere which i guess i can use outside of the vfp IDE - not sure how it will handle the SCX, FRX, LBX, PRJ files which are not textual. 回答1: May be you can't use VSO

Programming/Databasing with Visual FoxPro

左心房为你撑大大i 提交于 2019-12-12 13:43:43
问题 I work for a company that uses a program that uses Foxpro as its database. I'm actually a little bit confused if Visual FoxPro is just a DB or its a programming lagnauge + database combined. I want to create some software to integrate with it, but I just need to manipulate the date in the database (As i do not have access to the source). Is there a SQL Management Studio equalivelent to Visual FoxPro, and can I see the tables and data by looking at the Database files? or is it all integrated