Hi fellow byters, I was wondering is it possible to combine a value list definition and an SQL query in the same line of the row Source of a combo box. The Value List does the trick for now but if a new operating system type is entered into the database i wish for the combo box to pick it up instead of adding it each time into a value list. The SQL works fine as well but i Wish to add the All Clause
Value List version
SQL Query
The following is giving errors but it shows what i wish the ComboBox to display
Is this possible or should I be taking a different approach
Regards
Panteraboy
Value List version
Code:
"Windows Business Proffesonal";"Windows XP Proffesonal";"All"
Code:
SELECT DISTINCT pc_small_specs.operating_sysytem FROM pc_small_specs";"
Code:
SELECT DISTINCT pc_small_specs.operating_sysytem FROM pc_small_specs";"All";
Regards
Panteraboy
Comment