ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   send msg same as netsend (https://www.excelbanter.com/excel-programming/333001-send-msg-same-netsend.html)

ilyaskazi[_37_]

send msg same as netsend
 

We are using winXP 2002 and office-XP 2003.

We do work mainly in excel application. Now there is need to
communicate with our staff in network as we were doing previously in
win2000 by using its features of netsend.

Though we hv upgraded os we are unable to do so and need other
alternative through excel application to send messages in network.

I hv able to detect IP address of my machine through Colo's vba tips:
http://puremis.net/excel/code/079.shtml

In my userform it contains 2 textbox and 1 go cmdbtn.
One txtbox is to enter IP address to whom we need to send and the other
txtbox to type our messages to send.

On clicking go btn, msg should be sent as msgbox to IP address given by
me.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708


NickHK

send msg same as netsend
 
ilyaskazi,
As far as I know net send is still available but may have been disabled
during the upgrade:
http://support.microsoft.com/default...;EN-US;Q302089

http://www.theeldergeek.com/messenger_removal.htm

NickHK


"ilyaskazi" wrote
in message ...

We are using winXP 2002 and office-XP 2003.

We do work mainly in excel application. Now there is need to
communicate with our staff in network as we were doing previously in
win2000 by using its features of netsend.

Though we hv upgraded os we are unable to do so and need other
alternative through excel application to send messages in network.

I hv able to detect IP address of my machine through Colo's vba tips:
http://puremis.net/excel/code/079.shtml

In my userform it contains 2 textbox and 1 go cmdbtn.
One txtbox is to enter IP address to whom we need to send and the other
txtbox to type our messages to send.

On clicking go btn, msg should be sent as msgbox to IP address given by
me.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile:

http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708




ilyaskazi[_38_]

send msg same as netsend
 

thankyou nick for that information.

but we are now working on something which we require through excel vba
to pass our work information in our fashion.

The request i made here is to simply send msg to upon which our work
depends.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708


Bob Phillips[_7_]

send msg same as netsend
 
Here is a suggestion I found in Google, but haven't tried it myself


Within VBA, ensure you add a reference to "Windows Script Host Object
Model", then you may copy and paste the following code into a new Module:


Option Explicit


Sub ExecuteNetSend()


Dim objShell As New WshShell
Dim objExec As WshExec
Dim strComputer As String
Dim strMessage As String
Dim ReadAll As String


strComputer = "ComputerNameHere"
strMessage = "Testing Net Send"


Set objExec = objShell.Exec("Net Send " & strComputer & " " & strMessage)


Do While Not objExec.StdOut.AtEndOfStream
ReadAll = objExec.StdOut.ReadAll
Loop


MsgBox ReadAll, vbInformation, "Net Send Results"

End Sub


--
HTH


Bob Phillips

"ilyaskazi" wrote
in message ...

thankyou nick for that information.

but we are now working on something which we require through excel vba
to pass our work information in our fashion.

The request i made here is to simply send msg to upon which our work
depends.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile:

http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708




ilyaskazi[_39_]

send msg same as netsend
 

Upon executing i got netsend error msg saying...
An error occured while sending a message to "Computer name"

Also note, we are unable to use netsend msg through run command.
I don't know whether this option is enabled in our computer as per nick
provided the information.

If i try using netsend through run command black screen of dos-type
comes and goes-off without sending my message.

It does not even show me any error msg, whereas executing through excel
vba i got err msg (see abv).

Well, let me know the problem or any other alternative to netsend
through vba?


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708


NickHK

send msg same as netsend
 
ilyaskazi,
Does this not work on Office2003 ?

Private Sub CommandButton1_Click()
Shell ("net send " & DestinationMachine & strMessage & " ")
End Sub

NickHK

"ilyaskazi" wrote
in message ...

thankyou nick for that information.

but we are now working on something which we require through excel vba
to pass our work information in our fashion.

The request i made here is to simply send msg to upon which our work
depends.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile:

http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708




ilyaskazi[_40_]

send msg same as netsend
 

not did anything.

no error msg.. and nothing...


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708


NickHK

send msg same as netsend
 
ilyaskazi,
After reading those acticles, have you checked that the Messenger service is
actually running ?

NickHK

"ilyaskazi" wrote
in message ...

not did anything.

no error msg.. and nothing...


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile:

http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708




ilyaskazi[_41_]

send msg same as netsend
 

well now i hv checked through command prompt using netsend.

It shows error msg saying...
message alias could not be found on the network.

But I hv given correct alias name, then why this occurs??

--
ilyaskaz
-----------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...fo&userid=2396
View this thread: http://www.excelforum.com/showthread.php?threadid=38270


ilyaskazi[_42_]

send msg same as netsend
 

thankyou nick once again

the link u provided has solved my problem....
http://www.theeldergeek.com/messenger_removal.htm

messenger was disabled by default in our computers.

I hv now enabled through running "services.msc"

I also thank Bob for vba code for which our work now depends to pass
information in network computers.

thankyou all....... :)


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=382708



All times are GMT +1. The time now is 08:02 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com