Hi,
I have an API call problem in VC6 to ask you for help.
I wrote a LAN application to send pop up message between PCs in LAN as
command "net send" does.
I called Platform SDK API NetMessageBufferSend in my VC program:
......
success = NetMessageBufferSend(
NULL, //pszServerName,
wszMsgTo,
wszMsgFrom,
(LPBYTE)wszMsg,
dwLen*2);
......
The wszMsgTo parameter is an unicode string for string such as
"192.168.0.x".
In fact, it worked fine some days ago while it fails to send message now.
The return value "success" is 2273 NERR_NameNotFound. To my surprise, now,
Windows command "Net Send" still works fine as it did.
So, my question is, why my app which calls this API doesn't work now?
Doesn't "Net Send" call that API?
Our NT domain has not any changes recently. The only change is that the
number of our LAN client grows from about 40
to about 70.
Any ideas? Thanks in advance.
David