Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
GeneralRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 2:49
molesworth7-Jul-09 2:49 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 3:06
Dan Neely7-Jul-09 3:06 
GeneralRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 3:41
molesworth7-Jul-09 3:41 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 4:12
Dan Neely7-Jul-09 4:12 
AnswerRe: Form designer insisting on form being checked out [SOLUTION] Pin
Dan Neely7-Jul-09 4:16
Dan Neely7-Jul-09 4:16 
GeneralRe: Form designer insisting on form being checked out [SOLUTION] Pin
molesworth7-Jul-09 5:48
molesworth7-Jul-09 5:48 
GeneralRe: Form designer insisting on form being checked out [SOLUTION] Pin
Dan Neely7-Jul-09 7:17
Dan Neely7-Jul-09 7:17 
QuestionReading word document in asp.net Pin
Spurple7-Jul-09 1:44
Spurple7-Jul-09 1:44 
hi all,
Im trying to read word document in asp.net 1.1 with following code.
added required ddls too.(i.e Microsoft Office 10.0 Object Library,Microsoft Word 11.0 Object Library)
but it is throwing error {Access is denied}
plz help!
thanks in advance!

Code:
Microsoft.Office.Interop.Word.ApplicationClass obj_app=new Microsoft.Office.Interop.Word.ApplicationClass();
Microsoft.Office.Interop.Word.Document obj_doc=new Microsoft.Office.Interop.Word.Document();
object readOnly = false;
object isVisible = true;
object missing = System.Reflection.Missing.Value;
object filepath=_FilePath;
obj_doc=obj_app.Documents.Open(ref filepath,
ref missing, ref missing,
ref missing, ref missing, ref missing,
ref missing, ref missing, ref isVisible,
ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing);
obj_doc.Select();
string m_Content="";
m_Content=obj_app.Selection.FormattedText.Text;

obj_doc.Close(ref missing,ref missing,ref missing);
obj_app.Quit(ref missing, ref missing, ref missing);

Response.Write(m_Content);
AnswerRe: Reading word document in asp.net Pin
Christian Graus7-Jul-09 1:46
protectorChristian Graus7-Jul-09 1:46 
Questionmerging byt[] in c# Pin
GauravKP7-Jul-09 1:42
professionalGauravKP7-Jul-09 1:42 
AnswerRe: merging byt[] in c# Pin
Christian Graus7-Jul-09 1:48
protectorChristian Graus7-Jul-09 1:48 
AnswerRe: merging byt[] in c# Pin
DaveyM697-Jul-09 1:56
professionalDaveyM697-Jul-09 1:56 
Questiontic tak toe Pin
Mostafa&Messi7-Jul-09 0:46
Mostafa&Messi7-Jul-09 0:46 
GeneralRe: tic tak toe PinPopular
Pete O'Hanlon7-Jul-09 0:47
mvePete O'Hanlon7-Jul-09 0:47 
AnswerRe: tic tak toe Pin
Rajesh R Subramanian7-Jul-09 0:49
professionalRajesh R Subramanian7-Jul-09 0:49 
GeneralRe: tic tak toe Pin
OriginalGriff7-Jul-09 1:01
mveOriginalGriff7-Jul-09 1:01 
AnswerRe: tic tak toe PinPopular
Christian Graus7-Jul-09 1:08
protectorChristian Graus7-Jul-09 1:08 
GeneralRe: tic tak toe Pin
dan!sh 7-Jul-09 1:10
professional dan!sh 7-Jul-09 1:10 
GeneralRe: tic tak toe Pin
Pete O'Hanlon7-Jul-09 1:23
mvePete O'Hanlon7-Jul-09 1:23 
GeneralRe: tic tak toe Pin
Christian Graus7-Jul-09 1:34
protectorChristian Graus7-Jul-09 1:34 
AnswerRe: tic tak toe Pin
PIEBALDconsult7-Jul-09 4:08
mvePIEBALDconsult7-Jul-09 4:08 
AnswerRe: tic tak toe Pin
0x3c07-Jul-09 5:29
0x3c07-Jul-09 5:29 
AnswerRe: tic tak toe Pin
Huxley Stronghead9-Jul-09 5:08
Huxley Stronghead9-Jul-09 5:08 
QuestionHow to change the html text on fly? Pin
svt gdwl7-Jul-09 0:36
svt gdwl7-Jul-09 0:36 
AnswerRe: How to change the html text on fly? Pin
Christian Graus7-Jul-09 1:09
protectorChristian Graus7-Jul-09 1:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.