⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmdelrecruit.vb

📁 通用学籍管理软件 vb开发access数据库的实例
💻 VB
字号:
Public Class FrmDelRecruit
    Dim RowIndex As Integer
    Private Sub FrmDelRecruit_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        DGVRecruit.DataSource = DBRecruit.LoadRecruit()
    End Sub

    Private Sub BtnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnExit.Click
        Me.Close()
    End Sub

    Private Sub BtnDel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnDel.Click
        If User.Mod1 = "可读" Then
            MsgBox("您无权写入记录!", MsgBoxStyle.Exclamation, "信息框")
            Exit Sub
        End If
        DBRecruit.DelRecruit(DGVRecruit.Rows(RowIndex).Cells(0).Value)
        DGVRecruit.DataSource = DBRecruit.LoadRecruit()
    End Sub

    Private Sub DGVRecruit_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DGVRecruit.CellContentClick
        RowIndex = e.RowIndex
    End Sub
End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -