Quote Originally Posted by reexre View Post
It seems to work !!! (however, I do not know if this way implies other "hidden" consequences)
If this refers to the timer-handling - you can always replace the VB.Timer (and thus the necessary VB-Form)
whit an RC5-Timer-Class (which won't force you to Add/Remove a Control, just to get a "tick-event").

Code:
  If tmrJobState Is Nothing then Set tmrJobState = New_c.Timer(7, True) '<- Optional True, if you want to enable it already
You'd have to change the Type of tmrJobState from VB.Timer to cTimer in the Declaration-Section.

Olaf