Tecsitel_FactuGES2/Source/Servidor/Utiles/uServerAppUtils.pas
2007-09-12 14:11:44 +00:00

30 lines
615 B
ObjectPascal

unit uServerAppUtils;
interface
type
TRdxBalloonIcon = (biNone, biError, biInfo, biWarning);
procedure ShowBalloonHint(const AMensaje: String; ABalloonIcon: TRdxBalloonIcon);
implementation
uses
Dialogs, Forms, uServerMainForm, JvTrayIcon;
procedure ShowBalloonHint(const AMensaje: String; ABalloonIcon: TRdxBalloonIcon);
begin
with fServerForm.JvTrayIcon do
begin
if AcceptBalloons then
begin
BalloonHint('', '');
BalloonHint('FactuGES (Servidor)', AMensaje, btInfo);
end;
Hint := 'FactuGES (Servidor)' + #10#13 + AMensaje;
end;
end;
end.