Licuriciu 0 Report post Posted June 15, 2006 mai fratilor ajutati-ma si pe mine ca nu mai stiu ce sa fac incerc de juma de ora sa pun intr-un dbcombobox o lista cu orasele din romania pe care le am intr-un tabel numit orase Multumesc mult. Share this post Link to post Share on other sites
ori 0 Report post Posted July 13, 2006 Incearca asta: procedure TForm1.FormCreate(Sender: TObject); begin with Table2 do begin Open; while not EOF do begin DBComboBox1.Items.Add(FieldByName('Numecamap').AsString); Next; end; end; unde Table 2 este tabelul tau sursa cu orasele. Bafta. Share this post Link to post Share on other sites