craigprice
Registered User.
- Local time
- Today, 12:08
- Joined
- Apr 8, 2013
- Messages
- 44
I have a form "Handover" on this form I have a button that enables edit functionality once clicked, I now have a subform on this form named "Bdown".
The Bdown subform allows edits without having to click the "btn_Edit" on the main form "Handover".
Is is possible to make the edit button on "Handover" control the edit function on "Bdown" also?
Currently "Handover" contains:
&
The Bdown subform allows edits without having to click the "btn_Edit" on the main form "Handover".
Is is possible to make the edit button on "Handover" control the edit function on "Bdown" also?
Currently "Handover" contains:
Code:
Private Sub btn_Edit_Click()
Me.AllowEdits = True
Me.btn_Edit.Caption = "Editing"
End Sub
&
Code:
Private Sub Form_Load()
Me.btn_Edit.Caption = "Edit Handover"
Me.AllowEdits = False
Application.CommandBars("Menu bar").Enabled = False
DoCmd.Maximize
DoCmd.GoToRecord , , acLast
Call AccessMoveSize(0, 0, 930, 780)
Call HideAccess
End Sub