Berikut listing untuk ComboBox:
beginListing untuk menampilkan data pada saat combobox di klik:
//isi combo dari tabel tbl_film
with datasource1 do
begin
table1.First;
while not table1.Eof do
begin
coKdFilm.Items.Append(table1.FieldValues['kdfilm']);
table1.Next;
end;
end;
end;
beginDownload File Lengkap + Listing Code ComboBox dengan Table pada Delphi 7.0 .pdf
if table1.FindKey([coKdFilm.Text]) then
begin
eJudul.Text := table1['judul'];
eHarga.Text := table1['harga'];
end;
end;
Download source code, file program ComboBox dengan Table pada Delphi 7.0 .zip