Form splash Form Menu Form Kategori

LISTING PROGRAM

1. Form splash

koding untuk menjalankan progress bar Private Sub Timer1_Timer bar.Value = bar.Value + 4 Screen.MousePointer = vbHourglass If bar.Value = 8 Then lbBar.Caption = Loading.... ElseIf bar.Value = 40 Then lbBar.Caption = Initializing.... ElseIf bar.Value = 68 Then lbBar.Caption = Waiting.... ElseIf bar.Value = 100 Then lbBar.Caption = Finishing.... If bar.Value = 100 Then If Timer1.Interval = 1 Then Unload Me Screen.MousePointer = vbDefault home.Show End If End If End If End Sub Universitas Sumatera Utara

2. Form Menu

deklarasi warna kelip Dim i As Long Dim merah, hijau, biru As Integer selesai Private Sub category_Click frmcat.Show home.Hide End Sub Private Sub lblquiz_Click frmQuiz.Show home.Hide End Sub Private Sub lblsing_Click video.Show home.Hide End Sub Private Sub lblabout_Click credit.Show home.Hide End Sub timer teks kelip Private Sub Timer1_Timer i = i + 1 If i = 1000000 Then I = 0 Supaya tdk overflow, dsb... merah = Int255 Rnd Bangkitkan angka random untuk merah Universitas Sumatera Utara hijau = Int255 Rnd Bangkitkan angka random untuk hijau biru = Int255 Rnd Bangkitkan angka random untuk biru Label1.ForeColor = RGBmerah, hijau, biru Campur tiga warna If i Mod 2 = 0 Then Jika counter habis dibagi 2 Label1.Visible = True Tampilkan label Else Jika counter tidak habis dibagi 2 Label1.Visible = False Sembunyikan label End If Akhir pemeriksaan End Sub Private Sub Form_Load Warna kelip welcome i = 0 Inisialisasi detik Timer1.Interval = 500 Kalau 1000 biasanya lompat 1 detik Label1.Caption = Welcome selesai End Sub

3. Form Kategori

Private Sub alphabet_Click alpha.Show frmcat.Hide End Sub Private Sub animals_Click animal.Show frmcat.Hide End Sub Private Sub colours_Click colour.Show frmcat.Hide End Sub Universitas Sumatera Utara Private Sub Drinks_Click drink.Show frmcat.Hide End Sub Private Sub family_Click frmFamily.Show frmcat.Hide End Sub Private Sub food_Click Dish.Show frmcat.Hide End Sub Private Sub fruits_Click frmfruit.Show frmcat.Hide End Sub Private Sub house_Click frmhouse.Show frmcat.Hide End Sub Private Sub numbers_Click numb.Show frmcat.Hide End Sub Universitas Sumatera Utara Private Sub school_Click frmschool.Show frmcat.Hide End Sub Private Sub vegetables_Click vegetable.Show frmcat.Hide End Sub

4. Form fruitfrmfruit