Hi iDigiSoft-Daniel,
Please look into the [FormName].Designer.cs file to see whether these controls are added to the tabpage correctly.
In the [FormName].Designer.cs file, you can see the code like this.
I have added three tabpages to the TabControl.
tabpage1 has:
dataGridView1
button1
tabpage2 has:
dateTimePicker1
checkBox1
...
| // |
| //tabPage1 |
| // |
| this.tabPage1.Controls.Add(this.dataGridView1); |
| this.tabPage1.Controls.Add(this.button1); |
| // |
| //tabPage2 |
| // |
| this.tabPage2.Controls.Add(this.dateTimePicker1); |
| this.tabPage2.Controls.Add(this.checkBox1); |
| // |
| //tabPage3 |
| // |
| this.tabPage3.Controls.Add(this.textBox1); |
| this.tabPage3.Controls.Add(this.comboBox1); |
Please try to change that code into correct one. Then you can get back the controls on your tabpage3.
Please feel free to tell me if you have anything unclear.
Sincerely,
Kira Qian
Please mark the replies as answers if they help and unmark if they don't.