Fórum Lista no Treview #383648
14/08/2010
0
se alguem souber me da uma ajuda com o treview
é uma edit que vou digitar o total de mesas e um Treview que vai carregar a quantidade de mesas digitado no edit
Laelson Fagundes
Curtir tópico
+ 0Posts
15/08/2010
Carlos Mazzi
Gostei + 0
15/08/2010
Laelson Fagundes
Gostei + 0
18/08/2010
Laelson Fagundes
Gostei + 0
18/08/2010
Eriley Barbosa
Gostei + 0
18/08/2010
Laelson Fagundes
Gostei + 0
18/08/2010
Eriley Barbosa
Gostei + 0
18/08/2010
Laelson Fagundes
var
i : integer;
aLista: TListItem;
begin
// ListBox1.Clear ;
ListView1.Clear;
for i := 1 to StrToInt(edit1.Text) do
begin
Begin
// ListBox1.Items.Add( inttostr(i) );
aLista := ListView1.Items.Add;
aLista.Caption := (inttostr(i)); //'MESA '+
// aLista.SubItems.Add( inttostr(i) );
end;
end;
end;
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)