Leon,
PDW = Package and Deployment Wizard. MSI = Microsoft Installer Services.
The way the recordset is bound to the grid is straightforward DAO. The Datacontrol is bound to the grid, where columns have been defined. The whole setup is extremly basic (inherited programs).
Code:
Public Sub BindRecordsetToGrid()
datCustomers.Recordset = g_rsCustomers
dbgrdCustomers.Refresh
End Sub
And yes, I have tried to make a default exe with one grid, button and use SELECT * FROM CUSTOMERS; and bind it to the data control, same result. I do however have a XP machine (old installation at our head of network administration) and that does display the data in the grids. All DLL's and registry settings are the same (compared using filemon and regmon).
Grtz.©
D.
Main Topics
Browse All Topics





by: leonstrykerPosted on 2004-01-13 at 05:58:58ID: 10103959
What do you mean by PDW and MSI? Can we see the way the recordset is bound tot he grid. Have you tryed setting up a brand new application with a grid and binding a recordset to it.
Leon