Posts by Vinícius Rodrigues • 83 points
3 posts
-
1
votes2
answers311
viewsA: Change tab of Tabcontrol
I was able to change using tabcontrol selectedindex, ex: tabControl.SelectedIndex = 1;
-
2
votes2
answers311
viewsQ: Change tab of Tabcontrol
I am creating a Windowsform template and I am using a Tabcontrol and would like to create an event that changes the tab that is being displayed. I was able to change the content displayed with…
-
5
votes2
answers1821
viewsQ: How to implement a queue using two stacks
Hello, I need to implement a queue using two stacks, IE, I need to insert an integer on stack 1, and when removing an element all items on stack 1 should be transferred to stack 2, making it look…