Link to home
Start Free TrialLog in
Avatar of jason987
jason987

asked on

Netmeeting SDK

Hello,

Microsoft releases an SDK for netmeeting, but the source is all in c/objects for the samples.  Has anyone here seen an example of using this within a VB project?  I know the "ILS" defines all of the objects etc, but I cannot see how to use them in VB, since the source is all in c++.

Thanks
Avatar of Shaka913
Shaka913

under Project, select Project References, find and check "net meeting 1.1 type library"

now in a blank project, add a command button and the following code:

Option Explicit
Public WithEvents mNetMeeting As NetMeeting
Private Sub Command1_Click()

    Set mNetMeeting = New NetMeeting
    mNetMeeting.CallTo "192.168.10.100"
   
End Sub

I assume the SDK gives you more control and possible a better object model. the 1.1 type library only exposes a few items, basically starters for netmeeting and enders.

Hope this helps.
Avatar of jason987

ASKER

Wow, thanks.  You wouldn't happen to know where I could find what functions are imported and can be used with that type library would you?
ASKER CERTIFIED SOLUTION
Avatar of Shaka913
Shaka913

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the help.