Home » Posts filed under Visual Basic
Tampilkan postingan dengan label Visual Basic. Tampilkan semua postingan
Tampilkan postingan dengan label Visual Basic. Tampilkan semua postingan
Senin, 07 Januari 2013
Jumat, 09 November 2012
Membuat ascii - hexa converter dengn VB
Assalamualaikum.......
*form
*texbox
*command button
source code
Private Sub Command1_Click()
Text1.Text = Replace(Text1.Text, "0", "30")
Text1.Text = Replace(Text1.Text, "1", "31")
Text1.Text = Replace(Text1.Text, "2", "32")
Text1.Text = Replace(Text1.Text, "3", "33")
*form
*texbox
*command button
source code
Private Sub Command1_Click()
Text1.Text = Replace(Text1.Text, "0", "30")
Text1.Text = Replace(Text1.Text, "1", "31")
Text1.Text = Replace(Text1.Text, "2", "32")
Text1.Text = Replace(Text1.Text, "3", "33")
[ VB 6.0 ] membuat animasi form
Assalamualaikum..............
Contoh 1:
Private Sub Form_Unload(Cancel As Integer)
Me.BackColor = vbWhite ' warna belakang putih
WindowState = 2 ' maximized-kan
DrawWidth = 4 '/ ketebalan
For i = 1 To 16000
Contoh 1:
Private Sub Form_Unload(Cancel As Integer)
Me.BackColor = vbWhite ' warna belakang putih
WindowState = 2 ' maximized-kan
DrawWidth = 4 '/ ketebalan
For i = 1 To 16000


