My Travel

Nama : Nurafifah Dwi Putri Aulia Npm : 15116567 Kelas : 1ka03 Private Sub Command1_Click() Form1.Show 'Menampilkan Form1 ketika Command Button diklik. Unload Me 'Menutup Form3 ketika Form1 terbuka End Sub Private Sub Combo1_Click() If Combo1.Text = "AR" Then Text1.Text = "Arimbi" Text2.Text = "Jakarta-Bandung" 'Option1.Value = True.' ElseIf Combo1.Text = "DM" Then Text1.Text = "Damri" Text2.Text = "Jakarta-Lampung" 'Option2.Value = True' End If End Sub Private Sub option3_click() If Combo1.Text = "AR" Then Text3.Text = 50000 Else Text3.Text = 100000 End If If Combo1.Text = "AR" Then Picture1.Picture = LoadPicture(App.Path & "\AR2.jpg") ElseIf Combo1.Text = "DM" Then Picture1.Picture = LoadPicture(App.Path & "\DM2.jpg") End If End Sub Private Sub Op...