View
213Download
0
- Cara Membuat Aplikasi Visual Basic Pendidikan. Belajar Cepat Membuat Aplikasi Menggunakan Visual Basicnet Db. Rpl Rekayasa Perangkat Lunak Aplikasi Koperasi Simpan Pinjam. Vb 60 Program Hitung Volume Dan Luas Permukaan Bangun Ruang. Vb 150 Source Code Visual Basic Berbagai Studi Kasus. Program Aplikasi Persediaan Stok Barang Untuk Tugas Akhir Dan.
- Cara Membuat Program Login Sederhana Dengan Menggunakan Bahasa Pemograman Microsoft Visual Basic 6.0, lintas galaxi.com, Cara Membuat Program Login Sederhana Dengan Menggunakan Bahasa Pemograman.
Cara membuat Software Akuntansi dengan Visual Basic tidaklah sulit apabila kita bersungguh sungguh dalam mempelajarinya. Kali ini saya ingin berbagi berbagi sebuah software akuntansi sederhana untuk teman teman menggunakan visual basic 6.0.Source code software akuntansi bisa di download dan dicoba menggunakan aplikasi visual basic baik yang full install atau visual basic yang portable.
Embed Size (px)
DESCRIPTION
membuat warna
Text of Membuat Warna Visual Basic
Example 18
Example 18.1
Cara Membuat Program Akuntansi Dengan Visual Basic Untuk
The Code:Dim strColor As String
Private Sub RadioButton8_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton8.CheckedChangedstrColor = 'Red'End Sub
Private Sub RadioButton7_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton7.CheckedChangedstrColor = 'Green'End Sub
Private Sub RadioYellow_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioYellow.CheckedChangedstrColor = 'Yellow'End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.ClickLabel2.Text = strColorEnd SubAlthough the user may only select one item at a time, he may make more than one selection if those items belong to different categories. For example, the user wish to choose T-shirt size and color, he needs to select one color and one size, which means one selection in each category. This is easily achieved in VB2008 by using the Groupbox control under the containers categories. After inserting the Groupbox into the form, you can proceed to insert the radio buttons into the Groupbox. Only the radio buttons inside the Groupbox are mutually exclusive, they are not mutually exclusive with the radio buttons outside the Groupbox. In Example 18.2, the users can select one color and one size of the T-shirt.Example 18.2
Dim strColor As StringDim strSize As String
Private Sub RadioButton8_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton8.CheckedChangedstrColor = 'Red'End Sub
Visual Basic Download Pc
Private Sub RadioButton7_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton7.CheckedChangedstrColor = 'Green'End Sub
Private Sub RadioYellow_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioYellow.CheckedChangedstrColor = 'Yellow'End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.ClickLabel2.Text = strColorLabel4.Text = strSizeEnd Sub
Private Sub RadioXL_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioXL.CheckedChangedstrSize = 'XL'End Sub
Private Sub RadioL_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioL.CheckedChangedstrSize = 'L'End Sub
Private Sub RadioM_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioM.CheckedChangedstrSize = 'M'End Sub
Microsoft Visual Basic 6.0 Exe
Private Sub RadioS_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioS.CheckedChangedstrSize = 'S'End Sub