Home > Enterprise >  How to save a textbox value when form close
How to save a textbox value when form close

Time:06-21

is there a way to save the textbox values so it appears in the textboxes when i open the Form again?

CodePudding user response:

See the documentation at Introduction to Forms

CodePudding user response:

Without being able to comment to ask what the textbox is for I am going to assume it's for a search feature? Create a table with only a single record in it to store what you type and then use the table as the record source for the textbox. Allow Edits to the record and that way when you update what you have searched it will change and update the saved record which will open and display when the form is reopened. Change Allow Additions and Allow Deletions to no so that way it stays with the one record and you don't get all the new searches saved to the table.

  • Related