Month: August 2017
-
How to detect all ajax request complete on the page?
Sometimes we do need an operation after the page fully loaded. This we can check with $ajaxStop() handler of the jquery. $( document ).ajaxStop(function() { $( “.message” ).text( “Page load complete.” ); });
-
How to fix CLSID {00024500-0000-0000-C000-000000000046} error when using excel component in background code?
We have a windows Service application which uses Excel Application Object. It used to work on some machines but not all, the error which I am getting is: Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005. After some struggling I found a solution and it works,…