Posts by Heitor Badotti • 16 points
3 posts
-
0
votes1
answer16
viewsA: Error comparing Vb.net dates
Use "Datagridviewrow" instead of "Datarow" to be able to go precisely to the value you need... Cells(0) means that the value you want is in column 0... If it is in column 1, then use Cells(1) and so…
-
0
votes1
answer24
viewsA: How to compare a string to a datarow
You have to specify which column the clients are in... This code below will work if your customers are in the first column (index 0) Dim clientesCadastrados As DataTable =…
-
0
votes1
answer42
viewsA: Sort hidden radiobuttons in WPF stackpanel
Good morning Fernando, you will have to create an Array with the position of each radiobutton Dim Posicoes As Point() = {RadioButton1.Margin, RadioButton2.Margin, RadioButton3.Margin} ' Precisam…