Friday, April 25, 2014

iconv.dll the specified module could not be found

iconv.dll the specified module could not be found
To solve this issue :
       gpg error loading iconv.dll' the specified module could not be found

download iconv.dll from the link below and follow the instructions:
http://www.gnupg.org/download/iconv.html


Thursday, April 24, 2014

Remote Desktop Access problem due to license

If you have problem to access a remote desktop and get error messages that you have to contact system administrator to get license etc. The following steps can solve your access problem:
  • Run the following command in start command box
          regedit
  • Inside Regedit, navigate to the following key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSLicensing
  • Right click on the key name “MSLicensing” and select DELETE.


Example of CSS-based waiting indicator, an example

Example of CSS-based waiting indicator with Angular JS

In your HTML-file:
<div class="overlay" ng-class="{'ng-hide' : !isVisible }">
                <img ng-show="image"  ng-class="{'ng-hide' : !isVisible , 'myloading' : isVisible }" src="/images/loadingindicator.gif" alt="Spinner">
            </div>

CSS:
.myloading {
    opacity:0.5;
    background-color:#ccc;
    position:fixed;
    top:0px;
    left:0px;
    z-index:1000;
    border: 0px solid;
    margin: auto;
    right: 0;
    bottom: 0;
}

.overlay{
    opacity:0.8;
    background-color:#ccc;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:1000;
}

Use Broadcast/on concept in Angular to share data between Controllers, something like below:

$scope.$on('globalalertWaitMessages', function(event) {
           $scope.isVisible = true;
      });