Hi,
Is there are way to get the colums of a specific record from a datagrid to print out specific values?
Printable View
Hi,
Is there are way to get the colums of a specific record from a datagrid to print out specific values?
try this one.Quote:
Originally Posted by saphiroth
if will fetch the data in first column of your datagrid
hope that helps.VB Code:
Private Sub DataGrid1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles DataGrid1.DoubleClick MessageBox.Show(DataGrid1.Item(DataGrid1.CurrentCell.RowNumber, 0)) End Sub
or maybe i miss the point of the question
Thank you for you help, it works well.
ok edit your post and put [Resolved] or the icon green checkmark.Quote:
Originally Posted by saphiroth
happy coding :afrog: