Postingan

Menampilkan postingan dari Oktober, 2012

Latihan 3 pemrograman visual

Gambar
TUGAS 3 Pemrograman Visual Soal 1 1.      Buka Aplikasi Microsoft Visual Studio 2010 2.      Klik menu File – new – project 3.      Buat tampilan seperti berikut ini menggunakan label, combobox, textbox,radiobutton dan button Isikan perintah atau coding pada  masing-masing button, combobox, radio button Public Class Form1     Private Sub Form1_Load( ByVal sender As System. Object , ByVal e As System. EventArgs ) Handles MyBase .Load         cmbcode.Items.Add( "SPT" )         cmbcode.Items.Add( "SND" )         cmbcode.Items.Add( "TST" )         cmbcode.Items.Add( "TOP" )         cmbcode.Items.Add( "TAS" )     End Sub     Private Sub cmbcode_SelectedIndexChanged( ByVal sender As System. Object , ByVal e As System. EventArgs ) Handles cmbcode.SelectedIndexChanged         Dim kdbarang, namabarang As String         Dim harga As Single         kdbarang = cmbcode.Text