CodeXchange Thursday, March 28, 2024
Home
What's it?
Download
Register
My Snippets
Add Snippet
Search
Faq
Contact Us
Sponsors

Website hosted by


Code Snippet Preview

Review the code snippet before inserting it on your project.

Snippet Metadata
Summary: Search into a SQL 2005 database
Language: VB.NET
Author: Metaferia Amhayesus
Author snippets RSS:
Culture: en-US
Bytes: 829
Visual Studio 2005 Snippet:

Snippet Stats
Downloads: 1
Overall rating : 5
Average rating : Snippet rating

Snippet Preview
Code:
Private Sub butOk_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles but_ok.Click
    Dim strConnection As String = "Data Source=your SQL data source;Initial Catalog=your database; Integrated Security=True"
    Dim cn As SqlClient.SqlConnection = New SqlClient.SqlConnection(strConnection)
    Dim ds As New DataSet
    Dim strSelect As String
    'strSelect As String 
    strSelect = "SELECT * FROM " & YourTable & " WHERE [Search Field] = '" & Me.txtName.Text & "'"
    Dim dscmd As New SqlClient.SqlDataAdapter(strSelect, cn)
    dscmd.Fill(ds, "your table")
    Me.Datagrid1.DataSource = ds
    Me.Datagrid1.DataMember = "your table"
    Dim con As Integer
    con = Me.BindingContext(ds, "your table").Count
    If con = 0 Then
    MessageBox.Show("Recourd could not be found")
    End If
    End Sub

Snippet Comments
Comments:
No comments for this snippet

Other snippets that may interest you..
Related Snippets
TDT - GridPage - Page_Init (C#)
CustomValitaor (C#)
(C#)
Get the file extension from a file path or file name (VB.NET)
grab record from db and subtracts it from variable (VB.NET)



Copyright ©2009-2024 CodeXchange. Server version 1.0.3720.32855 Client Version 0.9.0.0

With from Barcelona

Most Helpful members
These are the members who have received the most points for their helpful samples
Zepho Zep
Robert Wagner
Galen Taylor

All time 'Hall of fame'
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
INI File Access (VB.NET)
Read XML from string into DataSet (C#)
Create Manifest File for your Application (VB.NET)
Round function to avoid banker's rounding (VB.NET)
Get Short and Long Path Names (VB.NET)
Sending Mail through authenticated SMTP server (C#)
One Way Hash for strings (C#)
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
How do I load an image from a URI address? (VB.NET)
Use our easy to use Visual Studio.NET addin client and start sharing code snippets with the CodeXchange community!
Refreshed: Thursday, March 28, 2024