Link to home
Start Free TrialLog in
Avatar of bergertime
bergertime

asked on

Change the default text property in a textbox in VB.NET 2003

In VB.Net 2003.  I make a textbox and set the text property to 'whatever'.  Can I change this value from my program so the next time I start the program it has the new value in the textbox?
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Not without storing the new value in some kind of external file or the registry.

You have a preference?...
Avatar of bergertime
bergertime

ASKER

External file sould work.  Is either way better?
Did you want to save just ONE TextBox or all TextBoxes?  ...any other data you need to save?
No, just that one textbox.
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks!