show/hide this revision's text 2 ; added 1 characters in body

This article on multithreading Visual Basic 6 DLL's provides some insight. It says:

To make an ActiveX DLL project multithreaded, select the desired threading options on the General tab of the Project Properties dialog box.

I don't have the dialog open in front

This article says there are three possible models to choose from:

One thread of me, but execution 
Thread pool with round-robin thread assignment 
Every externally created object is on its own thread

I assume that the available options are Apartment and Multithreaded.

Once this default is doneone thread of execution, you should be able to use the DLL in and that one of the usual multithreaded way.other two options needs to be selected.

show/hide this revision's text 1

This article on multithreading Visual Basic 6 DLL's provides some insight. It says:

To make an ActiveX DLL project multithreaded, select the desired threading options on the General tab of the Project Properties dialog box.

I don't have the dialog open in front of me, but I assume that the available options are Apartment and Multithreaded.

Once this is done, you should be able to use the DLL in the usual multithreaded way..