> I have created a Word Template using a table that is populated using a
> Userform. It all works fine, but when I close the file down and then
[quoted text clipped - 4 lines]
> This even applies if I don't save the file upon closing. Any help on
> this would be much appreciated.
Create and use new *instances* of the UserForm, rather than repeatedly
calling the autoinstantiated default instance. IOW, when you want to show
it, do this:
Dim frm As FMyUserForm
Set frm = New FMyUserForm
' set any custom properties
frm.Show
Then, to get rid of it:
frm.Hide 'Assuming this isn't done from within
Set frm = Nothing
Later... Karl

Signature
Working without a .NET?
http://classicvb.org/