I have a simple form. On this form, it is simply a maintenance form. Currently, it has a single button and a txt box. The on Load of the form runs a SUB that checks if the computer has access to the home server to update the database. This is a local copy of a database that the user can use remotely or away from office. This form check the connectivity and if there is connectivity it the button is enabled. The user can push the button and refresh their local copy. This works great. What I want is a time stamp on this form that states when the last update was. I placed a label. I added a a sub in the module that runs after the data refresh. It simply changes the caption of the label to that date of the refresh. Well, this works great....until I close the form. When I open the form back, it is blank as it was before the refresh. What other way can I do this that will retain that time stamp when I refresh the DB. Thanks.