Tell me how to make the textbox automatically saved, for example, after 1 minute?
|
2 answers
Create a timer for 1 minute and in its handler save the contents of the textbox
|
The most primitive way is via Timer. In the Tick event handler, you save your textbox, and in the Interval property you set the time.
|