1 / 12

Obyek Combo Box

Obyek Combo Box. Pemrograman Visual. ComboBox digunakan untuk menampilkan daftar pilihan yang ditampilkan berbentuk kombinasi antara listbox dan edit. Pengguna dapat mengisi data dalam kotak Edit atau memilih sesuai dengan daftar yang ada.

kiril
Download Presentation

Obyek Combo Box

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Obyek Combo Box Pemrograman Visual

  2. ComboBox digunakan untuk menampilkan daftar pilihan yang ditampilkan berbentuk kombinasi antara listbox dan edit. Pengguna dapat mengisi data dalam kotak Edit atau memilih sesuai dengan daftar yang ada. Daftar pilihan terdapat pada properti ITEMS. Dan pilihan yang dipilih oleh user dapat diakses melalui properti TEXT atau ITEMINDEX.

  3. Contoh 1: Hasil Tampilan Form

  4. Listing Program procedure TForm1.Button1Click(Sender: TObject); begin if Combobox1.Text='Mempawah' then edit1.Text:='20000' else if combobox1.Text='Singkawang' then edit1.Text:='75000' else if combobox1.Text='Sanggau' then edit1.Text:='85000' else edit1.Text:='0'; end;

  5. Contoh 2: Tampilan Form

  6. Listing Program procedure TForm1.Button1Click(Sender: TObject); Var pjng, lbr, luas,konversi, konversiM, konversiCM : real; begin pjng:=strtofloat(edit2.Text); lbr:=strtofloat(edit3.Text); luas:=pjng*lbr; if combobox1.Text ='M' then edit4.Text:=floattostr(luas) + ' m' else edit4.Text:=floattostr(luas)+' cm';

  7. //Menghitung Konversi konversiM:=luas*100; konversiCM:=luas/100; if combobox1.Text ='M' then edit1.Text:=floattostr(konversiM) + ' cm' else edit1.Text:=floattostr(konversiCM)+' m'; end;

  8. Contoh 3 Tampilan Form

  9. Listing Program procedure TForm1.ComboBox1Change(Sender: TObject); begin if combobox1.Text = 'Direktur' then edit2.Text:='5000000' else if combobox1.Text = 'Manager' then edit2.Text:='3000000' else edit2.Text:='1000000'; end;

  10. procedure TForm1.RadioButton1Click(Sender: TObject); var gapok,tunj:real; begin if radiobutton1.Checked=true then gapok:=strtofloat(edit2.Text); tunj:=gapok*0.3; edit3.Text:=floattostr(tunj); end;

  11. procedure TForm1.RadioButton2Click(Sender: TObject); var gapok,tunj:real; begin if radiobutton2.Checked=true then gapok:=strtofloat(edit2.Text); tunj:=gapok*0.1; edit3.Text:=floattostr(tunj); end;

  12. procedure TForm1.Button1Click(Sender: TObject); var pokok,tunj,bersih : real; begin pokok:=strtofloat(edit2.Text); tunj:=strtofloat(edit3.Text); bersih:=pokok+tunj; edit4.Text:=floattostr(bersih); end;

More Related