S
SeanP
I am trying to create a userform which has a series of ComboBoxes which would
be populated from an excel sheet using DAO.
I am using http://word.mvps.org/FAQs/InterDev/FillListBoxFromXLDAO.htm as a
reference on how to do this.
I want each ComboBox to be dependent upon each other. So really my question
is when retreiving a record set using
Set rs = db.OpenRecordset("SELECT * FROM `my_record_set`")
can `my_record_set` be a variable? I tried declaring a varible as a string
using
Dim myvariable As String
Set rs = db.OpenRecordset("SELECT * FROM myvariable")
but that does not seem to work, anyone know how I can do this?
be populated from an excel sheet using DAO.
I am using http://word.mvps.org/FAQs/InterDev/FillListBoxFromXLDAO.htm as a
reference on how to do this.
I want each ComboBox to be dependent upon each other. So really my question
is when retreiving a record set using
Set rs = db.OpenRecordset("SELECT * FROM `my_record_set`")
can `my_record_set` be a variable? I tried declaring a varible as a string
using
Dim myvariable As String
Set rs = db.OpenRecordset("SELECT * FROM myvariable")
but that does not seem to work, anyone know how I can do this?