Windows error 0x80040111, -2147221231

Detailed Error Information

CLASS_E_CLASSNOTAVAILABLE[1]

MessageClassFactory cannot supply requested class
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code273 (0x0111)

Questions

20votes
4answers

Use of getPreventDefault() is deprecated. Use defaultPrevented instead

I want to Print receipt page on loading page in firefox Firefox shows following error.. Use of getPreventDefault() is deprecated. Use defaultPrevented instead. error source line: src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; > NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 > (NS_ERROR_NOT_AVAILABLE) [nsIDOMWindow.print] error source line: -------------------------------------------------------------------------------- print(); code: [...] read more
javascript
jquery
firefox
printing
11votes
2answers

Javascript: onclick/onsubmit for dynamically created button

I dynamically create a button in the way I found in the Internet: Page = function(...) { ... }; Page.prototype = { ... addButton : function() { var b = content.document.createElement('button'); b.onclick = function() { alert('OnClick'); } }, ... }; Unfortunately, it's not working and throwing the following error: Error: [...] read more
javascript
onclick
element
dynamic
createelement
11votes
2answers

AJAX POST handler causing "uncaught exception"

So I've been banging my head against my desk for a few hours on this one and i'm not getting anywhere so help would really be appreciated. The code below has two jquery event handlers which fire off an ajax request. The first one uses GET and the data it [...] read more
php
javascript
ajax
post
11votes
1answer

Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE)

My problem : uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMCanvasRenderingContext2D.drawImage]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///***************.js :: redrawView :: line 308" data: no] The code which produce this behaviour (tmpImg is loading dynamically, so if it is not loaded yet, it skip it). if(tmpImg!=null && [...] read more
javascript
image
exception
canvas
10votes
3answers

localStorage in a Firefox extension

I am trying to access the localStorage of a page from a Firefox extension. My understanding is that content gives a reference to the window of the current page. When I try and access the localStorage for the page with content.localStorage, I think I am getting a reference to it. [...] read more
javascript
html
firefox-addon
local-storage
8votes
3answers

VSPerf and Azure Cloud Services

When I deploy a cloud service to Windows Azure it causes a number of VSPerf.exe instances to start - anything from 1 to 5. Between them they consume all the CPU and none of the processes ever terminate themselves. If I remotely connect to the instance and terminate the processes [...] read more
c#
asp.net-mvc
azure
hosting
7votes
1answer

How do I enable copy to clipboard in Firefox on Linux?

I released a new version of a firefox webextension, Copy All Tabs last night. The code is open source and available on github. The new version fixes many bugs and is overall more stable. It works as expected on Windows and Mac (Firefox 61). However, when I was testing on [...] read more
javascript
firefox
firefox-addon
firefox-webextensions
7votes
2answers

How to override the alert function with a userscript?

