Posts by Umberto Santos • 176 points
3 posts
-
4
votes1
answer207
viewsA: Load combobox C# from another in Load()
Good morning, Daniel Afonso. I believe your problem lies in the fact that working with the event Combobox.SelectedIndexChanged(sender, e), the property ComboBox.SelectedText() always comes as an…
-
3
votes4
answers238
viewsA: Variable feed within variable
What you want does not correspond to the concept of "variable". Variable is a memory space that will be reserved to store values by your program/application. What you want can perhaps be achieved by…
-
6
votes1
answer86
viewsA: get the values of a generic list List<t>
And I’m getting the following error: System.Nullreferenceexception In this code snippet List<string> itensSelecionados = new List<string>();, you are defining a new object called…