Load a combo box using ADODB
Although this code could tightened up a bit, it demonstrates how to load a combo box with data from an Access database, via an ADODB connection. Place on a form a combo box and a command button Public Const strJetProvider = “Provider=Microsoft.Jet.OLEDB.3.51;DataSource=C:\myaccess.mdb”Public sub Command1_Click() Dim MyConn As New ADODB.Connection Dim MyRst As New ADODB.Recordset Dim strTemp As String With MyConn .ConnectionString… Read More »