ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Error while populating a combobox from Access database (https://www.excelbanter.com/excel-programming/365766-error-while-populating-combobox-access-database.html)

shivboy[_13_]

Error while populating a combobox from Access database
 

Hi,

I coded the following Sub to populate a combobox / listbox but it is
generating a Type mismatch error.


Code:
--------------------

Sub fillBox(ByVal oForm As Form, ByVal oList As Object, ByVal oField As String, ByVal oTab As String)

dbPath = "C:\abc.mdb"

Dim sql As String

sql = "SELECT " & oField & " FROM " & oTab

Set con = New ADODB.Connection
With con
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Open dbPath
End With

Set rs = New ADODB.Recordset
rs.CursorLocation = adUseServer
rs.Open Source:=sql, ActiveConnection:=con, CursorType:=adOpenForwardOnly, LockType:=adLockOptimistic, Options:=adCmdText

Do Until rs.EOF
oForm.Controls(oList).AddItem rs(1)
rs.MoveNext
Loop
rs.Close
con.Close
End Sub

--------------------


When I call the above Sub, I use the following code:


Code:
--------------------

Call fillBox(myForm, myCombo, "sName", "tblState")

--------------------


Now, where exactly am I going wrong? Please help.

Peace,

Shivboy


--
shivboy
------------------------------------------------------------------------
shivboy's Profile: http://www.excelforum.com/member.php...o&userid=35137
View this thread: http://www.excelforum.com/showthread...hreadid=556821


NickHK

Error while populating a combobox from Access database
 
oForm.Controls(oList).AddItem rs.Fields(1).Value
'Or Fields(0), can't remember if it's 0 or 1 based.

NickHK

"shivboy" wrote in
message ...

Hi,

I coded the following Sub to populate a combobox / listbox but it is
generating a Type mismatch error.


Code:
--------------------

Sub fillBox(ByVal oForm As Form, ByVal oList As Object, ByVal oField As

String, ByVal oTab As String)

dbPath = "C:\abc.mdb"

Dim sql As String

sql = "SELECT " & oField & " FROM " & oTab

Set con = New ADODB.Connection
With con
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Open dbPath
End With

Set rs = New ADODB.Recordset
rs.CursorLocation = adUseServer
rs.Open Source:=sql, ActiveConnection:=con,

CursorType:=adOpenForwardOnly, LockType:=adLockOptimistic,
Options:=adCmdText

Do Until rs.EOF
oForm.Controls(oList).AddItem rs(1)
rs.MoveNext
Loop
rs.Close
con.Close
End Sub

--------------------


When I call the above Sub, I use the following code:


Code:
--------------------

Call fillBox(myForm, myCombo, "sName", "tblState")

--------------------


Now, where exactly am I going wrong? Please help.

Peace,

Shivboy


--
shivboy
------------------------------------------------------------------------
shivboy's Profile:

http://www.excelforum.com/member.php...o&userid=35137
View this thread: http://www.excelforum.com/showthread...hreadid=556821





All times are GMT +1. The time now is 06:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com