This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/Servidor/Utiles/uServerAppUtils.pas
2007-06-11 15:29:06 +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.