Ha! Juz wiem!
Nie powstrzymam sie od przykladu z kodem.
Zrob Form1 z dwoma guzikami Button1 i Button2. Ustaw guzikow ShowHint na True, a Hint odpowiednio na 'Guzik 1|G1' i 'Guzik 2|G2'. Application.ShowHint tez powinno byc True, ale to jest defaultowe
A tu jest kod:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Label1: TLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
procedure GdzieJaJestem(Sender: TObject);
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.GdzieJaJestem(Sender: TObject);
begin
if Application.Hint='G1' then
Label1.Caption:='Jestes nad Guzikiem 1'
else
if Application.Hint='G2' then
Label1.Caption:='Jestes nad Guzikiem 2'
else
Label1.Caption:='Gdzie Ty k***a jestes?';
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Application.OnHint:=GdzieJaJestem;
end;
end.
--Pawel
Delphi6