I have a text box with a default value. I want the user to be able to type in a new value and save it as the default value of that text box so that the next time the form is opened it will have the previous path.
I have this code:
Dim default_path As String
default_path = txtDir.Value
txtDir.DefaultValue = default_path
I'm sure I'm missing something simple here. Thanks for your help.
I have this code:
Dim default_path As String
default_path = txtDir.Value
txtDir.DefaultValue = default_path
I'm sure I'm missing something simple here. Thanks for your help.