我有一個datatable
,顯示在DataGridView
。來自DataTable的SELECT值
我希望用戶在datagridview
中選擇一個值,並將該值用作篩選器以查找datatable
中的另一個值。
所以像:
SELECT col2 from DataTable2 where col1=
(value in selected cell of the DataGridView)
編輯
OK,我已經添加了一些額外的信息,不知道我問正確的問題:
我有一個提示在datagridview
如下:
Sub dataGridView1_CellFormatting(ByVal sender As Object, _
ByVal e As DataGridViewCellFormattingEventArgs) _
Handles DataGridView1.CellFormatting
If e.ColumnIndex = Me.DataGridView1.Columns("Last Stop").Index _
AndAlso (e.Value IsNot Nothing) Then
With Me.DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex)
.ToolTipText = '(THIS IS WHERE I'M STUCK)
End With
End If
End Sub
我被困在上面的一點是我想使用Last Stop
所以e.Value
值來查找一個名字在我的DataTable -
ToolTipSN.Tables(「DT_ToolTip」)
看看[此鏈接(HTTP://social.msdn .microsoft.com /論壇/ en-CA/csharpgeneral/thread/46d650fd-6d11-46a6-91cb-fa3707eab7b1) – Belial09 2013-03-01 09:50:18
這是不是隻是從DataGridView返回值?我有這個價值,我需要的是如何查詢另一個DataTable的價值 – user1295053 2013-03-01 09:52:32
這是否有幫助? [LINK](http://stackoverflow.com/questions/3362260/how-to-make-c-sharp-datatable-filter) – Belial09 2013-03-01 09:55:19