S
Sergio Crisalle
I have an AutoExec macro that obtains the name of the
provider who will be using the terminal. The name is
stored in a public variable called "provider" and it is
entered into a note via other macros.
Problem: after a few times the variable is applied to
documents and printed, the variable gets "empty" and no
longer keeps the provider's name.
I'm using Word 2002
Any help will be appreciated.
Public Provider As String
Sub AutoExec()
Provider = InputBox("Please enter your Name and title as
your signature", "Provider Identity")
Who = MsgBox("Please Click File, Open and Select by double
clicking your directory, " + Chr(10) + Chr(10)
+ "corresponding to " + (Provider) + " then Cancel",
48, "Find Your Directory")
End Sub
provider who will be using the terminal. The name is
stored in a public variable called "provider" and it is
entered into a note via other macros.
Problem: after a few times the variable is applied to
documents and printed, the variable gets "empty" and no
longer keeps the provider's name.
I'm using Word 2002
Any help will be appreciated.
Public Provider As String
Sub AutoExec()
Provider = InputBox("Please enter your Name and title as
your signature", "Provider Identity")
Who = MsgBox("Please Click File, Open and Select by double
clicking your directory, " + Chr(10) + Chr(10)
+ "corresponding to " + (Provider) + " then Cancel",
48, "Find Your Directory")
End Sub