G
Guest
I'm using a text box for notes (it's not associated with any tables). When
user entered some text there I'd like that this text would appear on the next
time when user would open this form.
I'm trying to use the following:
Private Sub N13_AfterUpdate()
Dim strN13 As String
strN13 = Me.N13
Me.N13.DefaultValue = strN13
'Me.N13.Text = strN13 'isn't working as well
'Me.N13.DefaultValue = Me.N13 'isn't working
End Sub
But, it says that the type mismatched.
I'm doing the same for numbers and it's working or when I include the text
in "" manually in a defaultvalue window
Could anybody advise anything?
Thanks
user entered some text there I'd like that this text would appear on the next
time when user would open this form.
I'm trying to use the following:
Private Sub N13_AfterUpdate()
Dim strN13 As String
strN13 = Me.N13
Me.N13.DefaultValue = strN13
'Me.N13.Text = strN13 'isn't working as well
'Me.N13.DefaultValue = Me.N13 'isn't working
End Sub
But, it says that the type mismatched.
I'm doing the same for numbers and it's working or when I include the text
in "" manually in a defaultvalue window
Could anybody advise anything?
Thanks