subform properties

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yarg1001
    New Member
    • Jul 2007
    • 6

    #1

    subform properties

    I have set the tab for one subform (Document Status) to visible = false, I want to change it to true after I update another subform. I have tried variations on the code below but the tab field isn't available.

    Private Sub Form_AfterUpdat e()

    Me!Document_Sta tus.Visible = True

    End Sub
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    If this is in your subform then you need to use Me.Parent.Docum ent_Status.Visi ble

    Comment

    • yarg1001
      New Member
      • Jul 2007
      • 6

      #3
      Perfect!!!!!!!! !

      That was it thank you.

      Comment

      • Rabbit
        Recognized Expert MVP
        • Jan 2007
        • 12517

        #4
        Not a problem, good luck.

        Comment

        Working...