I need to open a custom form from a word 97 button.
Can anyone help?
G'day "Chris Knight via OfficeKB.com" <forum@OfficeKB.com>,
Link the button to a macro that reads like this
Sub ShowForm()
Dim MyForm as UserForm1 ' or whatever you called the form
Set MyForm = new UserForm1 ' or whatever you called the form
MyForm.Show
Set Myform=nothing
end sub
Steve Hudson - Word Heretic
steve from wordheretic.com (Email replies require payment)
Without prejudice
Chris Knight via OfficeKB.com reckoned:
>I need to open a custom form from a word 97 button.
>
>Can anyone help?