how to display empty table to datagrid
Answers were Sorted based on User's Feedback
Answer / dinesh sharma
DataTable tbl=new DataTable;
DataColumn ID=new
Datacolumn("ID",System.Type.GetType("System.Int"));
DataColumn Name=new
DataColumn("NAME",System.Type.GetType("System.String"));
tbl.Columns.add("ID");
tbl.Columns.Add("NAME");
Datarow dr =null;;
for (int i=0;i<100;i++)
{
dr=tbl.NewRow();
}
datagridview1.datasource=tbl;
Is This Answer Correct ? | 14 Yes | 1 No |
Answer / neha
DataTable tbl=new DataTable();
tbl.Columns.Add("ID", typeof(int));
tbl.Columns.Add("Name");
datagridview.DataSource=tbl;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / radhat
This works, but it only provides one empty row.
It doesn't give you 100 empty rows as your code suggests.
To fix this I added:
dr = tbl.Rows.Add();
right underneath the .NewRow(); line
Hope this helps anyone looking for an empty table.
Is This Answer Correct ? | 0 Yes | 3 No |
Why ca not we use multiple inheritance and garbage collector paralelly in .net?
Whate are different types of Commands available with DataAdapter ?
What is the difference between Datareader and Dataset?
can we change the data in dataset? if yes what is the process?
What is a dataset?
What are the several execute methods of ado.net?
Define data adapter?
What is ole db and odbc?
Explain the dataadapter class in ado.net?
What is data view and variable view?
Why edit is not possible in repeater?
Why is stored procedure used in ado.net?