Practica Nº3 Sistemas

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Colegio de educación profesional técnica del

estado de chihuahua

Elaboración y Mantenimiento de sistemas

PSP. Roció Pinto Muñoz

Practica N°3

Santiago Antonio Gaytan Piña

080260173-2

5101-I
PRACTICA Nº3

FORM 1

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e


As System.EventArgs) Handles Button1.Click
Me.Hide()
Form2.Show()
End Sub
End Class

FORM2

Public Class Form2


BOTON CONTINUAR
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
cn.Open()
Dim ConsultarDatos As String = "select * from Administradores"
Dim DataAdapter As New OleDb.OleDbDataAdapter(ConsultarDatos,
cn)
DataAdapter.Fill(dt)
fila = dt.Rows.Count - 1
Do While fila >= 0
If TextBox1.Text = (dt.Rows(fila)("Usuario")) And
TextBox2.Text = (dt.Rows(fila)("Contraseña")) Then
Form3.Show()
Exit Do
Else : MsgBox("USUARIO O CONTRASEÑA INCORRECTOS")
End If
fila -= 1
Loop
DataAdapter.Dispose()
cn.Close()
End Sub
BOTON SALIR
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button2.Click
Form1.Close()
End Sub
End Class

You might also like