Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



code to generate a excel sheet and to write data into it --- -it has to fetch the excel sheet whic..

Answer / 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

More C Sharp Interview Questions

What is the main purpose of delegates in c#?

0 Answers  


What is the class in c#?

0 Answers  


What is value type and reference type?

3 Answers   TCS,


Explain what is copy constructor?

0 Answers   BPL,


What is writeline?

0 Answers  


What are the various components in crystal reports?

0 Answers  


What are the Types of assemblies that can be created in dotnet

0 Answers  


What are data types examples?

0 Answers  


What is a di class?

0 Answers  


How many types of constructors are there?

0 Answers  


why sturcture ? why class?why you prefer structure and in which cases u go for class?

1 Answers   Microsoft,


What can I create with c#?

0 Answers  


Categories