Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP on a PDA

Status
Not open for further replies.

crpryor1

Programmer
Mar 25, 1999
21
US
Will VFP 9.0 run on a PDA? I have a client that wants to use a PDA for data entry and at the end of the day transfer the data to his PC. My question is can I use VFP 9.0 to do this?
Thank You
Chuck
 
Chuck,

The short answer is no. VFP 9.0 needs Windows 2000 or above, so unless they are making PDAs with the likes of XP or Vista these days, it can't be done.

That said, there are many ways of capturing data on a PDA and transferring it to a desktop PC or server. In fact, it should be quite easy. How you do it depends on which OS the PDA is running, and what development tools you have available for it.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My Visual FoxPro site: www.ml-consult.co.uk
 
Hi Chuck,

this tells you, what you can and can't do with VFP and PDAs, writing an app is a can't do:


What you can and can't do in FoxPro code

In VFP, you can perform these tasks:

Start an application on a Pocket PC
Enumerate files and folders on a Pocket PC
Transfer files between a desktop computer and Pocket PC
Create, modify, and delete files and folders on a Pocket PC
View and modify a Pocket PC System Registry
View and modify Pocket PC databases: Contacts, Tasks, Calendar, and others
Read Pocket PC configuration data

However, you can't build a FoxPro executable and start it on a Pocket PC. For developing mobile applications, you have to use programming tools specifically designed for this kind of development, such as Microsoft's eMbedded Visual C++ 4.0.

Bye, Olaf.
 
Christof Wollenhaupt is working on a VFP runtime, which allows to execute fxp files. The Runtime is written in .NET and also works on PDAs.

The supported list of commands is limited, but you already can access SQL Server Pocket Edition and create simple forms. DBFs are read only, no VFP SQL support, you can just SCAN through a DBF.


Scroll down and you see an image of a PDA emulator. Christof is in the foxpro usergroup in my area (Germany,Hamburg), and I've seen it work on a real PDA. That might be an option, but you have to learn to do it with the limited set of commands and functions supported.

Bye Olaf.
 
Chuck (and Olaf),

Another option might be to install a DOS emulator, if available on your particular PDA, and to write your code in FoxPro for DOS.

Not a pleasant option, but might be better than some others.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My Visual FoxPro site: www.ml-consult.co.uk
 
Thanks for all of your help. I knew that would be the answer, but I had to ask. I think I will look in to Syware, it may do what I want. It doesn't seem to hard??????
Chuck
 
One step further that Mike's suggestion... use the DOS emulator to load a copy of Win 98, and the run VFP 5 or 6!

I have seen an article on the net about someone doing that... can't be a 'comfortable' option though.

Regards

Griff
Keep [Smile]ing
 
I used syware. I had to add a field to my tables, connect to the tables, and then whenever I connected and synced the pda I got updated tables on it to view with the forms that syware created to run on the pda. There were a couple of programs one for reports and one for forms i think in visual ce
wjwjr
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top