For example, the following simple VBA code runs fine, even if i call it multiple times. But when I close Excel, Excel hangs everytime after executing the following code at least once from your VBA example. It acts like turboactivate will not allow Excel to close properly once it is in memory...
Public ta As TurboActivateSub TestSecurity() Set ta = New TurboActivate Call ta.Init("2d8e68b85a81d2420ad999.59753126") If ta.IsActivated Then MsgBox "Activated!" Else MsgBox "Not Activated" End IfEnd Sub