Hi Everyone, the design of the form disappear during writing
codes for dataset and data grid. The error show in "line of
assigning dataset". I don't know what's happen. If anyone
know , please share of technical help from someone. Thanks,
Horace Trever



Hi Everyone, the design of the form disappear during writing codes for dataset and data grid. The e..

Answer / pavanreddy

first hold the table in clint mechine , if it is select
command use data adapter class other wise command class
ex DataAdapter da= new DataAdapter(" statement");
DataSet ds= new DataSet();
fill the data into dataset
da.fill(ds,"tablename");
now the table come to dataset assign the table to datagrid
dataGridView1.datasource=ds.Tables[0];


if you unable to see the design rightclick select gotodesign

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is console used for?

0 Answers  


What is a sealed class?

0 Answers  


If we write a goto or a return statement in try and catch block will the finally block execute?

6 Answers  


What is the difference between static and private constructor?

0 Answers  


Why is static constructor called first?

0 Answers  






What is manifest ?

3 Answers   Digital GlobalSoft,


What is the purpose of namespace in c#?

0 Answers  


What are the Different kinds of methods?

4 Answers   Wipro,


What is predicate c#?

0 Answers  


What do you mean by winforms in c#?

0 Answers  


Where is the output of TextWriterTraceListener redirected?

1 Answers  


What is default class in c#?

0 Answers  


Categories