I used the code from HansV that he shared some time ago (Linking to pictures) and it works fine in my form but when I move the controls into a tab – by cutting and pasting, they no longer work. I am probably incorrectly moving these controls but cut/paste is all that seems to work for me. I am unable to simply drag them into the tab page.
Also, I noticed that when I moved an option group into the tab page, the associated code doesn’t work that previously worked. This was an On Current event for the form.
If Me.Frame68 = 1 Then
Me.Frame68.BackColor = RGB(237, 28, 36)
Me.Label111.Visible = True
Else
Me.Frame68.BackColor = RGB(214, 223, 236)
Me.Label111.Visible = False
End If
What’s the solution? Should I change Me.Frame68 to me.Page123.Frame68? Page123 is the tab page.