code to generate a excel sheet and to write data into it ---
-it has to fetch the excel
sheet which is in one folder placed by us inside a project
folder(i,e it has to create a instance of that excel sheet)
and write the data into it row by row please respond as
early as possible
Answer Posted / uiky
string outputFile1 = "C:\\abc.xls";
FileInfo outputFileInfo1 =
new FileInfo(outputFile1);
FileStream outfs1 = null;
if(outputFileInfo1.Exists)
outfs1 =
outputFileInfo1.Open(FileMode.Open);
else
outfs1 =
outputFileInfo1.Open(FileMode.CreateNew);
TextWriter tw1 = new
StreamWriter(outfs1);
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What do you know about Translate Accelerator?
List the different stages of a thread?
List the 5 different access modifiers in c#?
Explain the difference between a namespace and assembly name in .net?
What is eager loading in c#?
What can be done with c#?
What are virtual destructors?
What's the difference between abstraction and encapsulation?
What are the Types of caching
Explain Direct CAST vs CType ?
What are extender provider components?
What is difference between ienumerable and ienumerator in c#?
Explain the working of serialization?
what is an exception in .net?
What is int32 maxvalue?