Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
private void button1_Click(object sender, EventArgs e) { string ConString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Database.mdb"; OleDbConnection Con = new OleDbConnection(ConString); OleDbCommand Command = Con.CreateCommand(); DataSet ds = new DataSet(); dtaSearchID.DataSource = null; Con.Open(); Command.CommandText = "Select * From Codes Where [User ID] = '" + txtSearch.Text + "'"; OleDbDataAdapter Adapter = new OleDbDataAdapter(Command); …
The End.
vbr