Results 1 to 33 of 33

Thread: Well - Automating Microsoft Netmeeting

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well - Automating Microsoft Netmeeting

    I want to add a button to my application that user would select which would :

    1) Invite me to strat Netmeeting

    2) Auto accept my incoming call

    3) Auto accept my request for control.

    Any ideas on this at all? Any possible links?
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  2. #2
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    Checkout the SDK

  3. #3
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    Originally posted by Aaron Young
    Checkout the SDK
    I hope it were that easy: http://www.vbforums.com/showthread.p...ght=Netmeeting
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  4. #4
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    The SDK itself doesn't appear to install such a component, but the Readme does say you should have Netmeeting 3 installed (makes sense.)

    When I check the References off the Project menu I see there's a Netmeeting 1.1 Type Library ([Program Files]\Netmeeting\conf.exe)

  5. #5
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    I had check the references and found nothing... I don't remember if Netmeeting was installed then.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  6. #6

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    So Mcbrain did you ever figure it out?

    Aaron : I did at one time doenload the SDK, but if I remember right, all documentation was for C. I need something for VB...

    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  7. #7
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808

    Re: Well

    Originally posted by James Stanich
    So Mcbrain did you ever figure it out?

    Aaron : I did at one time doenload the SDK, but if I remember right, all documentation was for C. I need something for VB...

    Yes... that was the main problem. I knew a few of C, and remembered almost nothing to figure it out.

    Unfortunately.... I never could do anything with the SDK.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  8. #8

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Wonder if anyone has dne this in VB...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  9. #9
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    It's pretty basic by the looks of it, there isn't much they give you access to, basically, starting and ending a call, i.e.
    VB Code:
    1. Option Explicit
    2.  
    3. Private WithEvents NetMeetingObject As NetMeeting
    4.  
    5. Private Sub Command1_Click()
    6.   Set NetMeetingObject = New NetMeeting
    7.   NetMeetingObject.CallTo "192.168.0.136"
    8. End Sub
    9.  
    10. Private Sub Command2_Click()
    11.   If Not NetMeetingObject Is Nothing Then
    12.     If NetMeetingObject.IsInConference Then
    13.       NetMeetingObject.LeaveConference
    14.     End If
    15.   End If
    16.   Set NetMeetingObject = Nothing
    17. End Sub
    18.  
    19. Private Sub NetMeetingObject_ConferenceStarted()
    20.   Debug.Print "Call Initiated"
    21. End Sub
    22.  
    23. Private Sub NetMeetingObject_ConferenceEnded()
    24.   Debug.Print "End of Call"
    25. End Sub

  10. #10

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Aaron : Do you know of any isues of the Neetmeeting verison in XP not being compatible with establishing a call with a Windows 2000 system?
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  11. #11
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    I'm not aware of any, in fact, I just recently (about 2 days ago) did that exact thing, connected to an XP Netmeeting session frm my 2000 PC.

  12. #12

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    I can't connect the other way XP to Win2k...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  13. #13

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Aaron, don't leave me hanging now...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  14. #14
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    I could connect through W2K to W2K.

    Don't make a lot of trouble with VB. Get it connected the normal way. Once you acheive this, try to do it with VB. BTW, you should have no problem then, since VB is interacting with a NetMeeting object (as if you've opened it manually and started the call manually)
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  15. #15
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    I can't think of any reason for it not to work XP to 2K, I don't have XP myself, so I can't test it.

    Maybe it's a configuration problem on one of the PCs.

  16. #16
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    We can try it in some minutes (almost an hour) when I get home... if you want.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  17. #17

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    McBrain you have 2000 at home?
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  18. #18
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    BTW, I ahve W2K at home, as well.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  19. #19
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    Originally posted by Mc Brain
    ... almost an hour...
    I wanna have dinner first.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  20. #20

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    No problem. I will more than likely be up awhile....
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  21. #21

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    McBrain use Messenger when you are ready please...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  22. #22
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    I will... I'm heating my dinner now. Hang on.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  23. #23

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Since I need your help, I'll wait...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  24. #24

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Originally posted by Aaron Young
    It's pretty basic by the looks of it, there isn't much they give you access to, basically, starting and ending a call, i.e.
    VB Code:
    1. Option Explicit
    2.  
    3. Private WithEvents NetMeetingObject As NetMeeting
    4.  
    5. Private Sub Command1_Click()
    6.   Set NetMeetingObject = New NetMeeting
    7.   NetMeetingObject.CallTo "192.168.0.136"
    8. End Sub
    9.  
    10. Private Sub Command2_Click()
    11.   If Not NetMeetingObject Is Nothing Then
    12.     If NetMeetingObject.IsInConference Then
    13.       NetMeetingObject.LeaveConference
    14.     End If
    15.   End If
    16.   Set NetMeetingObject = Nothing
    17. End Sub
    18.  
    19. Private Sub NetMeetingObject_ConferenceStarted()
    20.   Debug.Print "Call Initiated"
    21. End Sub
    22.  
    23. Private Sub NetMeetingObject_ConferenceEnded()
    24.   Debug.Print "End of Call"
    25. End Sub
    I do not have vb here, so I will have to wait, but is there not a way to handle whiteboard a request for control?
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  25. #25
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    R U there?? Wanna try it?
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  26. #26

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Originally posted by Mc Brain
    R U there?? Wanna try it?
    For anyone who is interested...

    I could not connect with McBrain either... If you have XP and are willing to try let me know...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  27. #27
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    I remembered sth.... MSN Messenger is not compatible for XP. There's a different version for this OS. NetMeeting might have a similar problem.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  28. #28
    Hyperactive Member
    Join Date
    Oct 2001
    Location
    Washington, DC
    Posts
    422
    James....I've wanted to ask you this forever, but I'm just now doing it...why do all your posts and replies start with "Well"?

  29. #29
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808
    Originally posted by fllewis
    James....I've wanted to ask you this forever, but I'm just now doing it...why do all your posts and replies start with "Well"?
    The things you've always wanted to know... and never dared to ask....

    BTW, I'm in the same place, fllewis.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  30. #30

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Originally posted by fllewis
    James....I've wanted to ask you this forever, but I'm just now doing it...why do all your posts and replies start with "Well"?
    Tag line - HeSaidJoe usesd <?> I just started using well. Honeybee does too...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  31. #31
    Hyperactive Member
    Join Date
    Oct 2001
    Location
    Washington, DC
    Posts
    422
    Well

    I see. Just curious.

    McBrain - same place? As in Arlington, VA/DC?

  32. #32

    Thread Starter
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    McBrain - same place? As in Arlington, VA/DC?
    I think he meant he wanted to know why too...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  33. #33
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808

    Re: Well

    Originally posted by James Stanich
    I think he meant he wanted to know why too...
    Well

    Why would I explain what James's already done??
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width