Navigate though Usercontrols in a GroupBox

M

Mikael Syska

Hi,

I want to navigate though my usercontrols via some buttons, how to i do
that....

I have tried lots of thing, but as I'm still new to C# i havent found
the right path to follow yet, are there any one that can help me, I have
the following code....

private void Form1_Load(object sender, System.EventArgs e)
{
TextBoxes myTextBoxes = new TextBoxes();
CheckBoxes myCheckBoxes = new CheckBoxes();
Buttons myButtons = new Buttons();

myTextBoxes.Location = new System.Drawing.Point(20, 10);
myCheckBoxes.Location = new System.Drawing.Point(20, 10);
myButtons.Location = new System.Drawing.Point(20, 10);

this.Group.Controls.Add(myTextBoxes);
this.Group.Controls.Add(myCheckBoxes);
this.Group.Controls.Add(myButtons);
}
and want to make a button to nagivete to the left and right, how to do
that.... I can ofcause make the button, but how to select the next or
previous usercontrol???

kind regards
Syska
 
M

Mikael Syska

Aint there any one that can help me with this one???

maybe just a little hint?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top