Couldn't you have a registry setting that increments by 1 each time
the program is run?
The GetSetting / SaveSetting commands can be used as below;
Sub Main
Dim iTimes As Long
iTimes = GetSetting(App.Title, "Settings", "Times", 0)
SaveSetting App.Title, "Settings", "Times", iTimes + 1
..............
Blah blah blah
Yadder yadder yadder
..................
End Sub
Hope this helps.