Have Subform "Admin_Purchase_Subform" on this subform have a button "EditBtn" with a code
Private Sub EditBtn_Click()
Me.AllowEdits = True
Me.AllowDeletions = False
Me.Kaption = "EDIT MODE !!!"
End Sub
If I Clik On "EditBtn" the textbox "Kaption" on Subform "Admin_Purchase_Subform" it shows EDIT MODE !!!
but I want this textbox "Kaption"on Main Form "Admin_Purchase_Payments_Main_Form" how can I do that, it shows the EDIT MODE !!! on the Main Form.