I was hoping that someone here might have some insight into the functionality of activeX EXE's.

I've created an activeX EXE but need to create multiple instances which can all run independently. Can this be done by creating an array of activex EXE like so;

Private mine() As test.Trial 'This is my variable array for the activex exe

ReDim mine(3)
Set mine(0) = New test.Trial 'create them
Set mine(1) = New test.Trial
Set mine(2) = New test.Trial
Set mine(3) = New test.Trial


Does anyone know whether each activex EXE will run in its own thread? Any help is much appreciated.