Refresh

  • Thread starter Thread starter Jeroen Verdrengh
  • Start date Start date
J

Jeroen Verdrengh

Hi,

I'd like to call a VBA function every time the user switches pane in a
TabbedPane control. No eventhandler seems to do the job.

greets,

Jeroen
 
Private Sub tabProj_Change()
Select Case tabProj.Pages(tabProj).Name
Case "pg1"
'Do this
Case "pgApples"
'Do That
Case "pgTest"
'Do This, that, and the other
Case Else
msgbox "Fire up the generator and drink bottled water!", vbcritical
end select
End Sub


--
HTH,

Steve Clark, Access MVP
FMS, Inc.
Professional Solutions Group
http://www.FMSInc.com
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Is your Access database too slow?
Are you ready to upgrade to SQL Server?
Contact us for optimization and/or upsizing!
http://www.FMSInc.com/consulting
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 
Back
Top