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...

reading doc file in textbox using .net2005 with c#

Answer Posted / tiger skumar

We can use the files concept to load the doc file content
into the textbox using the Multiline property.

we have many ways.This is one of the way.

using System.IO;


FileStream fstream = new
FileStream("Sample.doc",FileMode.Open,FileAccess.Read);
StreamReader sreader = new StreamReader(fstream);

txtFileContent.Text = sreader.ReadToEnd();


->change your Text Box Property into tghe multilien txtbox.

Is This Answer Correct ?    5 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to disable the lazy loading framework?

1131


Please explain me what the project manager will ask in the interview.The interview is for senior position in .Net (5 years experience )

3022


what is code first approach?

1198


What is entity framework used for?

1095


What are the 2 ways of adding constraints to a route?

1050


What is main objective of asp.net mvc 4 or what is new in mvc4 ?

1197


What is meant by tempdata in mvc?

1052


What are actions in mvc?

1047


how can you enhance the performance of entity framework?

1097


What symbol would you use to denote, the start of a code block in razor views?

1026


Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?

1039


Can I remove .net framework?

1036


What is the .net framework 3.0 (formerly winfx)?

1054


Does .NET Framework support SAX?

1062


What type of filter does outputcacheattribute class represents?

1149