Tagged Questions
FoxPro is a database and IDE from Microsoft.
7
votes
4answers
4k views
What's the easiest way to read a FoxPro DBF file from Python?
I've got a bunch of FoxPro (VFP9) DBF files on my Ubuntu system, is there a library to open these in Python? I only need to read them, and would preferably have access to the memo fields too.
...
6
votes
5answers
429 views
SQL Join Tables
Table one contains
ID|Name
1 Mary
2 John
Table two contains
ID|Color
1 Red
2 Blue
2 Green
2 Black
I want to end up with is
ID|Name|Red|Blue|Green|Black
1 Mary Y Y
...
6
votes
19answers
2k views
Anyone programming in Visual Foxpro out there? [closed]
Is anyone programming in Visual Foxpro out there?
I'm stuck supporting a legacy foxpro system. Wanted to know who else is out there is using Foxpro.
Added 9/11/2008: Thanks to all of you who ...
5
votes
3answers
1k views
How to automate a build for a Visual FoxPro project?
I'm interested in figuring out how to automate a build from Visual FoxPro similar to how we can build .NET projects from the command line using MSBuild.
It seems that it is possible to pass command ...
5
votes
6answers
1k views
Why is FoxPro used for POS systems? [closed]
I'm looking at upgrading a POS (Point Of Sale) project which is currently built in FoxPro to .net. The planned architecture is quite complex and there is plenty of rationale behind the new ...
5
votes
4answers
2k views
5
votes
4answers
17k views
4
votes
2answers
214 views
How do I manually generate text files for entire project to diff in Visual FoxPro (e.g. .sca, .vca, etc.)
The challenge is that I'm checking my FoxPro code into source control (using Mercurial, but that's not the focus of this question) and would like a quick way to get the FoxPro SCCTEXT output alongside ...
4
votes
4answers
239 views
4
votes
4answers
169 views
IDS an over-kill for a single-user app?
I have the following dilema: My clients (mom-n-pop pawnshops) have been using my mgmt. system, developed with ISQL, for over 20 years. Throughout these two decades, I have customized the app to each ...
4
votes
2answers
900 views
SQL - Return limited number of rows, but full row count
Scenario: I need to pull information out of a Visual FoxPro database; however, running large queries against this has a tendency to lock the system up. To resolve this, we put limits in place that ...
4
votes
2answers
627 views
Is it possible to disassamble Visual FoxPro 9.0 exe file?
I have a legacy FoxPro exe application.
Source codes are not available (it was written in outsourcing and source codes have been never delivered).
There is a request to write exactly the same ...
4
votes
11answers
920 views
What is the best way today to maintain clipper 5.3 code?
Are there any successor products on DOS, Windows or Linux?
4
votes
2answers
1k views
FoxPro 9 compatibility with Windows Vista
What compatibility issues have you found when developing with Visual FoxPro 9 on Windows Vista?
3
votes
6answers
2k views
How to migrate data from FoxPro to MySQL
I am having a database in .dbf (FoxPro) format.
How to retrieve data from FoxPro using Java?
If the data can be migrated to MySQL, How to do the conversion?
3
votes
1answer
565 views
FoxPro and .NET COM without registration
I use Unmanaged Exports to create a native .dll from .NET .dll so I can access .NET code from Delphi without COM registration.
For example I have this .NET assembly:
using System;
using ...
3
votes
10answers
233 views
Corp IT Systems direction. Invest in A or B?
This is more of a general question about which direction would be a better investment for the company.
Our company's core business application is written in Visual FoxPro and is about 9+ years old. ...
3
votes
1answer
4k views
SQL Server Linked Server query running out of memory
I have a DBF file on a network share that I'm trying to select into a SQL Server table.
This query:
SELECT * FROM OPENQUERY(MyLinkedServer, 'SELECT * FROM DP')
... throws this error:
OLE DB ...
3
votes
2answers
1k views
Working with the Visual Fox Pro OleDb
I am trying to pull data from DBF files into my program using C#. I am using the Visual FoxPro OLE DB Provider. It works fine on my local machine but I want to package up my program into dll that ...
3
votes
4answers
1k views
LIMIT in FoxPro
I am attempting to pull ALOT of data from a fox pro database, work with it and insert it into a mysql db. It is too much to do all at once so want to do it in batches of say 10 000 records. What is ...
3
votes
3answers
779 views
Create unique ID's in VFP
I need to create unique record id's in VFP based on mailing information: zip5, address, lastname, firstname. Once created, relational tables will be loaded in SQL server 7 with the unique ID's. Any ...
3
votes
2answers
1k views
Can I extract a file from a foxpro general field?
I'm porting a VFP 9 application to SQL Server. The VFP app has some tables with "general" fields in them. I get a byte array when query the field, and when I save it to disk, I can look inside and see ...
2
votes
1answer
50 views
Connect/read FoxPro/.dbf file, from TSQL
This seems like it should be easy enough, but I'm having trouble in what feels like the final stretch..
I want to connect to a Fox Pro .dbf file
1.) I've applied the following changes on my local ...
2
votes
6answers
94 views
Download file (HTTP) with FoxPro
Today I was asked for help with a FoxPro issue, about how to download a file via HTTP.
I found two things: one was a paid ActiveX, and the other one requires libcurl.
Is there a way to do that ...
2
votes
1answer
178 views
Add a last-updated timestamp to a FoxPro table
I'm synchronizing data between FoxPro and a remote SQL Server. Everything is working great, but on the FoxPro side, it would be much faster if I could detect records that don't need to be considered ...
2
votes
2answers
107 views
Visual Fox Pro 6.0 Query of Logical DataType not working!
My current system has a query to generate a tax report. The problem is that sometimes orders go into our system that never get submitted but are still counted in the tax report. The flag that sets an ...
2
votes
2answers
150 views
Why does SQL Join find two dissimilar length strings equal?
I have created a query that uses a left join. For reasons I don't understand it will join two dissimilar length strings as if they are equal. An example would be:
Left column = "351-561"
Right Column ...
2
votes
1answer
362 views
Reading a FoxPro 2.6 data with Java
I'm trying to read a FoxPro 2.6 database using java to retrieve data from an older FoxPro based application to format the output better. I've tried using JavaDBF (http://javadbf.sarovar.org/) and ...
2
votes
3answers
573 views
Foxpro: Check whether table exists via vfpoledb
I access data in .dbf files via System.Data.OleDb (vfpoledb.dll). How can I find out whether table exists via SQL command? Something similar to the following on SQL server:
IF (EXISTS (SELECT * FROM ...
2
votes
3answers
701 views
Convert a LINQ Query Resultset to a DataTable
How can i write this query with LINQ to a FoxPro database?
SELECT count(*) FROM Table group by item1
I wrote it as below, but it doesn't work
Dim Query
Dim dt As New DataTable
Dim da = New ...
2
votes
3answers
137 views
How to fake an older version of SQL Server to support legacy application code
I have legacy application that checks to see if the version of SQL Server is 6.5, 7 or 2000. If not, it returns a database not supported error. I would like this application to use the database on SQL ...
2
votes
2answers
228 views
URLEncode in FoxPro
I couldn't quickly find a google answer, and I don't have the help in front of me (long story), so, my question is: Is there an easy way to URL-encode a string in MS Visual FoxPro 8
2
votes
5answers
961 views
How easy is it to convert an application from Visual Foxpro 6 to Visual Foxpro 9?
Are there any problems converting a Visual Foxpro 6 application to Visual Foxpro 9; or is this straight forward?
Any gotchas that I should watch out for during the process?
2
votes
2answers
259 views
“Parameter is incorrect” error when invoking .NET assembly via COM component
I have a .NET assembly that lives in the GAC. It is registered correctly so that it can be invoked by COM components. This .NET assembly contains a method and an overload to the method:
public void ...
2
votes
3answers
925 views
foxpro cursor size
This seems like such an easy problem, but I can't seem to find a solution anywhere. My co-worker and I are working on an application that makes use of the Foxpro xml dump facilities. It works great, ...
2
votes
2answers
507 views
Turning automatic nulls off for inserts to FoxPro tables through NHibernate using JetDriver isn't working
I'm using NHibernate with Burrow and Fluent to shuttle data from SQLServer2005 into a directory full of FoxPro 7 dbf's.
When I try to save a new record through Burrow's GenericDAO, I get an exception ...
2
votes
2answers
398 views
Create Visual Fox Pro DBF with activex
any one knows if there is a activex dll that can create VFP DBF files?
I mean im writing app with 1C:Enterprise 8.2 language, and i need to export some datas into VFP DBF. And i can only use activex ...
2
votes
4answers
760 views
Does Re-Fox (FoxPro decompiler) produce useable code?
I was planning on trying out Re-Fox: http://www.refox.net/
They have a demo version - however when testing it it said the recompiler is unsupported in trial mode (which seems strange considering that ...
2
votes
3answers
310 views
Calling FoxPro code from .Net
Can anyone tell me the best way to call FoxPro 9 code from a .Net 3.51 application?
I have a legacy production application that is written in Fox 9. I want to expose as much of the logic and business ...
2
votes
4answers
311 views
Handling a large number of settings in a C# WinForms application?
I will (hopefully) be taking on a large project to migrate an enterprise Visual FoxPro application to C# 3.0 on .NET 3.5. I know that this application has a huge number of settings that have an impact ...
2
votes
1answer
338 views
Calling a FoxPro Report from .Net
Has anyone out there got experience of calling a Visual FoxPro report from a .net application? They want to both see the report and print it.
I have to migrate a FoxPro application to .Net and the ...
2
votes
2answers
1k views
FoxPro fxp files
I know very little about FoxPro but have a project that requires working with a third-party application, based on FoxPro, and a .fxp file. The thrid-party app is a point of sale system and the makers ...
2
votes
2answers
1k views
Sql Server x64 and x86 Linked Server
I have a Visual FoxPro table that I need to access from Sql Server. In Sql Server x86, I would just create a linked server. Unfortunately, there is no x64 driver for VFP - so Sql Server x64 can't ...
2
votes
2answers
2k views
Open FoxPro Table in VB.net 2005
I need to open foxpro free tables in vb.net using the oledb connection.
But... i only need to get the column names. I don't really need to 'select' anything.
I am trying to dynamically browse through ...
2
votes
4answers
814 views
Visual FoxPro Compact Index File Format
I am trying to understand the file format of a Visual FoxPro compact index (*.IDX). I am currently referring to Microsoft's documentation for guidance.
The index is a B-tree of 512-byte nodes. Each ...
2
votes
4answers
5k views
How do I set a source control plug in default for Visual Studio 2008?
We recently installed Team Foundation Server 2008 and we are using it for both Visual Studio 2008 code and Visual FoxPro 9 code that we are still migrating to .Net. I had to install the TFS MSSCCI ...
2
votes
3answers
2k views
What problems do you encounter with VFP apps in a 64 bit environment?
I know that there are issues with the VFP OLEDB provider on 64 bit machines. ... but what issues do you encounter while actually running a VFP application - on a 64 bit machine? Has anyone had any ...
1
vote
2answers
46 views
Joining child results into parent (one to many query)
Say I've got two tables:
Parent
id | name
Child
id | parentId | name
Each parent could have an infinite number of children. What are some common ways to put a parent's children into the ...
1
vote
1answer
34 views
How to get a loop value in MySQL stored procedure?
FOR I = 1 TO 10
tRESNUM = ALLTRIM(STR(I))
tRESCAS = 'tRESCAS'+tRESNUM
&tRESCAS = 0.00
ENDFOR
I am converting this fox-pro code to MySQL Stored Procedure.
In Foxpro ...
1
vote
2answers
98 views
Howto update index file after update query in FoxPro dbf
I need to update records inside a FoxPro (dBase?) .dbf files. The field I need to update inside the record also have an index. Update the record works fine, but the index is not updated. I'm searching ...