Table of Content
HAL Forum
procedure SendSystemMessage (
string Title,string Message,integer Minutes,integer NoLogin,integer ServModeOff,
integer ThisCompOnly)
Description:
Opens an alert window with user specified caption for all the client programs that are connected to the server on the moment that the message was sent.
Parameters:
Title Title of the message
Message Content of the message
Minutes The amount of minutes until the system will be shut down
NoLogin Determines if the users will be able to log into the system after the alert has been issued. 0 = can log in / 1 = can't.
ServModeOff Remove server mode on shutdown. Useful when administrator wants to log in to the server with the server GUI.
ThisCompOnly Determines if the message be issued for only one or many companies.
global
procedure RemoteSendSystemMessage(string mess1,string mess2,LongInt minstodown,Integer nologin,Integer autooff,Integer thiscomp)
begin
  SendSystemMessage(mess1,mess2,minstodown,nologin,autooff,thiscomp);
  return;
end;


Related topics:
««