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 boolean method?

0 Answers  


What is the difference between protected and internal in c#?

0 Answers  


Difference between dispose and destructor?

3 Answers   TCS,


How can you sort the elements of the array in descending order?

2 Answers  


What?s the difference between an interface and abstract class?

6 Answers   Mind Tree, Siebel,


What is a satellite assembly in c#?

0 Answers  


What is desktop example?

0 Answers  


How can you sort the elements of the array in descending order?

4 Answers  


What is the use of functional interface?

0 Answers  


Explain the difference between private and shared assembly?

0 Answers  


Define using statement in c#?

0 Answers  


What is session and cookies in c#?

0 Answers  


Categories