mtagliaferri
Registered User.
- Local time
- Today, 09:24
- Joined
- Jul 16, 2006
- Messages
- 550
I have a form which is inserted in another form, by double clicking on a specific field it opens a 'Help' form with a list of parameters; I want to double click on one parameter (Field) and copy that value to my previous form in the field I have double clicked.
I have the following code which obviously is not working :banghead:
I have the following code which obviously is not working :banghead:
Code:
Private Sub CrewRoleCode_DblClick(Cancel As Integer)
Me.Refresh
If Not IsNull(CrewRoleCode) Then
Forms!frmDuty!sfrmFlight![SM Crew Assigned].Form!IDCrewMember = Me.PositionWorked
End Sub