To link a textfield to a recordset:To place the data in the textbox without linking:Code:set txtText.DataSource = rsSource txtText.DataField = "Field"So what's the equivalent with a combobox. To link the combobox:Code:txtText.Text = rsSource!FieldSo how can I just place the text in the combo box without linking it? I don't think I can as I still need it to have the .listfield option.Code:Set cboCust.DataSource = QteHrdRS Set cboCust.RowSource = CustRS With cboCust .DataField = "Customer" .ListField = "Name" .BoundColumn = "CustNumber" End With




Reply With Quote