Autor Beitrag
winx
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 249



BeitragVerfasst: Mi 24.01.07 12:44 
Hallo,

wie kann ich zu einer Tchecklistbox das Ereignis OnMouseOver hinzufügen?
Muß ich dazu eine neue, von TChecklistbox abgeleitete, Komponente erstellen?

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
unit ExtendedCheckListBox;

interface

uses
  SysUtils, Classes, Controls, StdCtrls, CheckLst;

type
  TExtendedCheckListBox = class(TCheckListBox)
  private
    { Private-Deklarationen }
  protected
    { Protected-Deklarationen }
  public
    { Public-Deklarationen }
  published
    { Published-Deklarationen }
  end;

procedure Register;

implementation

procedure Register;
begin
  RegisterComponents('Samples', [TExtendedCheckListBox]);
end;      

end.


Falls ja: wie füge ich zu dieser, das Ereignis dazu?

Danke,
winx
elundril
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 3747
Erhaltene Danke: 123

Windows Vista, Ubuntu
Delphi 7 PE "Codename: Aurora", Eclipse Ganymede
BeitragVerfasst: Mi 24.01.07 15:35 
www.delphi-forum.de/...68730&highlight=

kuck mal hier. da sind ein paar links die genau das von sich geben was du brauchst.

lg el

_________________
This Signature-Space is intentionally left blank.
Bei Beschwerden, bitte den Beschwerdebutton (gekennzeichnet mit PN) verwenden.