G
Guest
having a senior moment...
Dim Temp As Variant
This works OnExit of Main form control:
Me.SubForm.Form!TextBox = Me.Number
This does Not work:
Me.SubForm.Form!TextBox = Me.Text
no error - just nothing returned to the subform TextBox
Have tried to wrap with ""
Me.SubForm.Form!TextBox = "Me.Text"
returned literally: Me.Text
Me.SubForm.Form!TextBox = "&Me.Text&"
returned literally: &Me.Text&
Dim to String didn't change anything
tried "'" but threw an error while in vb...
(double single double)
what the heck ?
Dim Temp As Variant
This works OnExit of Main form control:
Me.SubForm.Form!TextBox = Me.Number
This does Not work:
Me.SubForm.Form!TextBox = Me.Text
no error - just nothing returned to the subform TextBox
Have tried to wrap with ""
Me.SubForm.Form!TextBox = "Me.Text"
returned literally: Me.Text
Me.SubForm.Form!TextBox = "&Me.Text&"
returned literally: &Me.Text&
Dim to String didn't change anything
tried "'" but threw an error while in vb...
(double single double)
what the heck ?