No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
You could loop through the rows in the datagridview ? Or maybe re-query the datasource? Dim intcount As Integer = 0 For Each Row As DataGridViewRow In DataGridView1.Rows If DataGridView1.Rows(intcount).Cells(0).Value = "StringSearch" Then 'Do Something intcount +=1 End If Next Row
Windows is the future, Bill told me.
I would use events for this...
What you looking to do with the data? I would read it into an array()?
I have a procedure that does this Public Sub ShowForm(ByVal FrmSwitch As FrmToShow) Select Case FrmSwitch Case Is = FrmToShow.FrmRecommendAssignment If _FrmRecommendAssignment = 1 Then ChildForm8.FindForm() Else ChildForm8 = New FrmRecommendAssignment ChildForm8.Visible = True ChildForm8.MdiParent = Me ChildForm8.StartPosition = FormStartPosition.CenterScreen ChildForm8.Show() _FrmRecommendAssignment += 1 End If end select
The timer tick event should call the copy procedure.
The End.
Triss