damn image n combo's

mattbland

Isnt really listening
Local time
Today, 12:29
Joined
Aug 8, 2002
Messages
33
ive got a selection of images which appear/disappear using the .visible command, which is run from the values in a combo box. When i move from record to record, the values change but the picture doesnt. How can i solve this? ive already had to cut and paste the original code for it into the form open event, but obviously this doesnt include manouvering round once its open.

ta much
 
Assuming that your main code for hiding/showing images is in the the combos AfterUpdate event, You should fire that event from the Form_Current event:

Code:
Private Sub Form_Current()
  Combo1_AfterUpdate
End Sub

The form current event should fire when you navigate to a new record.
 
the combo box property was set to change, so i modified it to afterupdate and still works normally. Ive added your code but it sez that it is an invalid use of property.

dont matter i put a dot instead of an understroke!

cheers rich
 

Users who are viewing this thread

Back
Top Bottom