J
Joseph Schwartz
I have made a test VB6 app as folows:
Private Sub Command1_Click()
Dim ip As String
Dim msg As String
ip = "Gateway"
msg = "hey how are you"
Shell ("net send" & ip & " " & msg)
End Sub
The problem is when I run this I see a little dos icon flash by but no
message is received.
On the other hand it works fine from the command line?
Any ideas as to how to get this to work?
Thanks
Joe
Private Sub Command1_Click()
Dim ip As String
Dim msg As String
ip = "Gateway"
msg = "hey how are you"
Shell ("net send" & ip & " " & msg)
End Sub
The problem is when I run this I see a little dos icon flash by but no
message is received.
On the other hand it works fine from the command line?
Any ideas as to how to get this to work?
Thanks
Joe