Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim A As String
Dim S As String
End Sub
Sub Initialize(Act As String, Subname As String)
A = Act
S = Subname
End Sub
Sub CallMeBack(p1 As String, p2 As String)
CallSub3(A, S, p1, p2)
End Sub