This repository has been archived by the owner on May 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.vb
58 lines (40 loc) · 1.81 KB
/
Form1.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Public Class Form1
Private Dados As New Controle
Private intReg As Integer
Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
AtualizaRegistro()
End Sub
Public Sub AtualizaRegistro()
Dados.ExecuteQuery("SELECT * FROM Equipamentos")
dgvDados.DataSource = Dados.DBDT
End Sub
Private Sub dgvDados_RowEnter(sender As Object, e As DataGridViewCellEventArgs) Handles dgvDados.RowEnter
intReg = dgvDados.Rows(e.RowIndex).Cells(0).Value
End Sub
Private Sub BtnNovoEquipamento_Click(sender As Object, e As EventArgs) Handles btnNovoEquipamento.Click
Dim frm As New Novo_Equipamento
frm.ShowDialog(Me)
AtualizaRegistro()
End Sub
Private Sub BtnAlterar_Click(sender As Object, e As EventArgs) Handles btnAlterar.Click
Dim frm As New Alterar_Equipamento
frm.Registro = intReg
frm.ShowDialog(Me)
AtualizaRegistro()
End Sub
Private Sub BtnDeletar_Click(sender As Object, e As EventArgs) Handles btnDeletar.Click
If MessageBox.Show("Parece que você está tentando remover um registro. Esta ação não poderá ser desfeita. Deseja continuar?", "Atenção",
MessageBoxButtons.YesNo, MessageBoxIcon.Warning) = DialogResult.Yes Then
Dados.AddParams("@Registro", dgvDados.CurrentRow.Cells(0).Value)
Dados.ExecuteQuery("DELETE FROM Equipamentos WHERE Identificação = @Registro")
AtualizaRegistro()
End If
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Localidades.Show()
Me.Hide()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Comunicação_arduino.Show()
End Sub
End Class