Advertisement
arlendafitranto

Frmmain

Aug 26th, 2024
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VisualBasic 0.58 KB | Source Code | 0 0
  1. Public Class Frmmain
  2.     Private Sub BtnDaftar_Click(sender As Object, e As EventArgs) Handles BtnDaftar.Click
  3.         Dim frmPendaftaran = New Frmpendaftaran
  4.         Me.Hide()
  5.         frmPendaftaran.Show()
  6.     End Sub
  7.  
  8.     Private Sub BtnKeluar_Click(sender As Object, e As EventArgs) Handles BtnKeluar.Click
  9.         Application.Exit()
  10.     End Sub
  11.  
  12.     Private Sub BtnListPendaftar_Click(sender As Object, e As EventArgs) Handles BtnListPendaftar.Click
  13.         Dim frmListPendaftar = New Frmlistpendaftar
  14.         Me.Hide()
  15.         frmListPendaftar.Show()
  16.     End Sub
  17. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement