Advertisement
Guest User

MainMenu.vb

a guest
Aug 4th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. Public Class Form1
  2.  
  3. Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  4.  
  5. End Sub
  6.  
  7. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  8. MessageBox.Show("Thank You For Playing!")
  9. Close()
  10. End Sub
  11.  
  12. Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
  13. MessageBox.Show("All You Do Is Hit The Button Start Quiz! Then You Type Your Answer In The Answer Box, Then Hit Submit If Your Answers Wrong Then Hit The Resart Button!")
  14. End Sub
  15.  
  16. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  17. About.ShowDialog()
  18. End Sub
  19.  
  20. Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
  21. Me.Hide()
  22. Dim mainMenu As New Q1
  23. Q1.Show()
  24. End Sub
  25.  
  26. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement