first commit

This commit is contained in:
adrianvic 2023-09-22 20:50:26 -03:00
commit a695ad2cb9
112 changed files with 18921 additions and 0 deletions

19
AAAAAAAAAAAAA/Login.vb Normal file
View file

@ -0,0 +1,19 @@
Public Class Login
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "admin" And TextBox2.Text = "admin" Then
Panel.Show()
Me.Close()
Else
Me.Close()
End If
End Sub
Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class