At the top of ThisOutlookSession I define:
Option Explicit
Public varTest As Long
I have a couple of test programs also in ThisOutlookSession.
Using debug I run this test3 program:
Sub test3()
varTest = 42
End Sub
I then run test3b, but instead of varTest displaying a value of 42, its value shows as zero.
Sub test3b()
MsgBox varTest
End Sub
Obviously I have some misconception about scope or persistence. What am I doing wrong?
After much more searching, I found the following by Sue Mosher, Outlook MVP:
Sure enough when I move the Public variable definitions to a Module, the persistence issue is resolved.