2011-11-14 17:40:41 +00:00
|
|
|
unit uServerAppUtils;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
ExtCtrls;
|
|
|
|
|
|
|
|
|
|
procedure ShowBalloonHint(const AMensaje: String; ABalloonIcon: TBalloonFlags);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2012-01-18 15:10:28 +00:00
|
|
|
Dialogs, Forms, uServerMainForm, JvTrayIcon, uROComboService;
|
2011-11-14 17:40:41 +00:00
|
|
|
|
|
|
|
|
procedure ShowBalloonHint(const AMensaje: String; ABalloonIcon: TBalloonFlags);
|
|
|
|
|
begin
|
|
|
|
|
with fServerForm.TrayIcon1 do
|
|
|
|
|
begin
|
|
|
|
|
BalloonTitle := 'FactuGES (Servidor)';
|
|
|
|
|
BalloonHint := AMensaje;
|
|
|
|
|
BalloonTimeout := 2000; // 2000ms => 2seg
|
|
|
|
|
BalloonFlags := ABalloonIcon;
|
|
|
|
|
Hint := 'FactuGES (Servidor)' + #10#13 + AMensaje;
|
|
|
|
|
ShowBalloonHint;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end.
|
|
|
|
|
|