git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/branches/D2007-DA5@21 0c75b7a4-871f-7646-8a2f-f78d34cc349f
30 lines
615 B
ObjectPascal
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.
|
|
|