You couldn't do:
Code:
objWoka objW = New objW("Place this text");
As my DLL was written in VB6, and this doesn't support:
Code:
New objW("Place this text")
You would have to use:
Code:
objWoka objW = New objW;
objW.Caption = "MSN Messenger"
objW.Message = "jHermiz has just signed in. Run Away!"
objMessages.Show objW
Download the project and check it out. It will take a mere 30 seconds to test the app, then a further 10 seconds to compile the DLL.

Woka