Saving entries in forms

A

Alex

Thanks for the help on my previous post folks, one more
question though, i have a form (within my template) which
is used to enter details in to the header of the
document, does anyone have any idea of how make the form
save specific entries which will be used repeatedly by
the user, i.e name, Tel number that sort of thing??


Cheers

Alex
 
J

Jonathan West

Hi Alex,

You can save these entries in the registry using the SaveSetting command.
Then, for those items that you want to prepopulate the userform with, use
the GetSetting command to load them into the appropiate textboxes. The code
to load the textboxes should go in the UserForm_Initialize event
 
Top