On Click event on Tab page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to write some code to be performed at the on Click event of
selecting a tab on my form. This event, however, only seems to work
spasmodically. Is this a 'feature' of Access 2003 and is there a way round
it? I notice an earlier question was posted and the advice was to use the
'change' event, but I can't find a change event. Is it me?
 
Malc said:
I am trying to write some code to be performed at the on Click event
of selecting a tab on my form. This event, however, only seems to work
spasmodically. Is this a 'feature' of Access 2003 and is there a way
round it? I notice an earlier question was posted and the advice was
to use the 'change' event, but I can't find a change event. Is it me?

The Click event of a TabPage is not what you think it is. Use the Change
event of the TabControl instead.
 
Back
Top