> Thanks Sounds like I got quite some reading to get to that 'terminal!'
>
Actually it is very simple. Once you get the terminal server up (you might want to engage someone to do this for you) setting up the clients is simple.
The real question here is "have you created your app as a multi-user app?" If you have done so, you should not have any problems at all. When a user logs on to Terminal Services, it is as if he/she actually walked into your server room and logged into the server console.
Second thing you may need to look at: If you are using "batch" data entry and if your user can save batches to his/her local C:\ drive, you may need to look at changing the directory that your store these tables in. For example, if your users save their batch data to C:\MyApp\LocalData\MyBatchTable.dbf this will work perfectly if you are in a LAN situation and the users are working on their own machines. If they are logging in with TS, all of your TS users are going to log onto the same machine and therefore will all be looking at the same C:\MyApp\LocalData\MyBatchTable.dbf. You may need to move this to C:\Documents and Settings\UserName\Application Data\MyApp\LocalData. Take a look at GETENV([APPDATA]) in VFP Help - it will provide you with that directory:
lcLocalAppDataDir = ADDBS(GETENV([APPDATA]))+[MyApp\LocalData]
lcLocalBatchFileName = ADDBS(lcLocalAppDataDir)+[MyBatchTable.dbf]
Ken
You shall know the truth - and the truth shall set you free. (John 8:33)