Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 15th, 2005, 10:34 AM
theewolizer theewolizer is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 8 theewolizer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 41 m 36 sec
Reputation Power: 0
how to Destroy object/component....

i create an object/component on the fly.
one field or row contain 3 type of object, this my code for create that....

Code:
  private
    FieldCount, CompCount: integer;
    EditNo, EditHarga: Array of TEdit;
    ComboBoxItem: Array of TComboBox;
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);

begin
  Inc(FieldCount);
  SetLength(EditNo, 15);
  SetLength(ComboBoxItem, 15);
  SetLength(EditHarga, 15);
  EditNo[FieldCount]:= TEdit.Create(ScrollBox1);
  with EditNo[FieldCount] do
  begin
    Height:= 22;
    Left:= 100;
    Top:= Height*FieldCount;
    Width:= 25;
    Parent:= ScrollBox1;
    Name:= 'EditNo' + IntToStr(FieldCount);
  end;
  ComboBoxItem[FieldCount]:= TComboBox.Create(ScrollBox1);
  with ComboBoxItem[FieldCount] do
  begin
    Height:= 22;
    Left:= EditNo[FieldCount].Left + EditNo[FieldCount].Width + 2;
    Top:= EditNo[FieldCount].Top;
    Width:= 150;
    Parent:= ScrollBox1;
  end;
  EditHarga[FieldCount]:= TEdit.Create(ScrollBox1);
  with EditHarga[FieldCount] do
  begin
    Height:= 22;
    Left:= ComboBoxItem[FieldCount].Left + ComboBoxItem[FieldCount].Width + 5;
    Top:= EditNo[FieldCount].Top;
    Width:= 100;
    Parent:= ScrollBox1;
  end;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  FieldCount:= 0;
end;
end.


my question is how to destroy that object i was create?
if i press the button, three of that component is destroy in the same time. ...... ok thax...

Reply With Quote
  #2  
Old February 15th, 2005, 11:04 AM
M.Hirsch M.Hirsch is offline
Contributing User
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Oct 2000
Location: Back in the real world.
Posts: 5,969 M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Month 1 Day 22 h 42 m 50 sec
Reputation Power: 185
Code:
Object.Free;


hth,
M.
__________________
--
Manuel Hirsch - Linux, FreeBSD, programming, administration articles, tutorials and more.

Reply With Quote
  #3  
Old February 15th, 2005, 01:51 PM
theewolizer theewolizer is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 8 theewolizer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 41 m 36 sec
Reputation Power: 0
ok...thanx a lot............

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > how to Destroy object/component....


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT