0
Try:
SELECT denumire FROM dbo.client WHERE UPPER(SUBSTRING(denumire, 1, 2)) = 'RO'
Accepted 0
Thanks, it worked. I have one more question, using DataBound and Query creates a Fillby ToolStrip and the comboBox is filled only when I click on the Fillby Tool. Is there a way to fill automatically the combobox? when form loads or something like that?
0
thanks, but still doesn't work, now doesn't display anything :(
0
Hello Friend,
Just replace your query with the following
SELECT denumire FROM dbo.client WHERE denumire like 'RO'.
Hope that solves your problem.
With Regards,
Vishal Gilbile