W
Wes
When tring to program what the Record Source and Record Source Type I get a blank combobox within the form.
The record Source I want in combo2 when the combo1 = "Accessories" is as follows
The record Source type is Table/Query
The Record Source is table A1
When the combobox1 = "Engines" I want combo2 as follows
record Soucre Type to = "Table/Query"
and Record Source = A2
My code is as follows:
If Combo1.value = "Accessories" then
combo2.recordsourceType = "Table/Query"
combo2.recordsource = "A1"
elseif
combo1.value = "Engines" then
combo2.recordsourceType = "Table/Query"
combo2.recordsource = "A2"
end If
Is there another wasy to go about it?
Wes
The record Source I want in combo2 when the combo1 = "Accessories" is as follows
The record Source type is Table/Query
The Record Source is table A1
When the combobox1 = "Engines" I want combo2 as follows
record Soucre Type to = "Table/Query"
and Record Source = A2
My code is as follows:
If Combo1.value = "Accessories" then
combo2.recordsourceType = "Table/Query"
combo2.recordsource = "A1"
elseif
combo1.value = "Engines" then
combo2.recordsourceType = "Table/Query"
combo2.recordsource = "A2"
end If
Is there another wasy to go about it?
Wes