Hello,
I have a Activex exe, that makes use of multi threading. I have two PCs. A and B. When I run the program on A ( both in debug and compiled exe) it executes fine. I then created a package, installed it on PC B and the exe ran fine.
I did an upgrade on PC A, uninstalled it on B , copied and reinstalled on B, and now I cannot get the exe to work on B. If I run it in Debug mode on B it works fine.
I fails on the definition of the multi-thread class. Its properties are
DataBindingBehaviour = 0 vbNone
Instancing = 5 MultiUse
Persistance = 0 NotPersistable
The class consists of
Sub cProcessCD(Optr As Long, MainFormHandle As Long, wSource As String)
Dim Frm As New frmProcessCD
Load Frm
Frm.lblSource.Caption = wSource
Set Frm = Nothing
End Sub
Any help would be welcome
Regards
Mike