MohamedHamada
2023-03-26T20:09:12Z
Please how i can populate data from access database in excel userform iGrid any help please
Igor/10Tec
2023-03-27T16:14:39Z
An example of that can be found in the iGrid help file. See the Loading ADO/DAO Data topic in the Programmer's Guide section. A simplified version of the sample is the following:

Dim cnn As New ADODB.Connection
Dim rsCustomers As New ADODB.Recordset

cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Customers.mdb"
rsCustomers.Open "Customers", cnn

iGrid.FillFromRS rsCustomers