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
-1
votes
1 answer

Transfer data from DBF to SQL Server using C#

I need a function to transfer data from a .DBF file to SQL Server. Here is what I do: First step: I use OleDBDataAdapter.Fill to read from .DBF file Second step: insert this table into SQL Server. The first step takes 74 seconds for 90 column X…
Chao Dai
  • 11
  • 4
-1
votes
1 answer

Export data to multiple Excel sheets?

How can I export data from Visual FoxPro into Excel file I know. I something like this: USE tableName EXPORT TO (fileName) TYPE XL5 AS CPDBF() I get Excel file with one sheet. Does anybody know how can export second table to the same excel file…
Shixx
  • 49
  • 7
-1
votes
1 answer

SET RELATION TO FOXPRO

I want to make report in foxpro, with relationship. I have tables "Costumer" and "Order". Which "Order" table has foreign key "IDCostumer". But i want to show in the Order report the name of costumer instead of "IDCostumer". i hope you understand my…
Joni Lelet
  • 47
  • 6
-1
votes
1 answer

How to get the version and the encoding of a dbf file

I have a dbf file which contains text fields filled with Russian text. How to find which particular encoding has been used in this file? Also, how to get whether it is dBase III, IV, 5.0, or it is FoxPro? Thanks!
user2668470
  • 301
  • 1
  • 10
-1
votes
2 answers

FoxPro 5.0a taking forever to load on Windows 7

I'm assisting a company that is using fairly old software and they want to get off the old server and on to a more recent workstation. Here is their setup: Windows 2000 Server (domain controller) FoxPro 5.0a as a shared folder (no database, just a…
Bluby
  • 11
  • 2
-1
votes
1 answer

Foxpro 2.6 array file in use

I have had to create an extra form for an old Foxpro 2.6 dos database. I am using: SELECT DISTINCT Conref, Conref + ", " + STR(ProdQty) + ", " + Produce FROM c:\temp\tempconx.dbf INTO ARRAY unselected ORDER BY Conref, ProdQty, Produce To…
-1
votes
1 answer

Garbage character while running old program in windows xp/7

I have an old bill creation program written in foxpro 2.6.0.The program works fine in windows 98.But when used in windows xp,a particular window displays garbage/incorrect characters for english character and for numeric values.In windows 7 numeric…
aman_41907
  • 179
  • 10
-1
votes
2 answers

how to retrive data from database and store into textbox in Foxpro 9

how do i store the data i get from select statement into textbox. i don't have any idea how to do this because this is my first time using foxpro i need this for my job application pls help me. table name:…
Reynan
  • 261
  • 2
  • 9
  • 23
-1
votes
1 answer

setting up VFP IDE environment for debugging

I am trying to set up the environment for VFP for an app I have tried SET DEFAULT & SET PATH TO I have also tried to use Environment Manager to all the directories of the prodject but when I run the program I have to use the locate dialog to find…
Artful_dodger
  • 698
  • 2
  • 7
  • 26
-1
votes
1 answer

\r\n in a string not accepted on database

I create a string variable for an Update SQL command in order to execute this command to a dbf file ( with OleDb). When my SQL Command contain in a string \r\n the SqlCommand is not accepted :( Here is an example of my SQL Command : update ZZAg7eve…
Walter Fabio Simoni
  • 5,671
  • 15
  • 55
  • 80
-1
votes
2 answers

Safe to copy a file-based multi-user Visual FoxPro database while users are accessing it?

Is it safe to make a copy (via cmd with copy or robocopy, or by copying and pasting it) for backup purposes of a file-based multiuser Visual FoxPro datbase while other users are accessing it?
leeand00
  • 25,510
  • 39
  • 140
  • 297
-2
votes
1 answer

VFP combobox displaying all data to listbox

I'm newly introduced in visual foxpro and having some difficulties I have combobox(combo1),listbox(list1),and tables(table1 and table2) combo1's rowsource is table1.records If I select a record in combo1, it will display all data from table2 to…
Mav
  • 1
  • 1
-2
votes
1 answer

FoxPro STRCONV equivalent in Delphi

I'm looking for equivalent function in delphi. This is the foxpro codes to convert to string and store it to LONGTEXT fields. xString = strconv(filetostr("C:\AAA.JPG"), 13) and back strtofile(strconv(Temp_T.Photo, 14), "C:\BBB.JPG") Can someone…
-2
votes
1 answer

How can I connect to a FoxPro Database using Java and without paying?

I was asked to connect to a foxpro database to pull some data. My biggest problem right now is finding an appropriate driver. Does anyone have any recommendations for free drivers. I know from my research on SO that this question has been asked…
ayellowbusman
  • 47
  • 1
  • 8
-2
votes
2 answers

Read records dbf foxpro 2.6 have been deleted on excel

How to read records that have been deleted. Can the record be read on excel or another software? If so, how?
1 2 3
56
57