Nicola
I am also finishing up on a small multi-user application written with VFP 8. I started with MSDE. I recomend looking at SQL 2005 Express. It is Microsoft's replacement for MSDE. In theory, there are a few places where you may prefer MSDE, but I'm leaving MSDE and going with SQL 2005 Express. Express has a graphic interface where MSDE is command line only. Also, finding the instructions for MSDE is not easy. Here is a brief summary of how to get SQL 2005 installed and running.
Here is the URL to read up on SQL 2005 Express
1) instal WINDOWS INSTALLER 3.0 I you have XP, you
already have it.
2) install Framework 2.0
3) install SQL Express
4) Install "Microsoft SQL Server Management Studio Express - Community Technology Preview (CTP) November 2005"
Here's the catch. The default instalation is for LOCAL use only. You have to configure it to recieve remote connections.
Step 1 of 2. Start the Management Studio. Log on to the database. Right click on the database name in the object explorer. It should be the first item in the list in the left window. Click on CONNECTIONS. Click on ALLOW REMOTE CONNECTIONS TO THIS SERVER. Close Management Studio.
Step 2 of 2 Start SQL Server 2005 Surface Area Configuration. Click on SURFACE AREA CONFIGURATION FOR SERVICES AND CONNECTIONS. CLick on SQL SERVER BROWSER. Set STARTUP TYPE to AUTOMATIC.
There are other ways to set it up and I'm sure there are pro's and cons to how I've done it. But that's the quick way that took me 2 days to learn. That will get you started with SQL Express.
The UPSIZING wizard can take your tables and send them to SQLExpress via ODBC. It can also make a remote view for retieving tha data.
I hope this helps
Jim Rumbaugh