Friday, March 14, 2014

jquery autocomplete IE display problem

JQuery Combobox in autocomplete example (http://jqueryui.com/autocomplete/#combobox) is not working properly in some IE versions. A way to solve this problem is to disable this widget. To do this add the following lines before the widget :


function detectIE() {
    var ua = window.navigator.userAgent;
    var msie = ua.indexOf('MSIE ');
    var trident = ua.indexOf('Trident/');

    if (msie > 0) {
        // IE 10 or older => return version number
        return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);
    }

    if (trident > 0) {
        // IE 11 (or newer) => return version number
        var rv = ua.indexOf('rv:');
        return parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);
    }

    // other browser
    return false;
}


(function($) {
    if (detectIE()>6 || detectIE()==false { $.widget("ui.combobox", { ..... }); 
})(jQuery);

Thursday, March 13, 2014

The eXpandable IMAge PROcessing project

The X-Imapro project was started back in 2001 as a simple image processing program during university classes to support user's image processing routines using dlls under the same shell without re-compilation of the source code. 
Ximapro is a "shell" application that loads pictures and displays them in a Multi-Document interface (MFC). The image processing tools (filters) are plug-ins, in a form of DLLs, created individually by users. Ximapro is a suitable tool for students who want to create their own filters in C/C++ and test them without spending time to create an image reading/ saving and displaying application. Ximapro gives you this ability to easily write speed C/C++ filters, saves your time, giving you the opportunity to focus on your filter design.

Some screenshots:



Ximapro is running under Windows.


to be continued...