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." );
});
My Journey from Developer to …….?
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." );
});
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, solution is:
Solution 1: