Posts by AndersonBP • 143 points
4 posts
-
2
votes2
answers2118
viewsQ: How do I set a Radiobutton to default?
I have several radiobutton’s. How do I leave one marked as default? private void radioButton2_CheckedChanged(object sender, EventArgs e) { comboBox4.Visible = false; comboBox5.Visible = false;…
-
3
votes2
answers428
viewsQ: How to remove the option selected in multiple Comboboxes?
I have several components of the type ComboBox with identical options. The user must select one of them(e.g. "Name"). How to do so when an option is selected, in any one ComboBox, she disappears…
-
1
votes5
answers38715
viewsQ: Calling a form and closing a form in the same event
How do I call one form and close a form at the same event. For example: private void iniciar_Click(object sender, EventArgs e) { Close(); Frm1 newForm2 = new Frm1(); newForm2.ShowDialog(); }…
-
6
votes3
answers1123
viewsQ: Error in C# function to increment variable
Guys, I’m new and I have some "basic questions". I’m making a score, because there are many players I want to create the function to decrease/ increment. Incremental function public void…
c#asked AndersonBP 143