Hi Scott,
I am using the Vs 2008. i tryed what you have mention in the above.but i am getting error.Bellow i have mentioned my code.
SqlConnection con = new SqlConnection("SERVER=.;UID=sa;PWD=123;DATABASE =NorthWind");
con.Open();
SqlCommand objCommand = new SqlCommand("SELECT FirstName, LAstName from Employees",con);
sqlDataReader = objCommand.ExecuteReader(System.Data.
CommandBehavior.CloseConnection);
BindingSource bindingSource = new BindingSource();
bindingSource = sqlDataReader;
/// Here i am getting error "Can not implicity convert type"
this.dataGridT1.DataSource = sqlDataReader;
-Balamurugan.S