I made 2 of 3 tab pages (with TabCtl514) invisible when loading the main form (frmInspecion) with the code:
The first tab page (with form frmPSD and Page Index 0) is always visible. On that form I have combobox (cboInspecion).
So, I need after update that cbo to make rest tab pages to be visible. How is possible to do it?
Code:
Private Sub Form_Load()
Me.Prescriptions .Visible = False
Me.Аcts.Visible = False
End Sub
So, I need after update that cbo to make rest tab pages to be visible. How is possible to do it?