| | |
To Search a record in datagridview
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
VB.NET Syntax (Toggle Plain Text)
Private Function Find(ByVal StrSearchString As String) As Boolean DataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect Dim intcount As Integer = 0 For Each Row As DataGridViewRow In DataGridView1.Rows If DataGridView1.Rows(intcount).Cells(0).Value.ToString = StrSearchString Then DataGridView1.Rows(intcount).Selected = True Find = True Exit Function End If intcount += 1 Next Row Find = False End Function
Last edited by Triss; Nov 6th, 2007 at 10:26 am.
VB.NET Syntax (Toggle Plain Text)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Call Find(TextBox1.Text) End Sub
![]() |
Similar Threads
- Search records in a database (ASP.NET)
- How to Search record from the Sql Server Database (ASP.NET)
- Search record from SQLDatabase (ASP.NET)
- Search facility for a drop down box (MySQL)
- search record using search button from database (ASP)
Other Threads in the VB.NET Forum
- Previous Thread: extract data
- Next Thread: Large Database record editing recommendation
| Thread Tools | Search this Thread |
.net .net2008 2005 2008 access account arithmetic array basic bing button buttons center check code combobox component crystalreport data database datagrid datagridview date design dissertation dissertations dropdownlist excel fade file-dialog filter folder ftp generatetags google gridview hardcopy images input insert intel internet listview mobile monitor ms net networking objects output panel passingparameters peertopeervideostreaming picturebox picturebox1 port position print printing problem problemwithinstallation project read remove save searchbox searchvb.net select serial shutdown soap survey table tcp temperature text textbox timer timespan toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf year





