Posts by jackes silva • 3 points
2 posts
-
0
votes2
answers25
viewsA: C# popular a combo box with variable double
Good after breaking my head a lot and testing various codes I got it I hope it helps someone with the same problem: for(int i = 147; i <= 200; i++) { double num = i;…
-
-2
votes2
answers25
viewsQ: C# popular a combo box with variable double
That make a combo box with various height values but my code does not run, the result only adds 1.47: for(double i = 1.47; i <= 2.00; i++) { cbxExemplo.Itens.Add(i); }…