Using VB.Net
i am using controls (textbox, combobox, checkbox, etc) with Groupbox and without groupbox in the form
Tab function key is not going to the Groupbox Controls
For Example
Form1
{
Textbox1
Textbox2
Combobox1
Groupbox (In the Form1 Itself)
{
Textbox3
Checkbox
}
Save (Button)
}
Once form1 loaded, textbox1 will be focus, then i click the tab it's going to textbox2, combobox1 and save button. The Tab is not going to Group box (textbox3, checkbox)
How to solve this problem.
Need VB.Net Code Help....