sql >> データベース >  >> RDS >> Mysql

datagridviewの行の値を取得し、同じ行のボタンを使用して別のフォームに渡す方法

    これを行うには、CellClickを使用できます DataGridViewのイベント 、以下をご覧ください。

      Private Sub grdApplicantsAS_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles grdApplicantsAS.CellClick
            Dim frm2 As Form2
            Try
                'First column button
                If e.ColumnIndex = 0 Then
                   frm2 = New Form2(grdApplicantsAS.CurrentRow.Cells(YOUR NUMBER COLUMN).Value.ToString())
                   frm2.ShowDialog()
                ElseIf e.ColumnIndex = 1
                   'Do what you need here for the other button...
                End If             
    
            Catch ex As Exception
            End Try
        End If
    End Sub
    

    フォーム2の例

     Public Class Form2
       Public Property EmployeeName As String
    
       'Pass your name in as the argument. Now Form 2 will have your name...
       Public Sub New(ByVal strEmployeeName As String)
    
         'Set your property of your employee name
         EmployeeName = strEmployeeName
    
       End Sub
    
     End Class
    



    1. Doctrineで生成された2つの値

    2. DjangoMySQLdbのバージョンが_mysqlのバージョンUbuntuと一致しません

    3. 連続訪問数をカウントする

    4. SQLServer全文検索を使用して製品分析を実行する方法を学びます。パート2