Link to home
Start Free TrialLog in
Avatar of rizmughal
rizmughal

asked on

how we can start Netmeeting in our Visual basic programe

hi
i want to start Netmeeting in my client server chat programe how i can do that
please help with code
thanks
Avatar of JonFish85
JonFish85

try something like:

If Not(Dir("C:\Program Files\Netmeeting\conf.exe") = "") Then
Shell "C:\Program Files\NetMeeting\conf.exe", vbNormalFocus
Else
MsgBox "ERROR: Cannot find netmeeting!", vbCritical
End If

hope this helps!
Avatar of rizmughal

ASKER

sorry i want how can i run netmeeting like in Msn Messenger
please help me
ASKER CERTIFIED SOLUTION
Avatar of BenBen
BenBen

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