B
BruceM
I am having trouble sorting out how to resolve this situation, although I am
pretty sure it is not complex. I need to use a particular field's contents
in a number of text strings in various events. I will call the field
ProblemNo. It is a text field. At each event in which it needs to be added
to a text string I can have:
Dim strProbNo as String
strProbNo = Me.ProblemNo
However, I would rather declare it once in the Declarations section or in a
separate module so that I can just use it without having to declare it in
each procedure.
pretty sure it is not complex. I need to use a particular field's contents
in a number of text strings in various events. I will call the field
ProblemNo. It is a text field. At each event in which it needs to be added
to a text string I can have:
Dim strProbNo as String
strProbNo = Me.ProblemNo
However, I would rather declare it once in the Declarations section or in a
separate module so that I can just use it without having to declare it in
each procedure.