-
[RESOLVED] TextBox
Hi
I'm creating a dialog box where the user enters information into text boxes and presses ok
i need the information still to be in the text box if the dialog should be called again.
at the moment, the information the user enters is clearing on pressing ok.
i have text boxes in other dialogs which keep the info the user enters -- and i can't see any coding/ property differences -
Can someone help? it seems to simple but i can't find the solution! :S
many thakns
-
Re: TextBox
Don't unload the form, just hide it to keep the text box content.
-
Re: TextBox
Thanks for the reply...and apologies for my lack of knowledge...what does that mean for my code? :S
-
Re: TextBox
On the OK button click event use Me.Hide instead of Me.Close
-
Re: TextBox
Thank you! You have no idea how much stress that was causing!
Thanks