Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading multi column combo box

Status
Not open for further replies.

ronhvb0357

Programmer
Mar 4, 2013
1
0
0
US
I'm trying to load a multi column combo box from a recordset using the following code.

Dim db As Object
Dim rs As ADODB.Recordset
Set rss = New ADODB.Recordset
Dim fldEach As ADODB.Field
Dim i As Integer
Dim strSearch As String

strSearch = Me.cboFldOff.Text
MsgBox ("cbo value = " & strSearch)

Combo5.Requery


Dim strSQL As String

strSQL = "Select PHA_Code, PHA_Name FROM pha_codes_names" & _
" WHERE Field_Office = " & " '" & strSearch & "'"

'rs.Source = "SELECT TeamName, TeamNum from Teams"
'rs.ActiveConnection = Application.CodeProject.Connection
'rs.CursorType = adOpenStatic
'rs.LockType = adLockOptimistic
'rs.Open



rss.Open strSQL, _
Application.CodeProject.Connection, _
adLockOptimistic, adCmdText

' MsgBox ("I opened I think" & rss.RecordCount)

If rss.RecordCount > 0 Then
rss.MoveFirst

With Me.Combo5

Do
Combo5.AddItem (i)
Combo5.Column(0, i) = rss![PHA_Code]
Combo5.Column(1, i) = rss![PHA_Name]
rss.MoveNext
i = i + 1
Loop Until rss.EOF
End With
End If

rss.Close
Set rss = Nothing

Me.cboFldOff.Text is the value from another combo box.

Thanks in advance.
 
First I would suggest to use [tt]Option Explicit[/tt] at the top of your code.
This way you will see you don't declare [tt]rss[/tt] anywhere :-(

Have fun.

---- Andy
 
Why not simply this ?
Code:
Me!Combo5.RowSource = "SELECT PHA_Code,PHA_Name FROM pha_codes_names" & _
 " WHERE Field_Office='" & Me!cboFldOff & "'"

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top