jfackler
Well-known member
Im in search of a resource for writing a tapi application in VB.NET.
So far Ive been unable to find anything close. Ive read every page available on the net and read multiple text resources at my local computer book store.
The msdn has code written in vb5 with lots of interface calls.
The code falls apart under .net because of the late binding.
example:
Frankly, I have no idea how to go about rewriting the code for .NET without late binding. Any hints or some tutorials would be greatly appreciated. I think, after all Ive read, if I can get a glimpse, the light will come pouring through and Ill be able to convert the remainder.
Thanks,
Jon
So far Ive been unable to find anything close. Ive read every page available on the net and read multiple text resources at my local computer book store.
The msdn has code written in vb5 with lots of interface calls.
The code falls apart under .net because of the late binding.
example:
Code:
Dim objCall As ITBasicCallControl
objCall = objAddress.CreateCall(PhoneNumber, nAddressType, lMediaType)
**********************************************************************************
***********************************************************************
following is part of Select a Terminal
*********************************************************************
query for ITBasicCallControl, the call control interface
Dim objDialedCallInfo As ITCallInfo
objDialedCallInfo = objCall
query ITTerminalSupport from Address object
Dim objTerminalSupport As ITTerminalSupport
objTerminalSupport = objAddress
Frankly, I have no idea how to go about rewriting the code for .NET without late binding. Any hints or some tutorials would be greatly appreciated. I think, after all Ive read, if I can get a glimpse, the light will come pouring through and Ill be able to convert the remainder.
Thanks,
Jon