I am trying to connect my
VB application to the EPABX. For that I am using a COM named Render but i did not use COM, DCOM ever before. So pls anyone can brief main how can I use this.
There are some function of that COM like:
HRESULT Dial(BSTR number)
By this function I am able to make a call and its working fine. I am using it just like this:
Dim a as new RamCom 'THis is the COM reference.
a.Dial(123) '123 is our intercom number.
There is one more function that indicates when new call arrives.
It is : HRESULT NewCall(LONG call_id);
But I am totally confused how to use it. Can someone help me pls here.
Thanks in Advance!!!!
DPK..