hi i am making pos system i am using msflexgrid.. and i have make combo box visible when user clicks on grid... i have data combo which contains all supplier company name.... now my problem is that i want to load the combo box with relevant products as user selects Supplier company name...i dont want to show all products... i only want to load the products whos supplier name = dataCmbo.Text and the most important i want to do it by using Adodc...
what i am doing is this(See in picture)...when programs load it does not give any error but it also dont add any record in combo box also.. please help me as early as possible it is urgent.
there is some problem in sql statement of adodc please figure it out.
(Please Check attachments)
my code to load combo is this..
Dim vrnt As Variant
With Adodc4.Recordset
Do While Not .EOF
vrnt = ![Product_Name]
If IsNull(vrnt) Then vrnt = ""
Combo1(0).AddItem CStr(vrnt)
.MoveNext
Loop
End With