|
I am using an excel object (COM component) for excel manipulation. It works fine on my PC, but when I deploy the application to our Intranet I am getting this error:
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000- 4...
Started by Xyz on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
The server might report the following error:
Microsoft Office Excel cannot... .
Here are the instructions:
http://blog.crowe.co.nz/archive/2006/03/02/589.aspx
There's one more issue you might need to address if you are using the Windows 2008 Server with IIS7 .
|
|
I am using DirectShowLib and SampleGrabber to capture video frames of an AVI file. I am accomplishing this by using graph builder and couple of filters. Everything was working fine, I was able to initialize graph and filters.
I then added code to get ...
Started by cornerback84 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can check the registry under HKCR/CLSID to see if that is actually... .
X80040154 - is Class Not Registered - usually that means one of two things - the CLSID is wrong, or the DLL/EXE that implements that class is not (properly) registered on the machine .
|
|
I'm writing a C# program that acts as a PowerPoint 2007 plugin. On some machines, some calls to the PowerPoint object model throws a COMException with the message RPC_E_SYS_CALL_FAILED. I couldn't find any specific advice on what to do regarding this ...
Started by Roy Tang on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If, when the timer fires....
If you.
Be the culprit - COM interop is pretty finicky about that sort of thing
My thread is set to use STA (single problem, but all your COM calls must come from within the same thread your add-in was created on.
|
Ask your Facebook Friends
|
What is the troubleshooting process for the "Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80080005" errors in .Net? To clarify: I am getting this at runtime, on my XP machine, with client being .net...
Answer Snippets (Read the full thread at stackoverflow):
At compile-time? Run-time? What COM component is causing the error? If error is at run-time, are you running as a non-admin user on XP or Vista?
0x80080005 is "Server Execution Failed", according generic error relating to starting up the....
|
|
I developed a Windows service using C#.NET to generate PDF report. To generate PDF file I am using a third party dll. The application is running in my Windows XP platform. When I deployed the service in Windows Server 2008 64 bit version, I got this error...
Started by gopal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Either you recompile the server and make it 32-bit or you... .
The website is proberbly running as a 32bit and it tries to create the COM component in the same process (in-proc server).
You need to build it for 'x86'.
Are using COM components.
|
|
Hello.
I have a problem with a C# ASP .NET project in Visual Studio 2008 This problem started when I reinstalled my computer with Windows 7 ultimate 64-bit. To this I'm also using Office 2007.
The error message I'm getting is:
{System.UnauthorizedAccessException...
Started by Tomas I on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You may try to start dcomcnfg utility.
Settings for access on COM component your code tries to create.
|
|
Greets,
When working with DirectX, you get this nice header to #include called DxErr9.h which has really helpful functions like:
DXGetErrorString9
and
DXGetErrorDescription9
They tell you everything you need to know about the error given the HR.
But now...
Started by bobobobo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
(); if ( FAILED(hr) ) { _com_error err(hr); LPTCSTR szErrMsg = err.ErrorMessage(); // log szErrMsgUse _com_error to get a meaningful string:
#include <comdef.h> HRESULT hr = SomeComFunc or whatever }
Additionally, you should....
|
|
Hi Team,
I have an instance of SQL Server 2008 running on a Windows 2008 server. I am able to connect to this SQL server from several machines on my network. However, I cannot connect using SQL Management Studio on the SQL Server itself.
When I hit "Connect...
Started by Justin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
-JFV
unregister actxprxy.dll.
I appears that the COM Interfaces need repaired/reinstalled.
|
|
We have a 32-bit COM component written with ATL in C++. When there's a need to use it from 64-bit .NET, we create a COM+ application and everything works allright.
Recently we noticed strange behaviour on Win2k8. The COM object in our component fires ...
Started by sharptooth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Start with COM+ security.
Of IOurCollectionInterface._NewEnum is actually being called?
What kind of COM marshalling are you are run as different users, time to check security very carefully.
|
|
Hi,
Joomla 1.7.5
Virtuemart 2.0.0
In the backend the Virtuemart Administration is perfect and I can add Products and categories.
But when I want to publish a module I get this error:
Warning: require_once(/homepage/30/d78930785/htdocs/HPS/modules/mod_...
Started by PhilingBB on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at virtuemart):
Http://forum.virtuemart.net/index.php?topic=95236.0 Thank you for your answer, but why do I have to migrate, because I already install the version .2.0.0?
Philippe
Installierte Version 2.0.0
Neueste Version 2.0.0
Neuestes Veröffentlichungsdatum 201... .
|