↧
How to use DataGrid in C# .Net?
First place the DataGridView Control in the form.In the coding add the namespasce using System.Data.SqlClient; then initialize SqlConnection to ConnString as public (i.e)next to public Form1( )...
View ArticleHow to bind Combobox to a table field?
Binding ComboBox to a table using Stored Procedure SqlDataAdapter da = new SqlDataAdapter(“StoredProcedureName”,Connection); da.SelectCommand.CommandType = CommandType.StoredProcedure;...
View Article