Fill ComboBox At Runtime

rishi_375

Registered User.
Local time
Today, 05:25
Joined
Dec 23, 2003
Messages
37
Hi,
I want to fill combo box at runtime. I create a Recordset and i want to bind this recordset value to combobx.
 
rishi,

You don't need a recordset, that makes it more difficult.

At run-time, you can assign a query or a table as the combo's
RowSource. First, Me.Combo.RowSource = "SomeQuery".
Then just Me.Combo.Requery and it's all set to go.

Course if it's always the same query, you're OK anyway.

Wayne
 

Users who are viewing this thread

Back
Top Bottom