Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a combo box displaying on my spreadsheet. The source for this is a SQL
view of just 2 columns. How do I have the recordset populate this combo box WITHOUT having to paste the recordset in a spreadsheet column and then put that range in the "listfillrange" property. I'd rather it be a clean feed from SQL, is this possible? Here is my code: (the connection and view does execute) Dim strSQL As String Dim myConnection As Object Dim myCommand As Object Dim myRecordSet As Object Set myConnection = New ADODB.Connection Set myCommand = New ADODB.Command Set myRecordSet = New ADODB.Recordset myConnection.ConnectionString = "Provider=SQLOLEDB;Data Source=devserver;" "Database=ABC;Trusted_Connection=Yes;Prompt=Comple te" strSQL = "Select * from vw_Rep_CUID" myConnection.Open Set myCommand.ActiveConnection = myConnection Set myRecordSet.ActiveConnection = myConnection myCommand.CommandText = strSQL myCommand.CommandType = adCmdText myCommand.Execute myRecordSet.Open myCommand 'THIS IS WHERE ITS WRONG I believe. Me.cbo_Rep_CUID.ListFillRange = myRecordSet |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
"Combo Box - getting control combo box to stick in place in worksh | Excel Discussion (Misc queries) | |||
"Combo Box - getting control combo box to stick in place in worksh | Excel Discussion (Misc queries) | |||
return recordset | Excel Discussion (Misc queries) | |||
Type recordset/recordset? | Excel Programming | |||
Recordset | Excel Programming |