creating/modifiying net send

  • Thread starter Thread starter Psycho
  • Start date Start date
P

Psycho

Guest
i have a masive problem, i need some how for people to be able to reply to net sends without havint to go into the database we are currently using to net send, is there a way to have a reply button atached to a net send? if not how do i go about making my own net send?
 
I have never seen a reply function with the Net Send command. To use Net Send, you need to be able to call this command from Access...

C:\WINDOWS\system32\net.exe send CompterNameHere Hello!

Here is how I do it within Access...

SendMessage = "cmd /c net send " & CompterNameHere & " " & UserName & " states: " & txtBriefMessage
Call Shell(SendMessage, vbNormalNoFocus)

HTH
 

Users who are viewing this thread

Back
Top Bottom