Label Visibility

Jonny45wakey

Member
Local time
Today, 12:23
Joined
May 4, 2020
Messages
47
Hi not sure if this is achievable but here goes in the hope someone can help :)

I have a label "label1704" on a form "frmDayshift" which is hidden on the form load event.

On the form is a combobox "combo123" which is loaded with drop down values, when "NoProd" is selected i want the label to be visible, however; when scrolling back through the record navigator this label disappears.

Is there a way to keep the label visible on record navigation if the combobox value = "NoProd"?

Any ideas welcomed as always.

Regards

Jonny
 
If I understand correctly. When you move to another record from the current record you want it visible again.
If so use the forms on current event to set it back to visible. On current happens when moving to a different record.
 
as mentioned use Form's Current event:

Code:
Private Sub Form_Current()
Me.label1704.Visible = (Me.combo123 = "NoProd")
End Sub


also add code the combo123 AfterUpdate event:

Code:
Private Sub combo123_AfterUpdate()
Call Form_Current
End Sub
 
Is there a way to keep the label visible on record navigation if the combobox value = "NoProd"?
Yes, test for it on each record. As @MajP states, that would be the current event.
 

Users who are viewing this thread

Back
Top Bottom