While migrating .net application to 64 bit Windows 10 the above runtime error is occuring.I tried all the possible ways but still not working.Also the above mentioned key is not there in the clsid of registry. How to tackle it? enter image description here and when I tried to register the dll I got this dialog box.
Retrieving the COM class factory for component with CLSID {DB797690-40E0-11D2-9BD5-0060082AE372} failed due to the following error: 80040154
191 Views Asked by Priyadarshini Sivakumar At
1
There are 1 best solutions below
Related Questions in VB.NET
- how do i stop system stack overflow in visual basic?
- Finding and Using Camera found in “Imaging Devices” in VB.NET
- Finding a specific colour within a bitmap range - VB.net 2022
- Filtering a double value
- How to call late bound extension method from VB.NET (Framework)
- Accessing a variable from a string
- Calling ToString with a nominated format returns Char rather than String
- Monthly attendance report in Crystal Report
- Progress Bar increment while running
- GetValue for Field contains too many arguments
- Icon of Window form application
- vb.net connection string to a regular google drive
- VB.NET how to check if a form already exists?
- How to get paste to work for pasting in text in a textbox?
- How to convert base64 string to image using vb.net
Related Questions in DLL
- How to find a sequence of bytes on the target program from my injected dll?
- .lib not generated when building DLL project using template class
- The file "spng.dll" is not founded in my Visual Studio's project and i get an error
- Handling Memory Allocation and Pointers in Electron between Node.js and C++ DLL
- Multi level project reference using dll
- Wix MSI Project Harvesting Error Message 'dll is not running' on Build
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- How can I verbosely track the whole process of calling a function?
- Is dll static var shared between threads that load the same dll?
- JNR-FFI - Callback Pointer crash
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- PyInstaller with PyQt5 Generates "DLL load failed" Error for QtPrintSupport
- What happens if I link two different libraries providing the same symbols in Visual Studio?
- how to test .dll on Linux
- PHP FFI - How to free memory created by FFI::new("void*[2]", false, true)
Related Questions in CLSID
- xls files not getting generate using sql bcp commad
- Calling COM objects
- How to find a CLSID in rust for windows?
- Problem with Jacob.jar - com.jacob.com.ComFailException: Can't get object clsid from progid
- Programmatically access files in a device showing up in 'This PC'
- Couldn't run my WinForm app when COR_ENABLE_PROFILING set
- Where to register CLSID entry for Visual Studio 2017 or later version
- oleaut32.dll returns negative hresult in debugger, but the correct result in a different app and even in my built app
- Retrieving the COM class factory for component with CLSID {DB797690-40E0-11D2-9BD5-0060082AE372} failed due to the following error: 80040154
- MS office Word 2016 upgrade from 2010 resulted in error “error: 80080005 Server execution failed” (CO_E_SERVER_EXEC_FAILURE) .Net web application
- Get CLSID from ProgID
- Retrieving the COM class factory for component Access Denied Error
- How to find out Application AppID \ CLSID IN Windows Registry \ DCOM Config
- DCOM was unable to communicate with the computer using any of the configured protocols
- Duplicate Powershell Get-Members in C#
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Try registering the referenced com file in the registry.
ex)
If the file you are referencing is made of .net Find the 'RegAsm.exe' file and try to register.
ex2)
cd C:\test
RegAsm test.dll /unregister
RegAsm test.dll /codebase
or If your project has a 64-bit build, try building it with a 32-bit change.