D
Dan
I have created 2 employee review form templates which have basic form
fields for data input and some checkboxes. These forms have a lot of
tables on them, so I need to have them protected (so things don't shift
around as you tab through it). I used some code to make sure the user
can only select one checkbox for a given group of checkboxes, like so:
Private Sub PERFO2_Click()
If PERFO2.Value = True Then
PERFA2.Value = False
PERFM2.Value = False
PERFI2.Value = False
PERFB2.Value = False
End If
End Sub
This works perfectly when creating a new docment from the first
template, but for some odd reason the VB script is being ignored when I
try making a new document from the 2nd template! It works properly when
opened directly (using the .dot file) but as soon as I try to make a
new document from it, it ignores the reference to the templates code. I
need to get both of these forms out into production asap, can someone
please help!? This has been driving me nuts for days! I'll send you the
file to show you what I mean if necessary! thanks!
fields for data input and some checkboxes. These forms have a lot of
tables on them, so I need to have them protected (so things don't shift
around as you tab through it). I used some code to make sure the user
can only select one checkbox for a given group of checkboxes, like so:
Private Sub PERFO2_Click()
If PERFO2.Value = True Then
PERFA2.Value = False
PERFM2.Value = False
PERFI2.Value = False
PERFB2.Value = False
End If
End Sub
This works perfectly when creating a new docment from the first
template, but for some odd reason the VB script is being ignored when I
try making a new document from the 2nd template! It works properly when
opened directly (using the .dot file) but as soon as I try to make a
new document from it, it ignores the reference to the templates code. I
need to get both of these forms out into production asap, can someone
please help!? This has been driving me nuts for days! I'll send you the
file to show you what I mean if necessary! thanks!