vote up 1 vote down star

Ok, I can't seem to get the search right so here I am. I'm trying to figure out how to write a method to not use the System.Diagnostics.Process class and still send messages to other computers as if it's from net.exe but it isn't.

If it matters, I'm writing an all-in-one framework for my workplace and combining key features we use into one framework/.dll is a huuuuge plus.

Thanks.

flag

80% accept rate
2  
Note to newbie: your not supposed to sign your posts ("-Zack"). The "thanks" is ok, though some frown on that as well. – Neil N Jun 24 at 18:41
And if you are going to add "-Zack" then link it to your user account. – Lucas McCoy Jun 24 at 18:43

2 Answers

vote up 3 vote down check

You can use the win32 api NetMessageBufferSend for this.

You can use P/invoke to call it from C#.

Note that msdn states:

[This function is not supported as of Windows Vista because the messenger service is not supported.]

link|flag
Thanks. I'll use this for now until I research steamer's suggestion more. – Zack Jun 24 at 19:39
vote up 2 vote down

Use the Messenger Service API: http://msdn.microsoft.com/en-us/library/ms630960(VS.85).aspx

link|flag
Thanks! I'll investigate this at a later time. I'll try fretje's idea first then look into using that API – Zack Jun 24 at 19:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.