Ask a Question related to ASP.NET General, Design and Development.
-
Richard Loupatty #1
Starting winword.exe
I tried to start winword.exe from an aspx (after granting things with
dcomcnfg)
and i can see winword.exe showing up in the taskmanager,
but i don't see the word-application itself.
I did set the visibility, true.
Hope someone can help me.
Richard Loupatty
Richard Loupatty Guest
-
Help starting FMS
Hi all, i just got windows vista home premiun and install the fms 2.0.4 but it doesnt start, i try the option "run as administrator" in the star... -
starting CF 6.1 HELP
I have just moved back to the states from Germany, bought a new computer and now have problems getting CFMX 6.1 up and running. Using XP home... -
Error message - winword.exe
How do I fix or get rid of the following error message - The file c:\program files\microsoft office\office10\winword.exe is set to be launched by... -
How to convert winword into PDF format? please help
Question 1 In my winword 2000 I can see the adobe logo, and it indicate convert the file if I use pointer to target the logo. But nothing happen... -
OPENING A WORD DOC (WINWORD)
Hi All, I think this might not quite, very nearly, almost, be a Director question? My script to open a Word document from Director includes a... -
Steve C. Orr, MCSD #2
Re: Starting winword.exe
Why are you trying to start Word on the server? I imagine there will not
usually be anyone sitting there to see Word appear anyway.
The problem is that your process does not have access to the desktop.
You might try this: go into control panel, administrative tools, services.
Find all the WWW related services and, in their properties, check the
checkbox that says "Allow Service to Interact with Desktop"
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Richard Loupatty" <riclo@trashnet.nl> wrote in message
news:3f1f054c$0$149$edd6591c@news.versatel.net...> I tried to start winword.exe from an aspx (after granting things with
> dcomcnfg)
> and i can see winword.exe showing up in the taskmanager,
> but i don't see the word-application itself.
>
> I did set the visibility, true.
>
> Hope someone can help me.
>
> Richard Loupatty
>
>
Steve C. Orr, MCSD Guest
-
Troy Murphy #3
Re: Starting winword.exe
Simply redirecting to the doc file should launch word in the browser.
However, if you want to launch word directly as an application, you will
have to use script.
There are possible security issues doing this, but the following script
should work (at least in IE). This script should open any document in its
associated application, just set the onclick event to call the following
script:
<script language="vbscript">
Function OpenAppFile(cFileName)
Dim oWScript
set oWScript = createobject("WScript.shell")
oWScript.run(cFileName)
oWScript=Null
END Function
</script>
PS: If someone could translate this into javascript, please send that to
me.
Troy
"Richard Loupatty" <riclo@trashnet.nl> wrote in message
news:3f1fe0a4$0$142$edd6591c@news.versatel.net...not> I am looking for a solution in a citrix-environment.
> Don't know where to look, but the webapplication should give the
> user the possibility to start word.
>
> Richard
>
>
>
> "Steve C. Orr, MCSD" <Steve@Orr.net> schreef in bericht
> news:eTbGV0WUDHA.940@TK2MSFTNGP11.phx.gbl...> > Why are you trying to start Word on the server? I imagine there will> services.> > usually be anyone sitting there to see Word appear anyway.
> > The problem is that your process does not have access to the desktop.
> >
> > You might try this: go into control panel, administrative tools,>> > Find all the WWW related services and, in their properties, check the
> > checkbox that says "Allow Service to Interact with Desktop"
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > [url]http://Steve.Orr.net[/url]
> >
> >
> >
> > "Richard Loupatty" <riclo@trashnet.nl> wrote in message
> > news:3f1f054c$0$149$edd6591c@news.versatel.net...> >> > > I tried to start winword.exe from an aspx (after granting things with
> > > dcomcnfg)
> > > and i can see winword.exe showing up in the taskmanager,
> > > but i don't see the word-application itself.
> > >
> > > I did set the visibility, true.
> > >
> > > Hope someone can help me.
> > >
> > > Richard Loupatty
> > >
> > >
> >
>
Troy Murphy Guest



Reply With Quote

