Posts by Rogerio Claro • 9 points
3 posts
-
-1
votes1
answer26
viewsQ: How to change Combobox value according to case
The combobox has two options the Letter option and numbers option. When I set one, I need it to appear in another comboBox only the information corresponding to the selected option. The comboBox is…
c#asked Rogerio Claro 9 -
0
votes0
answers49
viewsQ: Take 3 values
I have a Combobox, which run the following search: public DataTable Localizar(String valor) { DataTable tabela = new DataTable(); SqlDataAdapter da = new SqlDataAdapter("select sc.scat_loja as Loja,…
-
-1
votes1
answer66
viewsQ: How to insert an "if" into an INSERT string in the database?
I have the following variable DateTime ContaRecebeDataPagto = Convert.ToDateTime(dgOrigem.SelectedRows[0].Cells[2].Value.ToString()); She gets a value from DataGrid, in some cases the date of…