L
lukas
When i try to import excel data with Oledb. The column
who have number value and blank value is not im my
dataset.
For the importation i do
OleDbDataAdapter oCmd=new OleDbDataAdapter("SELECT * FROM
[sheet1$]",strCn);
DataSet oDS=new DataSet();
try
{
oCmd.Fil(oDS,"ExcelInfo");
dataGrid2.DataSource=oDS.Tables[0];
}
Could give me an answer. What can i do in my code for
having this column.
Lukas
..
who have number value and blank value is not im my
dataset.
For the importation i do
OleDbDataAdapter oCmd=new OleDbDataAdapter("SELECT * FROM
[sheet1$]",strCn);
DataSet oDS=new DataSet();
try
{
oCmd.Fil(oDS,"ExcelInfo");
dataGrid2.DataSource=oDS.Tables[0];
}
Could give me an answer. What can i do in my code for
having this column.
Lukas
..