Questions tagged [foxpro]

FoxPro is a programming language and DBMS originally created by Fox Software, and later sold to Microsoft. It refers specifically to the procedural languages versions, up to 2.6a, released for DOS, and later MS-Windows, Macintosh, and SCO Unix, and not the 3.0 and later releases, called Visual FoxPro, which have object-oriented language features.

FoxPro is a programming language and DBMS released by Fox Software in 1989. It was based on their prior program, FoxBASE, which was a clone of DBase III. Various versions were released for DOS, MS-Windows, Macintosh and SCO Unix. Microsoft purchased Fox Software in 1992, and in 1995 released a new version with object-oriented features, called Visual FoxPro. Many people still refer to the product as "FoxPro."

852 questions
0
votes
2 answers

Why do I get Type Library Not Found when consuming .Net COM Server from FoxPro Client

I have a .Net COM server that has a method that takes a message and a delay as parameters. After the delay, it fires an event sending the message back to the client. It works with .Net and VB6 clients. In order to get the COM event to bind in…
Michael McHenry
  • 137
  • 3
  • 8
0
votes
1 answer

Visual FoxPro (9.0) issue on Microsoft Windows Server 2003 R2

We have been running a Visual FoxPro (version 9) application on a Server under Microsoft Windows Server 2003 Operating system for a number of years now. We are now trying to migrate it to a different Server running under Microsoft Windows Server…
0
votes
2 answers

JAVA Macros for Android Use (Does such exist?)

I have been using VFP 8.0 for quite sometime and one of the most thing I enjoyed about it is the macro function; name = "Paul James" age = 25 result = My name is &name, I am &age years old. I could also do, dimension x[5]; x[0] = "box" x[1] =…
mirageservo
  • 2,387
  • 4
  • 22
  • 31
0
votes
1 answer

string data from dbf to c# program

I've got a c# program, which is connected to dbf file: OdbcConnection oconn = new OdbcConnection(); oconn.ConnectionString = "Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=" + pelna_sciezka + ";Exclusive=No;…
BKl
  • 415
  • 1
  • 8
  • 23
0
votes
3 answers

Visual Foxpro modify general field

Firstly, I am not a VFP programmer, so what I'm doing wrong is probably something simple. I'm trying to extract some documents out of general fields in a VFP 9 database. I have a way of doing this by effectively copying and pasting the field into…
Craig Shearer
  • 14,222
  • 19
  • 64
  • 95
0
votes
0 answers

Visual FoxPro OleDB

I have a Visual FoxPro database that I was able to connect to just fine in Access using ODBC. Now I have been "upgraded" to Windows 7 and cannot figure out a way to get at the data. I understand that ODBC won't work and so I downloaded and installed…
Phil06
  • 61
  • 1
  • 5
0
votes
2 answers

FoxPro reserved word issue?

I am attempting to read a foxpro table called SCHEDULE.dbf. The data is read in PHP via data connector then piped to my webpage. This all works wonderfully, provided I rename Schedule.dbf. Any name except Schedule seems to work. When I run it named…
Rich
  • 3
  • 1
0
votes
3 answers

.DBF File Cannot Open in Shared Mode

I'm currently trying to debug an issue with a legacy system at my company. The original project was developed in the mid 90's, and everyone who knew the system has left the company. Currently we're seeing an error with one of the .DBF files, a…
Corey
  • 398
  • 1
  • 4
  • 18
-1
votes
1 answer

Fox Pro Export Routine

So in order to get DBF files from an old Fox Pro db, I have to use an OEM exe which splashes on my XPSP3 screens for a brief moment before delivering it's delicious DBF's. I'm trying to wrap that guy up in an export program to run on the client,…
aok98125
  • 43
  • 6
-1
votes
3 answers

Reviving an obsolete Fox Pro application

I am working with a client to revive his old software which was developed around 14 years ago using Foxpro2.6. My problem is that client just have the source code (in the form of .prg files)and database files with him but there is neither any…
Sudh
  • 1,265
  • 2
  • 19
  • 30
-1
votes
1 answer

Problem dealing with deleted records in a foxpro dbf file

I get always the following message : is_deleted() is not defined This is my python program. What am i doing wrong? import dbf tableDirsync = dbf.Table("o:/python/dirsync.dbf") tableDirsync.open() for dirsync in tableDirsync: if…
-1
votes
1 answer

Foxpro query to select a single record from each group

I am hoping to find a simple SQL solution to my question. I have searched for one, but have been unable to find anything that works for my situation. I have a .dbf with client data, consisting of customer names, addresses and other information, to…
Herb
  • 636
  • 1
  • 15
  • 29
-1
votes
3 answers

Do you know VFP report library for developers?

I'm looking for good report library for Visual FoxPro, but it seems that there is lot "old" solutions with bad documentation. Does anyone have experience with some VFP report library?
-1
votes
2 answers

Pass parameters from BAT file OR VBS to Visual Fox Pro (.prg files)

I have many .prg files which I'm currently using daily. One of the parameters which I have to type in manually is todays date. The idea is that, as example, date will be as parameter in .bat or .vbs file and when I run bat or vbs... it will pass…
Denis
  • 79
  • 2
  • 13
-1
votes
1 answer

FoxPro My using .prg(coding) move fields

I would like toalter the table to move fields from one place to another. ABS1 ABS2 ABS4 ABS8 ABS3 So I would like to move ABS3 after ABS2, but not move the physicly. Would like the code do it for me.
user6105633