I'm writing some code to pull in data from an Access DB. I haven't done it in a while and when I close the form I'm getting an Object Variable wor With Variable not set. Here's the code I'm using. Be gentle again I haven't done this in a while. Thanks for any help provided.
Private Sub UserForm_Initialize()
'Path = P:\Safety\Audit Database\Audit_Database.mdb
Dim cnt As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim strpath As String, strSQL As String
Dim strconn As String, Item, i As Long, strbu As String
strpath = "P:\Safety\Audit Database\Audit_Database.mdb"
strconn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & strpath & ";"
Sheets("Data").Select
strSQL = "SELECT * FROM tblbu"
cnt.Open strconn
Set rst = cnt.Execute(strSQL)
With rst
.MoveFirst
Do While Not .EOF
strbu = .Fields(i)
frmmain.cmbareas.AddItem strbu
rst.MoveNext
Loop
frmmain.Show
End With
rst.Close
cnt.Close
Set rst = Nothing
Set cnt = Nothing
End Sub
Private Sub UserForm_Initialize()
'Path = P:\Safety\Audit Database\Audit_Database.mdb
Dim cnt As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim strpath As String, strSQL As String
Dim strconn As String, Item, i As Long, strbu As String
strpath = "P:\Safety\Audit Database\Audit_Database.mdb"
strconn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & strpath & ";"
Sheets("Data").Select
strSQL = "SELECT * FROM tblbu"
cnt.Open strconn
Set rst = cnt.Execute(strSQL)
With rst
.MoveFirst
Do While Not .EOF
strbu = .Fields(i)
frmmain.cmbareas.AddItem strbu
rst.MoveNext
Loop
frmmain.Show
End With
rst.Close
cnt.Close
Set rst = Nothing
Set cnt = Nothing
End Sub