1
I have the following table:
VENDAS
------------------------------------------------------------------------------------------------------------
VENDA_ID | VENDA_RAZAOSOCIAL | VENDA_CIDADE | VENDA_DATA | VENDA_FORPAGAMENTO | VENDA_VENDEDOR | VENDA_VALOR
And I use the following SELECT
to select the sales:
SELECT * FROM VENDAS WHERE VENDA_DATA>=@dataIni and VENDA_DATA<=@dataFinal and VENDA_VENDEDOR = @vendedor
I already have the INSERT , now I need to know how I can pull the seller to appear in the combobox and so I can click on a button to filter
Someone can help me ?
You can use the System.Data elements to pull everything to a datatable and place the Datasource property of the combobox to search in this Datatable
– KhaosDoctor
would be like ? using system data ?
– Rennan Hanna
Web Forms, WPF, XAML, MVC... What you are using?
– Leonel Sanches da Silva
am using windows Forms c#
– Rennan Hanna
am using windows Forms c#
– Rennan Hanna
Someone could help me ?
– Rennan Hanna