Excel create object error

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Excel create object error

    Hello!

    I have an ASP page that creates an Excel object:
    set lobjXLSApplication = CreateObject("Excel.Application")

    This used to run fine on my local machine, but since I've installed Office
    2003, I get the following error:
    Microsoft VBScript runtime error '800a01ad'
    ActiveX component can't create object: 'Excel.Application'

    What do I have to do to keep my old script working?

    Thank you very much for your help in advance!
    Jeroen
    Jeroen de Wolf Guest

  2. Similar Questions and Discussions

    1. create object permidssion error
      I just moved all my IIS and COM+ to windows 2003 server and its gioving this permission error. I checked some articals and I am usin the basic...
    2. create object error
      I just moved all my IIS and COM+ to windows 2003 server and its gioving this permission error. I checked some articals and I am usin the basic...
    3. Web service in .net not able to create Excel com object
      (Type your message here) Hi! I created a web service in .net where in the web method makes call to a function in which I am creating an excel...
    4. Cannot create object Error
      I am trying to create an Adodb.connection in ASP to connect to a database located in the local folder in the root directory. I am getting the...
    5. Access denied error while using excel object
      In order to give ASP.NET the permissions it needs to use Excel, you'll likely need to add the line <identity impersonate="true"/> to your web.config...
  3. #2

    Default Re: Excel create object error

    "Jeroen de Wolf" <Activator@community.nospam> wrote in message
    news:3A841F2F-289A-4E1A-91F4-2F5FBE4CD1A5@microsoft.com...
    > Hello!
    >
    > I have an ASP page that creates an Excel object:
    > set lobjXLSApplication = CreateObject("Excel.Application")
    >
    > This used to run fine on my local machine, but since I've installed Office
    > 2003, I get the following error:
    > Microsoft VBScript runtime error '800a01ad'
    > ActiveX component can't create object: 'Excel.Application'
    >
    > What do I have to do to keep my old script working?
    >
    > Thank you very much for your help in advance!
    > Jeroen
    Google on (CreateObject Excel.Application 2003) came up with these:

    [url]http://www.issociate.de/board/post/258443/Failed_CreateObject(%22Excel.Appli[/url]
    cation%22)_in_Window_2003_Server.html

    [url]http://www.neevia.com/support/examples/cr/?get=ex003aspnet[/url]


    McKirahan 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