Hello, I wanted to have a "+" and "-" on my form (frmVWI) and when pressed it expands my subform (frmSubformVWI)and makes my forms header smaller because the subforms in its detail section. I have some code that makes the subform visable ect. but not what im looking for. Any easy ideas or code samples I can use to acomplish this? Thanks!
Thanks,
SoggyCashew.....
Code:
Private Sub cmdVWIShutter_Click()
If cmdVWIShutter.Caption = "-" Then
Form.Section(acHeader).Height = ?
frmVWISubform.Height = ?
cmdVWIShutter.Caption = "+"
Else
Form.Section(acHeader).Height = ?
frmVWISubform.Height = ?
cmdVWIShutter.Caption = "-"
End If
End Sub
Thanks,
SoggyCashew.....