Visual FoxPro is a database and IDE from Microsoft.
6
votes
5answers
444 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
...
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 ...
2
votes
6answers
139 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
2answers
356 views
NHibernate configuration to connect to Visual FoxPro 8.0?
Curious if anyone out there has ever connected NHibernate to Visual Foxpro 8.0? I'm looking to hook into a legacy data store, and would prefer to use NHibernate vs. having to hand-code all of the ...
2
votes
3answers
770 views
How do I read a Foxpro 8.0 database from c#?
I need to import tables from foxpro 8.0 to sql server. How do I read the tables & schema from a foxpro directory/files in C# so I can create the tables in SQL Server and copy the data over?
2
votes
5answers
1k 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?
1
vote
1answer
28 views
Query works in Management Studio but not from client
Here is a query -
select maclin,mamatn,caname,madesc,madtop,malstd,mastat,ISNULL(sum(tlchgv),0.00) as WIP,
(select isnull(sum(blcost),0.00) from blfile where blclin = maclin and blmatn = ...
1
vote
4answers
69 views
SQL GROUP BY clause does not produce distinct rows
I have two tables:
t1 (date d, name c(20), debit n(7), credit n(7))
t2 (date d, name c(20), type c(25), obal n(7))
Here's the sample data.
T1:
DATE NAME DEBIT CREDIT
...
1
vote
2answers
157 views
RPC_E_SERVERFAULT when calling Visual FoxPro COM object (out-of-process) from .Net?
I need to call a Foxpro (VFP 8) COM object from C#
The vfp code looks like this:
Define Class x2 As session OlePublic
Function testInteropServer()
ENDFUNC
Enddefine
The C# code looks like ...
1
vote
3answers
80 views
FoxPro sum form fields
Using autogenerated form from a single database table. The form uses the class WizBtns included in c:\Program Files\Microsoft Visual FoxPro 9\Wizards. The form has Top, Previous, Next and Bottom ...
1
vote
1answer
92 views
Foxpro 2.6a for Windows RegFn call
I have to replace an existing dll call that is registered and called using RegFn and CallFn respectively.
I am trying to write the dll using C# in the hope that as long as the function signature ...
1
vote
2answers
419 views
Convert Numeric to Character
I'm not very familiar with FoxPro and I'm running into problems trying to modify a report.
I have a numeric value that I want to convert to text so that I can get the first four characters, but I am ...
1
vote
1answer
2k views
Visual FoxPro driver for 64 bit Windows 7
I've installed Visual FoxPro driver from this link on my 64 Bit Windows 7 Home Premium OS and tried to register vfpoledb.dll using REGSVR32. I could able to register this dll but when run my ...
1
vote
6answers
214 views
Do you know any good books, websites or tutorials for beginners in Visual Foxpro?
Do you know any good books, websites or tutorials for beginners in Visual Foxpro?
I haven't programmed in a while. I'm basically hacking into an old system made for our business and trying to upgrade ...
1
vote
3answers
572 views
visual foxpro grid problem
How can I get the value of a selected item from a grid and put this into a textbox?
Thanks!
1
vote
2answers
141 views
OLE pdf control
I need a low level OLE control for reading, creating and modifying pdf files. I will use it with Visual FoxPro. By low level I mean that I won't need any extra software to install on the client ...
1
vote
1answer
153 views
Import data from Visual Fox Pro
I am trying to import data from a FoxPro database into Sql Server however am having some very strange issues with the data. I am using the OLE DB driver and can query the data however some of the ...
1
vote
1answer
418 views
Send rest requests to amazon web services with visual foxpro (posible signature error)
I'm trying to send instructions in order to create a new SimpleDB domain using VFP9.
The .fll library come thanks to sweet potato software, and the hour difference was solved using an additional ...
1
vote
1answer
284 views
SQL Server Linked Server error
I am using SQL Server 2008 on Windows Server 2003. I want to use a linked server to open a Visual Foxpro DBF file, using driver Microsoft OLD DB Provider for Visual Foxpro from SQL Server 2008 linked ...
1
vote
2answers
555 views
Visual Foxpro Array [] or ( )
In a Visual Foxpro application one of the users get an error (the rest doesn't). And i believe its because arrays are used in the form of arr(number) instead of arr[number] . Does anyone know what ...
1
vote
1answer
485 views
Adding new record to a VFP data table in VB.NET with ADO recordsets
I am trying to add a new record to a Visual FoxPro data table using an ADO dataset with no luck. The code runs fine with no exceptions but when I check the dbf after the fact there is no new record. ...
1
vote
0answers
246 views
ActiveX control loading but not activating correctly (only when using in Reg Free COM)
I have an ActiveX control (created using C#) that I am adding to a form in Visual FoxPro using late binding. It works without problems when I register the control.
I want to use reg free COM and ...
1
vote
1answer
104 views
Does VBA have an equivalent of “Text To” from Visual FoxPro
Visual FoxPro supports syntax such as the following:
Text To VariableName TEXTMERGE noshow
select * from.....
EndText
This assigns the value of all text between "Text To" and "EndText" to the ...
1
vote
5answers
244 views
Looking for a SQL-based RDBMS with a Windows GUI
I have an application I developed 20 years ago with INFORMIX-SQL version 2.10 for MS-DOS 5.0. I have it working on MS-DOS 6.22, within Microsoft Virtual PC 2007, under Windows Vista, but I would like ...
0
votes
2answers
32 views
.net and visual foxpro interoperability
I do not have much knowledge about the interoperability between .net and visual foxpro. Is it possible to access all controls, forms etc using com and modify and add features in .net and vice- versa. ...
0
votes
1answer
52 views
How do i auto increment a field in foxpro
I'm using vfp9 but the program may have been written in an earlier language.
When i open up the database through vfp, the field is read only, unlike the other fields.
Doing it manually (select max + ...
0
votes
1answer
49 views
Sending concatenated query to SQL Server database from Visual Foxpro
I am using Visual Foxpro 9 with SQL Server as back-end. I am executing this query to update an existing column value with a unicode text:
UPDATE <table> SET fname = "N('" + hexchr + "')"
The ...
0
votes
1answer
72 views
FoxPro “command contains unrecognized phrase keyword” run time error
Im new to foxpro and its work areas are something i dont really dont get so that`s likely where the problem is.
Basically i have a form that takes 2 .csv files and puts them into foxpro tables.
I ...
0
votes
3answers
171 views
Batch convert visual foxpro dbf tables to csv
I have a huge collection of visual foxpro dbf files that I would like to convert to csv.
(If you like, you can download some of the data here. Click on the 2011 link for Transaction Data, and prepare ...
0
votes
4answers
52 views
What is the most recent official development IDE/Compiler for Visual Foxpro?
In a recent project, part of the assignment is replacing a Visual Foxpro application with a more modern web-app.
As an intermediate step I may need to run and alter the old Foxpro application.
What ...
0
votes
1answer
90 views
Using Foxpro tables with nHibernate
According to this post NHibernate configuration to connect to Visual FoxPro 8.0? it is possible to connect nHibernate to Foxpro.
When I try this configuration (OLEDB):
<?xml version="1.0" ...
0
votes
1answer
64 views
How to get properties of object which has been created from FoxPro custom class in .Net dll?
This is my FoxPro class:
DEFINE CLASS clscem AS custom
Height = 102
Width = 212
publicproperty = "this is my initial value"
pubprop = ""
Name = "clscem"
ENDDEFINE
and this is my form1.scx code:
...
0
votes
1answer
83 views
Main menu in a FoxPro 9 app
If you use the Visual FoxPro 9 Application Framework to create a desktop standalone application and add a database and form, the exported exe shows a Quick Start on load which shows the form to ...
0
votes
1answer
67 views
What is the best column type to store mixed data in SQL Server
We are doing a Visual Foxpro (DBF) to SQL Server conversion, but will retain the VFP GUI to now use the SQL Server database.
In several memo fields in VFP, we store a mix of ASCII characters and ...
0
votes
2answers
96 views
How can I extract a file stored as a BLOB in a FoxPro table?
I have some Foxpro tables, one of which includes a Blob field. I know the data type stored within the Blob (a MapPoint file), but I don't how to extract it, because I don't have FoxPro (not can I ...
0
votes
1answer
51 views
Is it possible to clear a .CDX file?
I was ordered to clean out some .dbf files (foxpro databases).
After "zap" them with a program I downloaded I found that the .cdx files associated to them had partial information about the rows ...
0
votes
3answers
185 views
DBF file table structure to create table in SQL server
I am trying to migrate DBF files to MS SQL Server 2008. While importing files from SQL Server Import And Export Wizard. I am unable to import the files. I have created the connection. But when I try ...
0
votes
1answer
63 views
Visual FoxPro query add total
I have the follwoing simple query which just SUMS the total of 1 or more rows. Based on a unique reference.
What I want to do is add a total column to the results of the jobcharge.nAccrInv grouped by ...
0
votes
3answers
289 views
How to use SET FILTER TO in FoxPro to limit the results to matched records in another cursor
Say, I've got a cursor with data records, with an identifying foreign key in csrData:
| ID | Foreign_ID |
| 1 | 1 |
| 2 | 1 |
| 3 | 2 |
| 4 | ...
0
votes
0answers
395 views
How to install SQL Server 2008 R2 32 bit on 64 bit platform [closed]
I would like to install SQL Server 2008 R2 Developer 32 bit edition on Windows 7 Professional SP1 64 bit but I do not know the command line arguments that should be passed to setup.exe in order to ...
0
votes
2answers
167 views
VFP ComboBox Content from SQL Server 2005 Express table
I'm still newbie in VFP, I'm looking for advices and suggestions on how to pull SQL Server table fields into VFP combobox(or other objects as well, if its better), just like auto-complete but from sql ...
0
votes
2answers
213 views
wcf service can't update a dbf file - “read only” error
I have a wcf 4 service that is trying to add a record to a visual fox pro dbf file on the same server. When it tries to do the insert I get "Cannot update the cursor USER, since it is read-only."
I ...
0
votes
1answer
76 views
Converting Visual FoxPro Database
Is it possible for a visual FoxPro Database file to be converted to a FoxPro 2.6 (fpd26) database file?
If possible please tell me how.
0
votes
1answer
189 views
Loading large Visual FoxPro files are very slow. C#(OleDB)
I want to load large .DBF (Visual FoxPro) files into a DataTable.
For smaller files < 300MB it works fine with a fill command, and it runs pretty fast.
But for larger file I run out of memory and ...
0
votes
3answers
118 views
FoxPro sometime doesn't find files in the LAN
Sometimes a visual FoxPro App doesn't find files in a FileShare, which are there.
for example when checking in a loop File() on a existing file on a Network share about 5% of the tries don't find the ...
0
votes
0answers
70 views
It's posible to transfer all the data from DBF (foxpro) db to MySQL DB? [closed]
Possible Duplicate:
How to sync Visual Foxpro dbfs with MySql?
I'm working on this project of building a new app. I'm planning to use MySQL for the database, however the client needs the ...
0
votes
2answers
200 views
Handling OCX errors in VFP (FoxPro)
I have an ocx that can sometimes cause an "internal application error" when calling one of it's methods in vfp9.
I've tried using on error and try/catch. For both, instead of getting the error, I get ...
0
votes
2answers
301 views
My Visual FoxPro application appears to close… but is still running in the Task Manager
My FoxPro program has a quit button and the usual min/max/X buttons in the top right, and when using either the program disappears and seems to have closed properly. However, when I check my Task ...
0
votes
2answers
135 views
FoxPro form not updating tables
I've created a very simple form with two textboxes and an 'update locations' button, the inputted values of which should be updating to two linked tables in a database. I'm eventually trying to put ...
0
votes
2answers
117 views
New to Visual FoxPro- my textboxes are greyed out and inaccessible
I'm attempting to create a Visual FoxPro standalone application that will take two inputs from a user (old location and new location). It will have two tables with a 1:M relationship with primary and ...