It's nothig with XP sp2, I'm sure most of the people here use it. The only thing I could think of is that something's wrong with your procedure of creating connection. Please be sure that you do this:
In data link properties:
- Provider: Microsoft JET 4.0 OLE DB Provider
- Connection: Select access database from hard drive
- Username: Admin
- Check option "Blank password"
- TEST CONNECTION
- Drag Table to Designer, it will create connection and adapter object
- GENERATE Dataset from adapter (right click adapter object and select Generate Dataset)
- Drag datagrid to designer and bind it to dataset
- It load event code:
me.myDataAdapter.Fill(Me.myDataset, "myDataTable")
THIS MUST WORK!!!
If it's not working please try to check if your database is maybe corrupted or reinstal your visual studio or microsoft access, you can even try to install new microsoft data access components MDAC (download latest version from web, I belive it's version 2.8)
Sorry if it doesn't help!