Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All, when i am creating the instace of WebKitBrowser then getting fallowing error.

Retrieving the COM class factory for component with CLSID {D6BCA079-F61C-4E1E-B453-32A0477D02E3} failed due to the following error: 800736b1. in c#

Using Visual studio 2005.
Posted

1 solution

It's probably because you're building your application as 64-bit or your projects targets "AnyCPU" and the component is 32-bit only. You cannot mix 32- and 64-bit code in the same process.

Go to your project Properties and look for the Compile tab, Target CPU box. Change that to x86 and rebuild.
 
Share this answer
 
Comments
amit_83 30-Jan-14 12:57pm    
Thanks, I did same as you suggested, But still getting issue.

I have Visual studio 2005. OS is XP, And 32 bit machine.
Can you help me any more?
Dave Kreskowiak 30-Jan-14 15:46pm    
In that case, you're probably missing something the WebKit is dependent on, like the Visual C++ Runtime, as spelled out here[^]. Download and install the runtime from the link on that page.

You know, you could have had this problem solved in 5 minutes had you just Googled for the error message and "WebKit", like this: Click here[^].

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900