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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FoxPro 2.6 and Mixed Network 1

Status
Not open for further replies.

MJA15

Programmer
Mar 27, 2000
3
US
I created a multi-user application for a client using FoxPro 2.6 for windows. The client was just given some MAC's and asked me if they could run this application on a mixed network (two PC's and two MAC's both accessing the database stored on a PC server running WIN_NT). I am well aware of the software needed to connect MAC's to a PC server, but I haven't been able to get any info about concurrent access to a database by mixed workstations. Any help on this subject would be greatly appreciated.
 
Yes you can have mixed platforms access the same databases. First you need to get the mac utility programs loaded that enable it to read files from a Windows FAT.<br><br>Then you will find there are some FoxPro commands that act differently between Win and Mac.&nbsp;&nbsp;You -&gt; WILL &lt;- have to go into the code and add conditional branches with the _dos(), _win(), _mac() or _unix() commands<br><br>Example<br>do case<br>case&nbsp;&nbsp;_win() <br>&nbsp;&nbsp;***<br>&nbsp;&nbsp;***<br>case _mac()<br>&nbsp;&nbsp;***<br>&nbsp;&nbsp;***<br>case _dos()<br>&nbsp;&nbsp;&nbsp;***<br>&nbsp;&nbsp;&nbsp;***<br>case _unix()<br>&nbsp;&nbsp;&nbsp;***<br>&nbsp;&nbsp;&nbsp;***<br>endcase<br>&nbsp;&nbsp;<br><br>Tip, Find a good on-line Mac Users Group to help you.<br>Good Luck<br> <p>David W. Grewe<br><a href=mailto:Dave@internationalbid.net>Dave@internationalbid.net</a><br><a href= > </a><br>
 
Thanks alot for your help on this issue. If this helps me get everything working I'll let my client know that they owe it all to you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top