Hi,

I know that we can hide a page of a Tab by

Qt Code:
  1. int page_index = 0;
  2. ui->myTab->removeTab(page_index);
To copy to clipboard, switch view to plain text mode 

but how can I show this page again. There seems no such kind of function in Qt 4.7 Tab

Qt Code:
  1. int page_index = 0;
  2. ui->myTab->showPage(page_index);
To copy to clipboard, switch view to plain text mode 

Thank you in advance