Thema: Delphi CustomListBox

Einzelnen Beitrag anzeigen

inriz

Registriert seit: 18. Okt 2005
15 Beiträge
 
#1

CustomListBox

  Alt 10. Nov 2005, 16:47
hallo,

ich habe eine TMyListBox klasse erstellt die von TListBox abgeleitet ist.
nur wird mein CustomListBox nicht angezeigt.
der code wird mehr sagen.

Code:
unit MyListBox;

interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, cxControls, cxContainer, cxListBox, cxDBEdit, adscnnct,
  DB, adstable, adsdata, adsfunc, Grids, DBGrids, MyMemo;

type
  TMyListBox = class(TListBox)

  private

  public
  end;
implementation

end.
Code:
procedure TForm1.FormCreate(Sender: TObject);
var
  MyListBox : TMyListBox;
begin
  MyListBox := TMyListBox.Create(self);
  with MyListBox do
  begin
    Left := 24;
    Top := 136;
    Width := 249;
    Height := 505;
    ItemHeight := 13;
    TabOrder := 2;
  end;
  {

  }
end;
ich meine, ich hab was vergessen. nur weiss ich nicht was.

gruß

inriz
  Mit Zitat antworten Zitat