I am not really sure on this but you could try it ...

load it as a reference and use its commands or whatever

ex.. Msn Messenger

--------------------------------
VB Code:
  1. Public WithEvents MSN As MsgrObject ' delcaring as object
  2. Dim scroll_name As String
  3.  
  4. Private Sub Command1_Click()
  5. scroll_name = Text1.Text
  6. If MSN.LocalState = MSTATE_OFFLINE  Then Exit Sub
  7.     MSN.Services.PrimaryService.FriendlyName = scroll_name ' using its commands
  8. End Sub
  9.  
  10.  
  11. Private Sub Form_Load()
  12.     Set MSN = New MsgrObject
  13. End Sub
----------------------------------------