Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: I Think this is the complete code dude [CODE]private void Form1_Load(object sender, EventArgs e) { string connectionString = GetConnectionString(); SqlConnection con = new SqlConnection(connectionString); string sqlSelect = "Select * from authors"; SqlCommand cmd = new SqlCommand(sqlSelect,con); SqlDataAdapter adp = new SqlDataAdapter(cmd); DataTable dt = new DataTable(); adp.Fill(dt); dataGridView1.DataSource = dt; … |
The End.