Access2007 ON_CLICK problem on IMAGE on a TAB CONTROL

R

Rob

Hi All,
With Access 2003 i made a form with a tab control.
One one of the pages there is an image control with an ON_CLICK event
assigned to it (normal vba procedure).
With Access2003 the ON_CLICK is executed correctly
Exactly the same DB run under Access 2007 the ON_CLICK event is ignored...no
reaction at all.......
This problem does not seem to occur if the image is not on a tab control
Nor does it appear when i replace the image with a Button control.

Can anyone tell what is hapening ?
 
R

Rob

Thanks Allen...i thought i was going nuts...

Maybe you can also explain to me why Access2007 seems to be so very slow when
i use code like this:
Dim ctl As Access.Control
For Each ctl In Me.Controls
If ctl.Tag = "Calculation" Then
If ctl.Visible Then
ctl.Visible = False
Else
ctl.Visible = True
End If
End If
Next ctl
With Access 2003 this is within a flash...with Access2007 sometimes i have
to wait more than a second ....
Is this also an issue dealed with in the service pack?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top