Guest User

Untitled

a guest
Mar 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Public Class Main
  2. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  3. Label1.Text = "Benvenuto"
  4. End Sub
  5.  
  6. Private Sub Insert_Sell_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Insert_Sell.Click
  7. Dim Ins As New INS_Sell()
  8. Ins.Show()
  9. Me.Close()
  10. End Sub
  11.  
  12. Private Sub LGOUT_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LGOUT.Click
  13. Application.Exit()
  14. End Sub
  15.  
  16. Private Sub View_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles View.Click
  17. Dim Mov As New Mag_Data()
  18. Mov.Show()
  19. End Sub
  20.  
  21. Private Sub Del_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Del.Click
  22. Dim Tool As New SQLTools()
  23. Tool.Delete("Movimento")
  24. End Sub
  25.  
  26. Private Sub ViewCron_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ViewCron.Click
  27. Dim Chrono As New Chrono_Data()
  28. Chrono.Show()
  29. End Sub
  30.  
  31. Private Sub Insert_Buy_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Insert_Buy.Click
  32. Dim Ins As New INS_Buy()
  33. Ins.Show()
  34. Me.Close()
  35. End Sub
  36. End Class
Add Comment
Please, Sign In to add comment