Michael, you can't and you shouldn't. Multithreading and OOP are
different animals, you are better off not mixing them. What are trying to
do?
If you need to launch a thread within a method, you can do it. But you
don't pass the address of the method. Instead you write a strong-typed
function declared AS DWORD or AS LONG (STRICT) and within your method you
make a call to CreateThread(), or better CreateVOThread(), passing the
address of that function. Within the function you do the processing you
need, taking precautions described in CAVO Help/How To section.
Michael
"Micahel Ribbons" <ri...@iinet.net.au> wrote in message
news:400a0014$0$1724$5a62...@freenews.iinet.net.au...