On site there is code like that (its site on LAN) <script language="JavaScript" type="text/javascript"> alert("ble"); </script> I try to disable that alert using GM. I was trying to do this unsafeWindow.alert=function() {}; but I see the alert and get this error Error: uncaught exception: [Exception... "Component is not available" nsresult: [...] read more
javascript
alert
greasemonkey
userscripts
tampermonkey
7votes
1answer

TSaveDialog fails with client visual styles disabled

I am trying to use a TSaveDialog in Delphi XE6: if not SaveDialog1.Execute(0) then Exit; The call immediately returns false, without displaying any dialog. I traced it down to the act of creating the shell Save Dialog COM object: function TCustomFileSaveDialog.CreateFileDialog: IFileDialog; var LGuid: TGUID; begin LGuid := CLSID_FileSaveDialog; CoCreateInstance(LGuid, [...] read more
delphi
themes
delphi-xe6
visual-styles
6votes
1answer

canvas drawImage doesn't draw images the first time

I'm working on a simple JavaScript game using HTML5 canvas. It's a very typical game-loop setup involving: * init() function that initializes objects to be used the playfield, randomizing some start x/y positions and similar setup tasks * draw() function that draws all the game objects, including some simple canvas [...] read more
javascript
html
canvas
drawimage
5votes
1answer

OnUnload Alert Error "NS_ERROR_NOT_AVAILABLE"

<html> <body> <button type="button" onclick="clickme()">Click Me</button> <script> var test = 0; function clickme() { test = 1; console.log(test); } window.onunload = function() { alert("test"); } </script> </body> </html> I'm using this simple code to test some things with onunload and onbeforeunload. For some reason whenever I refresh/leave the page and [...] read more
javascript
alert
onunload
window.onunload
4votes
3answers

Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE)

Using .Net 4.0 / WPF Application / C# I have the following piece of code in my application, which opens a FileDialog when the Select button is clicked. OpenFileDialog fdgSelectFile; bool? dialogResult; try { fdgSelectFile = new OpenFileDialog {DefaultExt = FileDialogDefaultExt, Filter = FileDialogFilter}; dialogResult = fdgSelectFile.ShowDialog(); if (dialogResult.HasValue && [...] read more
c#
.net
wpf
dll
com
4votes
1answer

Exception "Component is not available" when iterating over window object's properties

I'm trying to convert a Google Chrome extension to Firefox using Addon SDK (Jetpack). The following code (run as content-script) var property, winProperties = {}; for (property in window) { winProperties[property] = true; } throws this exception when run in Firefox 5.0 and 6.0: Traceback (most recent call last): File [...] read more
javascript
firefox
firefox-addon
firefox-addon-sdk
window-object
4votes
1answer

How to make code in a Firefox Extension execute on a timer

Today is my first day working with firefox extensions. Basically I am making an extension that will be used on an internal network to check a web server for new notifications. I used the wizard on the mozilla page to make a skeleton extension and then mainly edited overlay.js with [...] read more
firefox-addon
3votes
4answers

WINEHQ - wine_gecko won't init - HTML Rendering disabled

I'm currently trying to get a windows compiled program to work through Wine to run on Linux and MacOSX. When I run the program through wine, it prompts me to install Gecko which I do. Later on in the program, it attempts to use MSHTML to render HTML but I [...] read more
linux
wine
3votes
1answer

Some .tiff files are not getting viewed from pdf.js

I am working on 1 application in which user can upload files and application shows preview of uploaded file using pdf.js. Server side code is: byte[] content= new BASE64Decoder().decodeBuffer(documentVO.getDocument()); outPutStream.write(content, 0, content.length); responseReturn.setContentType("application/pdf"); Problem is for some of the .tiff files preview is not shown and following warning gets displayed [...] read more
java
javascript
pdf.js
3votes
3answers

Trouble using 'link_to' and jQuery

I am using Ruby on Rails 3.0.7 and jQuery 1.6.1 and I am binding an AJAX click event to a link_to HTML output as in the following example: link_to 'Link name', '#', :id => 'link_css_id' As you can see I set the URL to '#'. Doing that when I click [...] read more
jquery
ruby-on-rails
ruby
ruby-on-rails-3
link-to
3votes
1answer

jquery wcf soap call fail

Anyone know i can make a jquery soap call to a wcf service? My JQuery Code: $.ajax({ url: "http://localhost/oseop/orderingservice.svc/HelloWorld", data: $("#txtTestRequest").val(), type: "POST", processData: true, contentType: "application/xml; charset=utf-8", timeout: 10000, dataType: "xml", beforeSend: function (xhr) { xhr.setRequestHeader("SOAPAction", "HelloWorld"); }, success: function (xml) { console.log("Sucess"); console.log(xml); }, error: function (xhr) { [...] read more
javascript
.net
jquery
wcf
soap
3votes
1answer

Broken COM object registration

This is a continuation of Register implementation of a com interface ; only now I've got actual code that needs debugging. I've got two COM objects, one that implements IAudioSessionEvents and one that implements IClassFactory and produces the first object. The following code registers those objects (in accordance with my [...] read more
c++
windows
com
2votes
2answers

Exchange 2007 Mailbox inaccessible

Bit of an odd one this, I've come back after a week off and my Exchange mailbox is completely inaccessible. The rest of the staff (20 or so) are all fine, but I cant connect to mine using either: 1. My Phone 2. My iPad 3. Outlook 2007 4. OWA [...] read more
email
exchange-2007
email-server
windows-sbs-2008
windows-sbs
2votes
3answers

80040111 ClassFactory cannot supply requested class (Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE))

Retrieving the COM class factory for component with CLSID {0A80A563-28AE-11D3-9CD6-00C04F8B8EF1} failed due to the following error: 80040111 ClassFactory cannot supply requested class (Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE)) I've Searched for the entry in Registry I can Find Assembly with {0A80A563-28AE-11D3-9CD6-00C04F8B8EF1} at HKLM\Software\Classes\Wow6432Node\CLSID{0A80A563-28AE-11D3-9CD6-00C04F8B8EF1}\InProcServer32 I've Created Application By using embedded interop types [...] read more
c++
c#-4.0
iis-7
interop
web-deployment
2votes
2answers

Ambiguous JavaScript error [nsSessionStore.js]

I'm seeing an ambiguous error in Firebug. I don't think it's particularly related to the script I'm writing, however I don't have enough details to be able to determine that from this one error alone. Has anyone seen something similar and have a suggestion? error: > [Exception... "Component is not [...] read more
javascript
firebug
2votes
1answer

why my ajax mootools method keeps showing me an Error alert?

I am trying to make a simple upload file system, and this is my code , I hope you can help me, help very appreciated init.php <form method="post" action="" enctype="multipart/form-data"> <label for="file">Upload a file</label> <input type="file" name="file" id="fileArchivo" /> <input type="submit" name="submit" id="btnUpload" value="Upload file" /> </form> Ajax mootools method [...] read more
php
ajax
mootools
request
2votes
1answer

Got error after submitting form

Form_Ajax.php => <script type="text/javascript" src="Testing_Ajax.js"></script> <script type="text/javascript" src="jquery-1.5.js"></script> <script type="text/javascript" src="myjquery.js"></script> <style> .cls_display{ background-color: green; } </style> <form name="nm_form" method="POST" action="Display_Ajax.php"> <table> <tr><td>User Name:</td><td><input type="text" name="nm_username" id="id_username"/></td></tr> <tr><td>Password:</td><td><input type="text" name="nm_password" id="id_password"/></td></tr> <tr><td><input type="button" value="Submitrunajax" onclick="runAjax()"/></td></tr> <tr><td><input type="button" class="cls_post" value="Submitjqueryajax"/></td></tr> <tr><td><input type="submit" class="cls_post" value="SubmitPOST"/></td></tr> </table> <div id="id_display" class="cls_display"> </div> </form> Display_Ajax.php [...] read more
javascript
jquery
ajax
forms
2votes
1answer

Exception when using canvas (0x80040111 NS_ERROR_NOT_AVAILABLE)

I'm having some trouble writing a JavaScript paint tool. It's a unit test and in the future will be used as a component for a larger project I'm working on. It runs in a canvas but when I try to run it, I get this error message: Error: uncaught exception: [...] read more
javascript
canvas
2votes
3answers

jQuery UI Dialog Throw Errors When Invoked from Greasemonkey

I'm getting this awkward error any time I try and create a dialog from Greasemonkey... I believe it has to do with the limitations of XPCNativeWrapper https://developer.mozilla.org/en/XPCNativeWrapper#Limitations_of_XPCNativeWrapper , though I am not 100% sure. None of the core jQuery methods that I've used have caused errors (append, css, submit, keydown, [...] read more
javascript
jquery
greasemonkey
2votes
1answer

Facebook subdomain issue

I'm having problems getting fb connect working on subdomains. the connect button comes up fine, but after it authenicates, the popup just goes blank and no action happens after that. I set the base domain for the app that facebook required for subdomains to work. Error Info: For this example [...] read more
javascript
facebook
1vote
0answers

Esri.arcgis.server exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE) in GISServerConnectionClass()

I am getting following error from my DLL when executing following statement with ArcGIS Server 10.8: IGISServerConnection conn = new GISServerConnectionClass(); Am I doing something wrong, following are some other information which may help you understand the issue: 1. I am using .NET Framework 4.6.1 2. Marked Embed Interop Type [...] read more
c#-4.0
esri
arcgis-server
arcgis-runtime-net
1vote
0answers

For WinForms applications calling FileDialog on Win10, the context menu is empty when using NoneEnabled for Application.VisualStyleState

I have this issue with a WinForms project using forms with complex controls. With a certain degree of complexity (e.g. controls number), WinForms can become very slow, this I know. So to get reasonable display performance, Application.VisualStyleState is disabled: Application.VisualStyleState = System.Windows.Forms.VisualStyles.VisualStyleState.NoneEnabled; Using the faster "Windows classic theme" makes the [...] read more
c#
wpf
winforms
windows-10
filedialog
1vote
1answer

Unable to set Vuforia frame format in deployed Version

I'm developing an AR-App using Vuforia for model target and Zxing for QR-Code scan. I've set the project up as discriped at the Vuforia Page. While i'm in Playmode everything works fine but once I build it, it's unable to set the Frame Format despite no compile errors while building. [...] read more
c#
unity3d
qr-code
zxing
vuforia
1vote
0answers

Alternative to prompt() in a Firefox WebExtension

I am porting a Chrome Extension to Firefox and there's a use case which requires generating a prompt to take input. A context menu is created, on page context a prompt should open whose result is passed onto a function. In Chrome it works fine, but in Firefox it doesn't. [...] read more
javascript
google-chrome
firefox
prompt
firefox-webextensions
1vote
1answer

C# UWP MediaPlayer crash on emulator

I'm new to UWP, and i tried instantinate MediaPlayer class. On local machine it's work fine, but on mobile emulator throws next exception: > An exception of type 'System.Runtime.InteropServices.COMException' occurred in > project.exe but was not handled in user code > > Additional information: ClassFactory cannot supply requested class (Exception [...] read more
c#
crash
uwp
1vote
1answer

How can a variable in Javascript be a function, but not be able to be called?

I am currently investigating a website, and have found a curious thing. If I find a PNACL embed element in the developer console, and evaluate it in the Chrome dev console, it logs > anonymous(), with an arrow next to it that reveals it's an ordinary HTML element. However, typeof [...] read more
javascript
google-chrome
google-nativeclient
1vote
1answer

Automation of Web based SSH CLIENT PLUGIN script running using Selenium Webdriver

I am trying to automate the following scenario: I have installed a firefox plugin named FireSSH. Now, I have already manually and able to connect my remote server using the key and related parameters. I want to achieve the automation of this manual process of connecting to the remote client [...] read more
java
selenium
ssh
selenium-webdriver
automation
1vote
2answers

When is the http-on-examine-response topic issued?

I'm trying to check for a 302 response in a Firefox addon using this rather common piece of observer code but the http-on-examine-response is almost never issued even on a page with a 302 redirect. var httpRequestObserver = { observe: function (subject, topic, data) { console.log(topic) if (topic == 'http-on-examine-response') [...] read more
firefox-addon
firefox-addon-sdk
1vote
1answer

How to use oauthorizer in Firefox addon

I am trying to use oauth2 in Firefox, and I found this module from Google: https://github.com/mozilla/oauthorizer However, I am not sure how to use it. I tried the following according to README of the project, Components.utils.import("resource://oauthorizer/modules/oauthconsumer.js"); Yet it reports error of following: > "`Components` is not available in this context.Functionality [...] read more
javascript
oauth-2.0
firefox-addon
1vote
1answer

NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMWindow.alert]

I am calling an javascript variable inside autocomplete function and and making url in ajax from textbox value but it is showing undefined. function fetchRecords() { var searchStr=$("#tags").val(); var finalLink=urlformjavascriptvariable; $.ajax({ url:finalLink, type: 'GET', dataType :'jsonp', async: false, crossDomain:true, success: function(data) { var resp = data.response; var availableTags = "["; [...] read more
jquery
1vote
1answer

HTML/JavaScript Script Injection Exception

I tried to write a bookmarklet which depends on another script. For this my bookmarklet includes a function like this: function load(url, callback) { var script = document.createElement('script'); script.type = 'text/javascript'; script.src = url; script.async = false; script.onload = callback; document.head.appendChild(script); } The callback function is called on most pages, [...] read more
javascript
firefox
exception
1vote
1answer

Firefox’s Assert.jsm

According to the MDN docs, Firefox appears to have an Assert.jsm module. Those docs say that you can use Components.utils.import("resource://testing-common/Assert.jsm"); in your extension to use it. However, when I try that I get the following error: Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXPCComponents_Utils.import]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" The docs also [...] read more
firefox
firefox-addon
1vote
0answers

Liferay AUI 2.0 modal dialog does not work in Weblogic?

I am using Lifery 6.2 and working with AUI 2.0. The following code works on tomcat bundle. However, it does not render the jsp in the popup when the portlet is deployed on Weblogic. Has anyone come across this scenario? <portlet:renderURL var="popupSample" windowState="<%=LiferayWindowState.POP_UP.toString()%>"> <portlet:param name="mvcPath" value="/viewPopup.jsp"/> </portlet:renderURL> <script type="text/javascript"> function [...] read more
java
javascript
liferay
liferay-6
liferay-aui
1vote
3answers

jQuery, JSON-P and Google Translation : Various errors

I'm currently developping a GreaseMonkey user script to provide a direct translation of some form fields inside an Intranet App. Everything goes OK until I call Google Translation API using this code : var apiurl = 'https://ajax.googleapis.com/ajax/services/language/translate?v=1.0&langpair=fr%7Cen&q='; $.getJSON(apiurl+encodeURIComponent(text)+"&callback=?",function(data){ alert('Translation Complete'); //Change text }); Here are my problems : * I'm [...] read more
jquery
jsonp
google-translate
1vote
2answers

CSharp referencing x64 OCX compiled in Delphi XE2

Im having a problem in my C# project when referencing a x64 OCX compiled in Delphi XE2. The OCX is located and registered in the system32 directory. However when I try to reference it using Visual Studio 2010 it isn't listed in the browse references window, except when I move [...] read more
c#
visual-studio-2010
delphi
reference
ocx
1vote
2answers

HTMLCanvasContext.drawImage() failing when passed an image found using jQuery

The idea of my code is create a hidden div which loads the image. When it's load event is fired draw it in the canvas. When I run the code I get this error 0x80040111 (NS_ERROR_NOT_AVAILABLE), yet I am waiting for the load event. Here is my code. HTML <div [...] read more
javascript
jquery
html
canvas
drawimage
1vote
1answer

Firefox Tab Drag Yields Javascript Alert Failure

Before we begin, the following may be a bug, and I will be submitting a bug report as such. I am wondering if anybody else has experienced this issue, and if so, has any ideas for how I can repair the problem. I have firefox open in a single window, [...] read more
javascript
firefox
alert
1vote
2answers

javascript eval statement JS Frames error

In this legacy application there is a javascript eval statement: eval(getElementText(VALUE[0])); The command that it generates is a call to another function. However, in the screen that I'm dealing with that function never gets called in Firefox. Instead FireBug generates this information: > uncaught exception: [Exception... "Component returned failure code: [...] read more
javascript
1vote
1answer

Get page size in extension for Firefox

I want to get the size of the page in my extension for Firefox. Before, I used this code: var pageSize = null, cacheService = Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService), httpCacheSession = cacheService.createSession("HTTP", 0, true), cacheEntryDescriptor; httpCacheSession.doomEntriesIfExpired = false; cacheEntryDescriptor = httpCacheSession.openCacheEntry(content.document.location.toString().replace(/#.*$/, ""), Components.interfaces.nsICache.ACCESS_READ, false); if ( cacheEntryDescriptor ) { pageSize = Math.round(cacheEntryDescriptor.dataSize / [...] read more
firefox
xpcom
1vote
1answer

System.Runtime.InteropServices.COMException error in C# implementation of FAXCOMEX LIb

Here's the problem. I wrote a Windows service in C# (Visual Studio 2012) which queries a MS SQL database and then uses FAXCOMEXLIB to send a fax. I am able to reference FAXCOMEXLIB and use the server class and fax document class. Faxes are created and sent. However when I [...] read more
c#
.net
windows
fax
1vote
1answer

onMessage event is never called

So I am working on my next add-on for Firefox, however, while reading the documentation for ContextMenus, it appears that the onMessage event is never being called, here's my code: exports.main = function(){ var addonTab = require('addon-page'); var data = require('self').data; var tabs = require('tabs'); var cm = require("context-menu"); cm.Item({ [...] read more
javascript
firefox-addon
firefox-addon-sdk
1vote
3answers

jQuery effect on iframe parent document

Just wondering if anyone else has experienced this or knows why I am getting an error. I'm using javascript from within an iframe to call a parent dom element then use jQuery UI's effect core to shake it. Here is an example: $(document).ready(function(){ if ($("form").length>0) { $("form").submit(function(){ var oParentDoc = [...] read more
javascript
jquery
iframe
parent
effect
1vote
0answers

How to add an onclick event from an iframe to its parent window in plain JS?

I'm trying to add an onclick event to a link, from inside an iframe. The link is located in the parent window of the iframe. The following code is what I'm using, but I'm getting an Exception. I'm testing on Firefox 9.0.1 function creaURL(url){ //Some code to generate the string [...] read more
javascript
iframe
javascript-events
1vote
2answers

Can set mouseover html attribute by javascript, but cannot assign function to mouseover property in Firefox

Clearly I'm doing something stupid. processTextNodes: function processTextNodes(node) { node = node || content.document.body; // base node var children = node.childNodes, i = 0; while (node = children[i]) { if (node.nodeType == 3 && node.textContent) { // text node found, replace enclosed text. if (node.nodeName == "script") continue; /*node.parentNode.setAttribute("onmouseover", "alert(\"AAA\");");*/ [...] read more
javascript
firefox
dom
1vote
4answers

ClassFactory cannot supply requested class 0x80040111 Error: -2147221231

Using Visual Studio 2008 I first encountered this when trying to open a standard save file dialog box in visual basic. So far I've worked around it after fruitless searching. Now I find that any action which would cause a save/open dialog (eg. ctrl-O) also fails. I've searched more and [...] read more
.net
com
shell-extensions
1vote
4answers

Problems using HTML Canvas & Greasemonkey not able to drawImage() on 2D context

In my Greasemonkey script, when I obtain a handle on an HTMLImageElement I want to use with an HTML Canvas, I get the following error in Firefox's Error Console (I assume it's because it's enclosed in an XPCNativeWrapper): Error: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMCanvasRenderingContext2D.drawImage] Putting GM_log() statements throughout [...] read more
javascript
firefox
html
canvas
greasemonkey
1vote
1answer

jquery rotate plugin throwing uncaught exception

I've got a problem when implementing the jquery rotate plugin. I implement it like this: var iDirection = 90; var dImg = $("<img/>") .addClass('defect-image') .attr({src: $(this).attr('IMAGE_PATH')}) .load(function(){ //do stuff if img loads without errors }) .error(function(){ $(this).attr({src: 'img/missing.jpg' }); }) .rotate( iDirection ) .appendTo( '.image-container' ); The error I'm getting [...] read more
jquery
jquery-plugins
rotation
image-manipulation
1vote
1answer

intermittent ajax failure with jquery 1.5.1, asp.net, and firefox

I am lazy loading snippets of html on our page in order to improve performance. jQuery's load method does not provide access to the full ajax api (things like error callbacks) so I created a more robust version of it. I am calling this method 3-5 times per page on [...] read more
c#
javascript
jquery
asp.net
1vote
1answer

Image Preloading in Canvas

I'm drawing an Image on the canvas using the drawImage function. This is how Im setting the src property of the image: > var img = new Image(); // Create new Image object > img.src = 'test.php?filename=myfile.jpg' and then > oCanvas.width = 600; oCanvas.height = 400; oContext.drawImage(img, 0, 0, 600, [...] read more
javascript
canvas
1vote
1answer

exception when trying to draw images throught canvas

I am trying to draw the pictures that I fetched from Flickr through canvas and this is a snippet of my codes. for(var i=0;i<document.getElementsByClassName("canvas").length;++i) { //randomly select one photo var picinfo = photos[Math.floor(Math.random()*photos.length)]; var img = new Image(); //get the pic URL img.src = "http://farm" + picinfo.farm + ".static.flickr.com/" + [...] read more
javascript
html
canvas
1vote
7answers

Has anyone ever successfully tracked down uncaught exception during ajax request?

How do ajax know whether it failed or succeeded if server side doesn't echo anything back? $.ajax(error:..,success:..) I met with this exception in my test: > uncaught exception: [Exception... "Component returned failure code: 0x80040111 > (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.statusText]" nsresult: "0x80040111 > (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: > http://localhost/script/tab.js :: anonymous :: [...] read more
php
jquery
ajax
xmlhttprequest
1vote
0answers

about jQuery timeout error process

Recently, I found some error about timeout. Please see below code. * jQuery timeout : 5000 ms * Servlet sleep : 10000 ms Client side Javascript $.ajaxSetup({ url: "http://localhost:8888/{mydomain}", timeout : 5000, error:function (xhr, textStatus, thrownError){ switch(xhr.status) { case 0 : $('#msg').append("0"); break; case 404: $('#msg').append("404 ERROR."); break; case 500: [...] read more
javascript
jquery
ajax
timeout
xmlhttprequest
1vote
1answer

Jquery-rotate working if initial element is an image, but not if canvas

http://chrishorsnell.co.uk/emblem/rotate.php I am trying to make an image rotate. The jquery rotate plugin ( code.google.com/p/jquery-rotate/ # sorry can only do 1 hyperlink ) plugin works fine, I have got it to work on an image (see example 2), but I am trying to implement it into something else and the [...] read more
jquery
canvas
rotation
1vote
1answer

form.submit() causes uncaught exception in greasemonkey

I'm using a greasemonkey script to load a page with ajax and automatically fill in the form fields inside the page and submit the form. The problem is that when the form.submit() statement is executed I get an uncaught exception error: "uncaught exception: [Exception... "Component is not available" nsresult: "0x80040111 [...] read more
forms
events
greasemonkey
submit
1vote
2answers

Launching a C# dialog from an unmanaged C++ mfc active x dll

I've been told to write a dialog in C# which must be instantiated from an unmanaged c++ dll. We do this in other places in our code by simply adding a managed c++ class to the C++ project, then calling the C# dll from the managed c++ class. However I'm [...] read more
c#
c++
activex
unmanaged
0votes
0answers

Can't install Visual Studio 2013 Update 5 or Visual Studio 2015

I trying update my VS2013 instance to Update 5 but when click on online installer don't do anything in my %temp% setup write this log: [194C:1964][2016-06-10T15:54:58]i001: Burn v3.7.3424.0, Windows v6.1 (Build 7601: Service Pack 1), path: C:\Users\Pedro\Desktop\VS2013.5.exe, cmdline: '' [194C:1964][2016-06-10T15:54:58]e000: Error 0x80040111: Failed to load manifest as XML document. [194C:1964][2016-06-10T15:54:58]e000: [...] read more
windows-7
installation
visual-studio-2013
visual-studio-2015
0votes
2answers

Unable to run Internet explorer 7 on Wine 1.2

Following the instructions from here. I installed IE7. But when I run it with Wine 1.2 with: wine iexplore.exe & I get: Explorer$ fixme:system:SetProcessDPIAware stub! fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:RegisterTraceGuidsW (0x5b9f97, 0x6f4b08, {3e1fd72a-c323-4574-9917-5ce9c936f78c}, 1, 0x32f414, (null), (null), 0x6f4b10,) fixme:advapi:RegisterTraceGuidsW (0x5b9f97, 0x6f4b28, {afff9c82-5be3-4205-9b3e-49e014c09a63}, 1, 0x32f414, (null), (null), 0x6f4b30,) fixme:advapi:RegisterTraceGuidsW (0x6cd15f38, [...] read more
wine
internet-explorer-7
ubuntu-8.04
0votes
0answers

Firefox and Chrome headless mode not working on VPS (Ubuntu 18.04 LTS) with Python/Selenium

I am trying to get Chrome running in headless mode with Python, but for some reason I only get a blank page back no matter what website I try to read. Google Chrome: v77 Chromedriver: latest version (tried older versions as well) OS: Ubuntu 18.04.3 LTS (Virtual Server) After doing [...] read more
ubuntu-18.04
firefox
google-chrome
headless
selenium
0votes
1answer

fail2ban filter for ical regex

i am trying to get a regex for an ical service on my host working without success. This is a part of the logfile: Tue Jul 23 13:55:23 2019: ical|T720] [info ] Accepted connection from [::ffff:2.3.4.5]:56450 Tue Jul 23 13:55:23 2019: [net/[::ffff:5.6|T5234] [error ] HrLogon server "http://localhost:123/" user "Admin": logon [...] read more
fail2ban
regular-expressions
0votes
0answers

UWP: Exception "ClassFactory cannot supply requested class" for some specific target machines

I have the following code that in some sporadic target machines produce the following exception: > ClassFactory cannot supply requested class (Exception from HRESULT: > 0x80040111) This is the code that produces the exception: WindowingEnvironment winEnv = WindowingEnvironment.FindAll(WindowingEnvironmentKind.Overlapped).FirstOrDefault(); if (winEnv == null) return; IReadOnlyList<DisplayRegion> regions = winEnv.GetDisplayRegions(); List<string> monitorIds = [...] read more
c#
winapi
uwp
classnotfound
0votes
1answer

App-crash on HoloLens(1st. gen)-Emulator when enabling 'Spatial Awareness System' in MRTK 2.3

i recently set up required software for development for the Microsoft HoloLens(1st. gen) with the newest version of the HoloLens(1st. gen) emulator (followed the MRTK-Guide: https://microsoft.github.io/MixedRealityToolkit-Unity/Documentation/GettingStartedWithTheMRTK.html#get-the-latest-mrtk-unity-packages). I already tested some example scenes from the MRTK on the emulator and everything works as expected. However, when i test the SpatialAwarenessMeshDemo, the [...] read more
windows
unity3d
hololens
windows-mixed-reality
hololens-emulator
0votes
1answer

How to access and run field events from extension js?

I have an extension that helps in submitting forms automatically for a process at work. We are running into a problem with dual select boxes where one option is selected and then that selection changes another field's options. Since setting an option selected property to true doesn't trigger the field's [...] read more
javascript
firefox
firefox-addon
dom-events
0votes
1answer

Can anyone shed some light on error I'm receiving when executing .net Console application. (System.Runtime.InteropServices.COMException (0x80040111)

I have a .net (framework version 4.5.1) console application that encounters the following error when it is executed: System.Runtime.InteropServices.COMException (0x80040111): Retrieving the COM class factory for component with CLSID {F374E943-076A-40B9-813E- 0FBFB823E638} failed due to the following error: 80040111 ClassFactory cannot supply requested class (Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE)). at System.RuntimeTypeHandle.CreateInstance(RuntimeType [...] read more
c#
.net
com
console-application
moveit
0votes
1answer

Adding Bank Account data to stripe not saving to API or database table

Issue: The Bank Account data in the form isn't saving to the Stripe API (Stripe::Account), possibly because it's not being correctly or successfully Stripe::Account.retrieve(current_user.stripe_token) Question: What in my code is causing the retrieve to not work or is the issue something else, such as not having webhooks correctly set up, [...] read more
javascript
ruby-on-rails
ruby
stripe-payments
0votes
1answer

extjs modern NS_ERROR_NOT_AVAILABLE on dialog show()

I am getting NS_ERROR_NOT_AVAILABLE exception on firefox 60.0.2 on dialog.show() of a custom dialog. After debugging I ended up that the exception is being produced on line 85351 of ext-modern-all-debug.js: value = computedStyle.getPropertyValue(name); where the property name is opacity and it is not available inside computedStyle. [Exception... "Component is not [...] read more
javascript
firefox
extjs
dialog
extjs6-modern
0votes
1answer

I am receiving a Component returned failure code: 0x80040111 even though the js function is defined internally

I am in need to open a pop-up message when my client clicks the link to open an internal application. The message is provided in the alert function. When the user closes the alert, I want him/ her taken to the internal application, for which the link is provided in [...] read more
javascript
html
func
0votes
1answer

Create MAPI profile for Exchange 2013 using MFCMAPI & MAPICDO

I'm posting this in the hope it may help others. We have been trying to create a MAPI email profile on a Windows 2008 R2 server to connect to Exchange 2013. Most posts and links will take you to the home page of MFCMAPI which is a great resource. We [...] read more
mapi
exchange-server-2013
0votes
0answers

COMException thrown by an OCX Control

We are porting all of our project to support 64-bit platforms. All the OCX controls are migrated to target 64-bit. However, I see this error ClassFactory cannot supply requested class (Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE)) when I use an AxInterop for the OCX control and invoke EndInit() on it in [...] read more
c#
com
ocx
0votes
0answers

org.openqa.selenium.WebDriverException: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)"

@Test public void Workflowstatus() throws Exception { guitils.loginToPortal(userName1, password1, driver); guitils.LightiningView(driver); driver.findElement(By.linkText("ICIX")).click(); Thread.sleep(3000); // TP Group 1 TPO.create_tpGroup(driver, Group); Thread.sleep(8000); driver.findElement(By.linkText(Group)).click(); Thread.sleep(8000); // set requirements 1 driver.findElement(By.linkText("Set Requirements")).click(); Thread.sleep(3000); driver.switchTo().frame(driver.findElement(By.id("vfFrameId"))); Thread.sleep(3000); } https [https://i.stack.imgur.com/bz4Gr.png] I m getting mention error while its cliking on the "group" link as mentioned in code. [...] read more
testing
selenium-webdriver
automation
0votes
0answers

MAPILogonEx 80040111 from WCF application

I am trying to use the MAPI libraries from a WCF service application under the LocalService identity, but keep on getting the 0x80040111 MAPI_E_LOGON_FAILED error. As suggested by https://support.microsoft.com/en-us/kb/181739, I have enabled Log on locally for the given user. Do you know where could this be coming from? read more
wcf
mapi
0votes
4answers

Firefox does not find Flash Player Plugin on Centos / Linux

In our production environment we are installing a Web-based product. The Operating System is Centos 6.5. For this product, we have installed Firefox-33 and Flash Player 11.2.202.406-release.x86_64. The problem is that Firefox starts, but it does not detect Flash Player Plugin. The following error message is reported when we run [...] read more
linux
flash
firefox
0votes
1answer

Error when connecting to Exchange on other domain

After connecting to Exchange on a different domain using: rdoSession = RedemptionLoader.new_RDOSession(); rdoSession.LogonHostedExchangeMailbox(Settings.Default.ExchangeServer, Settings.Default.ExchangeUserName, Settings.Default.ExchangePassword); I want to get the default inbox folder: RDOFolder folder = rdoSession.GetDefaultFolder(rdoDefaultFolders.olFolderInbox); But I get this error: System.Runtime.InteropServices.COMException (0x80040111): Error in IMAPISession::OpenMsgStore: MAPI_E_LOGON_FAILED Make sure your code runs under the Windows user identity that has [...] read more
c#
exchange-server
outlook-redemption
0votes
1answer

Using Ajax.begin form in MVC application

I am working on MVC framework and posting my form by Ajax.BeginForm. No Doubt everything works very well but I have applied a ajax loader/Processing that starts work OnBegin and stops on this event OnComplete. So, when this function works after getting success from server::: function MessageConfirmation(Json) { if ($("#Id").val() [...] read more
javascript
jquery
json
asp.net-mvc-3
asp.net-mvc-4
0votes
1answer

NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMCanvasRenderingContext2D.drawImage]

I used the following code to save the div content as imgae: function saveDiv() { var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d"); var mydiv = $(".mydivclass").html(); var data = "data:image/svg+xml," + "<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'>" + "<foreignObject width='100%' height='100%'>" + mydiv + "</foreignObject>" + "</svg>"; var img = new [...] read more
jquery
image
html
canvas
0votes
1answer

How to give each element of a JavaScript array a different 'type'?

I have a JavaScript array which contains a number of images. The images have all been taken from a hidden section in my HTML using lines such as sources[0] = document.getElementById("building").src The reason I am getting the images from the HTML rather than directly from the source is because I [...] read more
javascript
arrays
associative-array
0votes
1answer

Trying to reopen closed popup window

I can't understand what is the reason that makes these 2 scripts written in javascript behave in different ways. Script 1 var w; function f1() { w = window.open("pg1.html","wind","left=0,top=0,width=480,height=480"); } function f2() { w.close(); } function f3() { w.open("pg1.html","wind","left=0,top=0,width=480,height=480"); } Script 2 function f() { var w = window.open("pg1.html","wind","left=0,top=0,width=480,height=480"); w.close(); [...] read more
javascript
popup
window.open
0votes
2answers

Using a JS function to add images from hidden section in HTML to JS array, and drawing all elements from array onto canvas

I have the following function, which I'm using to load images from the hidden section in my HTML into a JavaScript array: window.onload = function(){ console.log("src " + document.getElementById("building").src); var sources = {}; sources[0] = document.getElementById("building").src, sources[1] = document.getElementById("chair").src, //sources[2] = document.getElementById("drink").src loadImages(sources, drawImage); }; Once the images have been [...] read more
javascript
html5-canvas
kineticjs
0votes
1answer

Image on local disk is not loading in Tomcat project configuration

I am working on a project using HTML5 and JavaScript. I am loading an image from the C: drive like this: window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); var imageObj = new Image(); imageObj.onload = function() { context.drawImage(imageObj, 69, 50); }; imageObj.src = "file:///C:/Images/Demo.jpg"; }; [...] read more
javascript
html
tomcat
canvas
0votes
1answer

Unable to use window.setTimeout in Ajax Truclient

I want to run a function in TruClient (Firefox) every 0.1 seconds using window.setTimeout: function foobar(delay_accumulator){ if(delay_accumulator >= 100)//10 seconds return; //do something window.setTimeout(function() { foobar(delay_accumulator+1); }, 100); } foobar(0); However, the step fails, giving the following error: > ** 2: Evaluate JavaScript code function foobar(delay_accumula...OBAR"); > foobar(0); ** failed [...] read more
javascript
firefox-addon
xpcom
firefox3.6
loadrunner
0votes
1answer

Facebook integration with javascript FB Graph api Post on wall Unknown error in firefox

I am posting on the user`s wall using the FB Graph api my function to post on wall is as follow: function PostToWall() { var mymessage = 'my message'; var mypic = 'http://myapp/a.jpg'; var mylink = 'http://www.myapp.com'; var myname = 'myApp'; var mydesc = 'my desc .'; FB.api('/me/feed', 'post', { [...] read more
javascript
windows
firefox
facebook-graph-api
jakarta-ee
0votes
1answer

Javascript Error when updating client using AJAX call

I am trying to model a chat application on a browser(Firefox).Here I am trying to send the char inserted into a text area on one machine to another client and update its text area. I am trying to send the key pressed on the client using AJAX calls. Below is [...] read more
javascript
ajax
xmlhttprequest
0votes
3answers

Greasemonkey error when attempting click() event

I'm trying to click a button on a page and I can get the length of the object no problem but when I try to click the item I get this error: Error: uncaught exception: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://greasemonkey/runScript.js :: <TOP_LEVEL> [...] read more
jquery
greasemonkey
0votes
2answers

Component returned failure code error 0x80040111 with JQuery Ajax Zend

I have a page has an anchor href to the home page and calls ajax on a user request. If I open the page and click on the link to go to the home page it returns to the home page without error, but if I make the page call [...] read more
jquery
ajax
0votes
2answers

Firefox and onscroll failing from greasemonkey

I've noticed that a greasemonkey script I wrote a while back is no longer working, maybe due to me using Firefox 4 now (although I don't have an earlier version of Firefox on hand with which I could verify this theory). It does the following: myelm.addEventListener('scroll', fonscroll, false); This used [...] read more
javascript
events
firefox
dom
greasemonkey
0votes
1answer

Ajax with JQuery on the Django Dev Server

I am putting together an Ajax request with JQuery (1.5) on a Django (1.2.5) site. I am working on the Dev Server currently because I plan on doing demonstrations before a full production roll out. The javascript code in the template: function postTest() { $.post("/get_elections", { csrfmiddlewaretoken: $('input[name=csrfmiddlewaretoken]').val() }, alertResult); [...] read more
javascript
python
ajax
django
0votes
3answers

SetThemeAppProperties disables COM Common Dialogs

Calling SetThemeAppProperties with argument which has flag STAP_ALLOW_CONTROLS unset causes CoCreateInstance for Common Dialogs (or at list File Open Dialog, CLSID_FileOpenDialog) to return error 0x80040111. Sample code is following: HRESULT hResult; CComPtr< IFileOpenDialog > pFileOpenInterface1; CComPtr< IFileOpenDialog > pFileOpenInterface2; hResult = ::CoCreateInstance( CLSID_FileOpenDialog, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS( &pFileOpenInterface1 ) ); ::SetThemeAppProperties( [...] read more
winapi
com
fileopendialog
common-dialog
windows-themes
0votes
2answers

Jquery Menu State

Here's what I'm trying to do... It's quite simple and obviously there must be something wrong in what I'm doing but I can't see it, hope you can help me... I have a Vertical Jquery Menu (using accordions) that I want to remember its state. So, I have this code [...] read more
ajax
jquery
asp.net-ajax
0votes
2answers

Creating a XUL button gives "component failure code"

I'm one of the developers of TryAgain, a Firefox add-on, that displays a custom error page when a website fails to load. It essentially replaces Firefox's netError.xhtml with a customized version. In order to execute JavaScript from the extension code within the netError.xhtml, I've added a XUL <command> element to [...] read more
javascript
firefox
firefox-addon
xul
0votes
2answers

When is ieaksie.dll registered as InProcServer32 for InternetExplorer.Application?

One of my guys had a problem when instantiating InternetExplorer.Application from VB6 and VBScript. It turned out that he (but no one else on the team) had the following entry in the registry apart from the expected (and working) LocalServer32 entry which creates an instance out-of-process using iexplore.exe: [HKEY_CLASSES_ROOT\CLSID{0002DF01-0000-0000-C000-000000000046}\InProcServer32] @="C:\WINDOWS\system32\ieaksie.dll" [...] read more
internet-explorer
com
vbscript
registry
0votes
2answers

javascript / canvas5 error from simple code

Error: uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMCanvasRenderingContext2D.drawImage]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: http://127.0.11.1/test/canvas5_b.php :: setup :: line 27" data: no] function setup() { var e = document.getElementById("mycanvas"); var ctx = e.getContext('2d'); var meter = new Image(); meter.src = "meter.jpg"; var meter_bar = new Image(); [...] read more
javascript
html
0votes
1answer

gwt error :component not available

anyone know what is error triggered from in gwt? [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///Applications/Firefox.app/Contents/MacOS/components/nsSessionStore.js :: sss_saveState :: line 1909" data: no] getLabels()(Object t=Object name=iw, Object, "http://gg.google.com/csi")NmZDK%2B...oNg%3D%3D (line 1) Lz("iw", [["iwo0", 0 0=iwo0 1=0], ["oss0", 3141 0=oss0 1=3141], ["oss1", 3910 0=oss1 1=3910], 1 [...] read more
gwt
0votes
1answer

this error is getting when i am trying to load light box in my page?

link text Hi, uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.statusText]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: http://boxyourtvtrial.com/cakephp-hDemo/js/ajax.js :: anonymous :: line 156" data: no] please help.... thanks read more
javascript
jquery
ajax
cakephp
0votes
1answer

Problem with handling exception when sending data by ajax with jQuery

i got following part of one of functions if(continiueSend) { $.ajax ({ type: "POST", url: "mailer.php", data: "somestestdata", timeout: 5000, success: function(a) { alert(a); }, error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status); alert(thrownError); } }); } And it works great when server is ok, requested data are sent in less [...] read more
jquery
ajax
exception
exception-handling
timeout
-1votes
2answers

Refresh the page once using JavaScript?

Can anyone help me with the script to refresh the page once . I am already using window.history.forward(1); but it gives me a wierd exception in the console . `Error: uncaught exception: [Exception... "prompt aborted by user" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource:///components/nsPrompter.js :: openTabPrompt :: line 457" [...] read more
java
javascript
-1votes
1answer

Uncaught Exception in my jquery script

This is my code, am getting some error, Error: uncaught exception: [Exception... "prompt aborted by user" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://gre/components/nsPrompter.js :: openTabPrompt :: line 468" data: no] <%@ Page Language="C#" AutoEventWireup="true" CodeFile="loginform.aspx.cs" Inherits="loginform" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> [...] read more
javascript
jquery
asp.net
asp.net-ajax
-1votes
1answer

Mozilla Extension error

I'm getting this error Timestamp: 4/2/12 11:56:36 AM Error: uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMWindow.localStorage]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: chrome://myextension/content/users.js :: startFBP :: line 6" data: no] My files: chrome.manifest content myextension chrome/content/ content myextension chrome/content/ contentaccessible=yes overlay chrome://browser/content/browser.xul chrome://myextension/content/tracker.xul install.rdf <?xml version="1.0" [...] read more
xml
firefox
firefox-addon
xul
-1votes
1answer

javascript error in jssh in firefox 4.0b1

Using this javascript through jssh compiled and built for the new firefox 4.0 beta 1 returns an odd message. Here is the code (sorry if it's a little messy) In summary the code checks all frames of a firefox window which is a test page of our unit tests for [...] read more
javascript
firefox
javascript-events
nserror
jssh
-3votes
1answer

MSXML ClassFactory cannot supply requested class Error

I'm having an issue trying to call a web service from stored procedure. sp_OACreate 'Msxml2.ServerXMLHTTP' The error code is 0x80040111 - ClassFactory cannot supply requested class The source returned when I run sp_OAGetErrorInfo is msxml3.dll I found msxml3.dll in \Windows\System32\ I have tried to register this dll using regsvr32.exe with [...] read more
c#
sql
xml
web-services

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0