C
Crispy
Hi all,
All I want to do is copy a textbox value into one form from another
form. Both forms are open when this occurs.
Here is my code:
Private Sub Form_Close()
If IsNull(Forms!frmNewStudent!ParentID) Then
Forms!frmNewStudent!ParentID = Forms!frmNewParent!ParentsID
Else
End If
End Sub
frmNewParent is the form being closed and copied from
frmNewStudent is the form remaining open and being copied to
This code worked fine used inbetween two other forms...but suddenly,
inbetween these two forms, is only copying the first digit of the value
in the text box over.
Help? Ideas?
Thanks for any help.
All I want to do is copy a textbox value into one form from another
form. Both forms are open when this occurs.
Here is my code:
Private Sub Form_Close()
If IsNull(Forms!frmNewStudent!ParentID) Then
Forms!frmNewStudent!ParentID = Forms!frmNewParent!ParentsID
Else
End If
End Sub
frmNewParent is the form being closed and copied from
frmNewStudent is the form remaining open and being copied to
This code worked fine used inbetween two other forms...but suddenly,
inbetween these two forms, is only copying the first digit of the value
in the text box over.
Help? Ideas?
Thanks for any help.