I can populate the combo box very well with the following code.
Combo0.RowSource = "SELECT DISTINCTROW [dbo_MyData].[ID], [dbo_MyData].[Description] FROM [dbo_MyData];"
This displays two lists.
How at the first option I would like displayed in the combo box is 0 then ALL.
Then the data from the select would be displayed.
The combo would then look like:
0 All
1 Blue
33 Green
88 Red
If you can help please provide as much simple info and instructions s possible as I am new to this.
ta
Combo0.RowSource = "SELECT DISTINCTROW [dbo_MyData].[ID], [dbo_MyData].[Description] FROM [dbo_MyData];"
This displays two lists.
How at the first option I would like displayed in the combo box is 0 then ALL.
Then the data from the select would be displayed.
The combo would then look like:
0 All
1 Blue
33 Green
88 Red
If you can help please provide as much simple info and instructions s possible as I am new to this.
ta