Home > How-To Library > System & API

How to send message to the client system from server/client.

**************************************************************** * © 2007 CodeItBetter http://www.codeitbetter.com * * This notice MUST stay intact for legal use * ****************************************************************
Public Sub fnSendMsg(ByVal strMsg As String, ByVal strMachineName As String) On Error GoTo fnSendMsg_Error Shell "net send " & strMachineName & " " & strMsg On Error GoTo 0 Exit Sub fnSendMsg_Error: Err.Clear Resume Next End Sub

If you would like to submit your code here please us. Do not forget to mention your name. We are always thankful to each and everyone of you who submitted their code here.