in reply to Re^4: How to write a client for accessing COM server
in thread How to write a client for accessing COM server

Is there a other way to access COM server

VB? windows script host? ...

  • Comment on Re^5: How to write a client for accessing COM server

Replies are listed 'Best First'.
Re^6: How to write a client for accessing COM server
by Anonymous Monk on Jun 15, 2011 at 03:30 UTC
    FWIW, that is still OLE :)
Re^6: How to write a client for accessing COM server
by Anonymous Monk on Jun 16, 2011 at 09:01 UTC
    Hi i have written a client using VB and im able to access the COM server .But im getting error while im acccessing using Perl script
      Can you show the VB code?
        Sub Main()
        Dim objTestATL As TF_ExLib.Test_Ex
        objTestATL = New TF_ExLib.Test_Ex
        Dim num As Long
        objTestATL.TestObj(20, num)
        End Sub