Starting winword.exe

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

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

    Troy Murphy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139