AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
All
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 04.05.2009, 14:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,617 / 848 (80) +++++++
Регистрация: 28.10.2006
dax-lessons: Alert user using Net send - x++
Источник: http://dax-lessons.spaces.live.com/B...FCD1!184.entry
==============


Sending messages to the users in network using NET SEND in x++


Microsoft Windows offers a simple method to send messages to other users or computers on the network - simple WinPopup Messages or Net Send Messages ( in Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP and Windows 2003 ).

Prerequisite: Start Messenger service from Start >> Programs >> Administrative tools >> messenger.

Here is the job which will send messages to the users/computers on the network.


X++:
static void netSend(Args _args)
{
  
  netSendCom;
  permission = new InteropPermission(InteropKind::ComInterop);
 int output;

  //str computerName = 'giri';
 str  = Winapi::getComputerName();
 str  = 'Hello.. I am alerting from Dynamics AX';

 // Receiving end should start messenger service and alerter service from services.msc

 permission.assert();
 try
 {
 netSendCom = new COM("WScript.Shell");
 output = netSendCom.Run(strFmt("net send %1 %2", computerName, message),0,true);
 }
 catch (Exception::Error)
 {
 CodeAccessPermission::revertAssert();
 throw Exception::Error;
 }
 
 if (output != 0)
 {
 warning(strfmt('Net send Failed', computerName));
 warning('Check messenger service - Started');
 }
 
 CodeAccessPermission::revertAssert();

}
Here is the net send message popup




Источник: http://dax-lessons.spaces.live.com/B...FCD1!184.entry
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
Теги
blog, x++

 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
Arijit Basu: DAX 4.01 .NET Business Connector: Microsoft.Dynamics.BusinessConnectorNet Blog bot DAX Blogs 3 30.09.2008 01:17
dax-lessons: Alert user using Net send - x++ Blog bot DAX Blogs 0 17.09.2008 13:05
dax-lessons: Active directory in Axapta Blog bot DAX Blogs 0 27.08.2007 23:00
axaptafreak: Send message to online user in Dynamics AX 4.0 (quick & dirty) Blog bot DAX Blogs 0 12.04.2007 16:10

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 08:00.