I have a button in formA. When I click on it I want it to show the listB.
(To show it I used the event code: ListB.Visible = True)
The thing is, listB is in formB (wich is a subform of formA).
Code isnt working because listB doesnt exist in formA, got an error code.
I tried [Form]![FormB].ListB.Visible = True
but it didn't work, I don't think I can do this in an event code.
Thx for helping a geek out.