Posts
 
Reputation
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
~1K People Reached
Favorite Forums
Favorite Tags
c# x 1

1 Posted Topic

Member Avatar for Emmaliu

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; …

Member Avatar for kanchanraaj
0
1K

The End.