Tim - I'm sorry. I'm a beginner and I have no idea what you're
talking about. Can you be more specific or give me step-by-step
instructions?
First of all, you will need a little bit of VBA. Open the VB Editor <alt +
F11>, and Insert a new Code Module, press F4 to open the Properties and
change its name to something meaningful like "MGlobals" (Module for Globals

)
You need to type a constant and a function: enter this exactly
Option Explicit
Global Const gc_sMySignature = "Created By: Christine Lisi"
Global Const gc_sLastUpdate As Date = "2005-06-22"
Public Function GetMySig() As Variant
GetMySig = gc_sMySignature
End Function
That's it: you can now use the signature in your forms. One way is to use a
text box, set its properties to Locked=True, Enabled=False, Border=None,
BackColor=Transparent etc. Then set its ControlSource to "=GetMySig()" --
including the equal sign -- and it will look up the function in the module
every time the form is opened. Unfortunately the control cannot see the
Const itself, so you need to get it indirectly using the function.
Another method is to use the form itself to look up the value. On the form,
add a label and name it something like "lblUpdateDate". Then select the
form itself, and find the OnCurrent event, click the ellipsis [...] and
choose the Code Builder. You will find the beginning and end of a
procedure, to which you add the middle vis:
Public Sub Form_Current()
' you type the next line
lblUpdateDate.Caption = "Last Updated: " & gc_sLastUpdate
End Sub
If all goes well, when you open the form your signature should appear in
the text box, and the version date will appear in the label.
Hope that helps
Tim F