Ask a Question related to ASP.NET General, Design and Development.
-
Todd #1
Word Document Will Not Open Via Clients - HELP!
Ok, this code works fine on the Web server machine. But when I try to run it
via any other clients on the LAN, I keep getting scripting errors (the MS
Word Document never opens.) Do I have to configure the server somehow to
allow it to share this MS Word doc?
<SCRIPT LANGUAGE=VBScript>
Dim objWord
Sub Btn1_onclick()
call
OpenDoc("http://WEBSERVER/ClerkOfCourt/CourtLetters/TestTemplate.doc")
End Sub
Sub OpenDoc(strLocation)
Set objWord = CreateObject("Word.Application")
objWord.Visible = true
objWord.Documents.Open strLocation
End Sub
</SCRIPT>
Todd Guest
-
PLEASE HELP ME..(How to open word document or powerpoint presentation from flash?
Hi I have an assignment to do in which i have to design CD in Flash for m universitys course material where links are to be placed which open word... -
How to open word document or power point presentation from flash movie??
Hi I have an assignment to do in which i have to design CD for m universitys course material where links are to be placed which open word document... -
Open word document inside director
How do I open an external word document within director and display on stage? wishes, Priya -
Trying to open a word document on the shell
I am trying to open a document as below #!/usr/local/bin/perl -w use Tk; my $mw = new MainWindow(); -
how to create and open a MS Word document in ASP.NET
Hi Check out this URL: http://www.codeproject.com/useritems/WordApplication.asp Ravikanth application, what is the -
Todd #2
Re: Word Document Will Not Open Via Clients - HELP!
Yeah, but I need the .doc to open in it's own instance of the MS Word
Application. If I open it within the IE Browser - the user cannot make any
changes to it (save) etc.
Hmm...
Any suggestions?
"Henke" <funboy_yodel2@hetmail.com> wrote in message
news:%23ZoRiq9PDHA.4024@tk2msftngp13.phx.gbl...run> This is a security issue. You canīt start an Win32 application
> from a Vbscript in the browser without lowering the security.
>
> I would rather load the document in a iframe or frame from the
> webserver
>
> Regards,
>
> // Henke
>
> "Todd" <tsloan@smithdata.net> wrote in message
> news:%23142lV9PDHA.2052@TK2MSFTNGP11.phx.gbl...> > Ok, this code works fine on the Web server machine. But when I try toMS> it> > via any other clients on the LAN, I keep getting scripting errors (the>> > Word Document never opens.) Do I have to configure the server somehow to
> > allow it to share this MS Word doc?
> >
> > <SCRIPT LANGUAGE=VBScript>
> > Dim objWord
> > Sub Btn1_onclick()
> > call
> > OpenDoc("http://WEBSERVER/ClerkOfCourt/CourtLetters/TestTemplate.doc")
> > End Sub
> >
> > Sub OpenDoc(strLocation)
> >
> > Set objWord = CreateObject("Word.Application")
> > objWord.Visible = true
> > objWord.Documents.Open strLocation
> > End Sub
> > </SCRIPT>
> >
> >
>
Todd Guest
-
zPaul #3
Re: Word Document Will Not Open Via Clients - HELP!
You don't have any option. The only thing you can do is to allow the user to
save the document and create a upload function if you want to save it to
server.
"Todd" <tsloan@smithdata.net> wrote in message
news:uziXi19PDHA.1720@TK2MSFTNGP11.phx.gbl...to> Yeah, but I need the .doc to open in it's own instance of the MS Word
> Application. If I open it within the IE Browser - the user cannot make any
> changes to it (save) etc.
>
> Hmm...
>
> Any suggestions?
>
> "Henke" <funboy_yodel2@hetmail.com> wrote in message
> news:%23ZoRiq9PDHA.4024@tk2msftngp13.phx.gbl...> run> > This is a security issue. You canīt start an Win32 application
> > from a Vbscript in the browser without lowering the security.
> >
> > I would rather load the document in a iframe or frame from the
> > webserver
> >
> > Regards,
> >
> > // Henke
> >
> > "Todd" <tsloan@smithdata.net> wrote in message
> > news:%23142lV9PDHA.2052@TK2MSFTNGP11.phx.gbl...> > > Ok, this code works fine on the Web server machine. But when I try to> MS> > it> > > via any other clients on the LAN, I keep getting scripting errors (the> > > Word Document never opens.) Do I have to configure the server somehow>> >> > > allow it to share this MS Word doc?
> > >
> > > <SCRIPT LANGUAGE=VBScript>
> > > Dim objWord
> > > Sub Btn1_onclick()
> > > call
> > > OpenDoc("http://WEBSERVER/ClerkOfCourt/CourtLetters/TestTemplate.doc")
> > > End Sub
> > >
> > > Sub OpenDoc(strLocation)
> > >
> > > Set objWord = CreateObject("Word.Application")
> > > objWord.Visible = true
> > > objWord.Documents.Open strLocation
> > > End Sub
> > > </SCRIPT>
> > >
> > >
> >
>
zPaul Guest



Reply With Quote

