ERRO na pagina.

Estou recebendo notificando; Da of ERRO na pagina Web no no IE8.

Hello

See this page to select your language:

http://support.Microsoft.com/common/international.aspx

====================================

Or sorry that it is area English.

Left click at the bottom of the Microsoft Community page

English and set your language.

I hope this helps.

Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

Tags: Windows

Similar Questions

  • Program Network Rede Funcionamento em Rede Internet Web site Site Web Web Site URL

    Custumo iniciar o PC on line com o Internet Explorer, I can not, I have as usar outro browser agora, an Informação such erro of pagina. O that devo fazer?

    Hello

    Microsoft answers site provides support in English. The following URL Uniform Resource Locator () will ensure that you receive support appropriate for your location information. Open the link and select your region from the drop-down list, and then click the arrow to continue.

    Microsoft support:
    http://support.Microsoft.com/common/international.aspx

  • creating cloud erro 201

    Estou com problemas para instalar a creative cloud atualizacao me o erro 201 appears. Find o erro AO na pagina of suporte nao I found a Solução do mesmo, fazer that nao sei o, uma vez EU pago pelo Serviço.

    Error download or update Adobe Creative Cloud applications

  • Add pagination to the top of the screen messages page - new and improved

    I have a phase beta Javascript that puts a third set of pagination and icons located at the top right of the screen CSA post web page information.

    Here is the web page with my improvement Linc Davis is not nearly enough recognition :

    If it was not easy for me to code, it must not be easy for you to install.

    Installation:

    (1) install GreaseMonkey in Firefox. GreaseMonkey does not work in other browsers like Chrome, but I have not tried.

    How to install improved pagination

    (2) add the javascript code of

    http://pastebin.com/raw/9MBCkakf

    R

    PS. Hiroto has a solution too: Hiroto, javascript fix for CSA.

    Hello

    Here's my javascript which now includes the cloning of pagination in header. The pagination_in_header() of service as well as the relevant rules of style injected by CSSStyleSheet.insertRule () does the job. You can adjust the positioning of the cloned by CSSRule element defined in javascript.

    FC.

    Document Object Model (DOM) level 2 Style specification

    https://www.w3.org/TR/DOM-level-2-style/

    // ==UserScript==
    // @name            ASC thread content view (d2)
    // @namespace       bubo-bubo/gmscripts
    // @description     ASC - disable jquery animation, initially show all replies, hide rollup solved answer in page 2 or later, clone pagination navigator in header.
    // @grant           unsafeWindow
    // @run-at          document-end
    // @include         https://discussions.apple.com/*
    // @include         https://discussionsjapan.apple.com/*
    // @include         https://discussionskorea.apple.com/*
    // @include         https://discussionschinese.apple.com/*
    // @include         https://communities.apple.com/*
    // @version         0.2.1
    // ==/UserScript==
    
    var _debug = 0;
    var $ = unsafeWindow.jQuery;
    var watchdog1, watchdog2, watchdog3;
    var watch_interval          = 300; // [ms]
    var re_thread               = new RegExp('^https://[^/]+/thread/');
    var re_thread_or_message    = new RegExp('^https://[^/]+/(thread|message)/');
    
    // disable jquery animation (globally)
    $.fx.off = true;
    
    // supplementary styles for pagination nagivator cloned in header (.thread-container-wrapper)
    // pagination navigator
    document.styleSheets[0].insertRule(
    '.thread-container-wrapper .j-pagination.top {\
        position: absolute !important;\
        top: -10px !important;\
        right: 0px !important;\
    }', 0);
    // loading gear icon
    document.styleSheets[0].insertRule(
    '.thread-container-wrapper .j-loading-big {\
        position: absolute;\
        top: -6px;\
        left: 0;\
        margin-left: -60px;\
        z-index: -1;\
    }', 0);
    
    // modify thread content view behaviour (in post-load phase)
    window.onload = function() {
        // register event listeners
        window.addEventListener('unload', function(e) {
            if (_debug) console.log('unload is observed');
            stop_watchdog(watchdog1);
            stop_watchdog(watchdog2);
            stop_watchdog(watchdog3);
            window.removeEventListener('_locationchange', _locationchange_handler, true);
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        window.addEventListener('_locationchange', _locationchange_handler, true);
        function _locationchange_handler(e) {
            if (_debug) console.log('_locationchange is observed');
            var href = window.location.href;
            if ( href.match(re_thread) ) {
                setTimeout(show_all_replies, 100);
            }
            if ( href.match(re_thread_or_message) ) {
                setTimeout(hide_solved_p2, 100);
                setTimeout(pagination_in_header, 100);
            }
        }
    
        // _locationchange watch dog
        var prev_href = '';
        watchdog1 = setInterval( function() {
            // watch for location to change
            var curr_href = window.location.href;
            if (curr_href != prev_href) {
                if (_debug) console.log('_locationchange is issued');
                window.dispatchEvent(new Event('_locationchange'));
                prev_href = curr_href;
            }
        }, watch_interval);
    };
    
    function show_all_replies() {
        window.addEventListener('_helpfuldisplay', function(e) {
            if (_debug) console.log('_helpfuldisplay is observed');
            $('.helpful-all-switch li.helpful').addClass('inactive').removeClass('active').hide();
            $('.helpful-all-switch li.all-replies').addClass('active').removeClass('inactive').show();
            $('#helpful-container').hide();
            $('.all-replies-container').show();
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        watchdog2 = setInterval( function() {
            // watch for helpful container to appear
            if (_debug) console.log('watchdog (for helpful container) is active : ' + watchdog2);
            if ($('#helpful-container').css('display') != 'none') {
                if (_debug) console.log('_helpfuldisplay is issued');
                window.dispatchEvent(new Event('_helpfuldisplay'));
                stop_watchdog(watchdog2);
            }
        }, watch_interval);
        setTimeout(stop_watchdog, 3000, watchdog2);
    }
    
    function hide_solved_p2() {
        var u = window.location.href;
        var re = /[?&]start=([0-9]+)/;
        var m = re.exec(u);
        var p = m ? m[1] : 0;
        if (_debug) console.log('current start post numebr = ' + p);
        var div = $('.j-answer-rollup.recommended-answers.span-full-width');
        if (!div) { return; }
        p > 0 ? div.hide() : div.show();
    }
    
    function pagination_in_header() {
        window.addEventListener('_pagereday', function(e) {
            if (_debug) console.log('_pagereday is observed');
            var pg = $('.all-replies-container .j-pagination.top');
            if (pg) {
                $('.thread-container-wrapper .j-pagination.top').remove();
                pg.clone(true).appendTo($('.thread-container-wrapper'));
            }
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        watchdog3 = setInterval( function() {
            // watch for reply container opacity to be 1 (which is .5 while loading)
            if (_debug) console.log('watchdog (for page ready) is active : ' + watchdog3);
            if ($('.all-replies-container').css('opacity') == 1) {
                if (_debug) console.log('_pagereday is issued');
                window.dispatchEvent(new Event('_pagereday'));
                stop_watchdog(watchdog3);
            }
        }, watch_interval);
    //  setTimeout(stop_watchdog, 5000, watchdog3);
    }
    
    function stop_watchdog(dog) {
        clearInterval(dog);
        if (_debug) console.log('watchdog is inactive : ' + dog);
    }
    

    Tested with Greasemonkey 3.9 and Firefox 45.3.0esr OS X 10.6.8.

    All the best,

    Hiroto

  • Is received message 'repair window erroes' reliable?

    I received this message with an address of firefox that says 'erroes window repair' and 2 updates available. Big flashing messages. But I update every day so is it reliable or a scam?

    I think it is a scam, because it comes with the contest to enter.
    Please tell us what to do. If it's a scam, how to prevent that from happening.

    I use microsoft security and malawarebytes Anti Malware free
    Is there something more, what I should do because I regularly get rid of 1000 sites detected on malaware?

    From your description, it seems that your computer is infected with a virus. I recommend trying Norton Power Eraser. If the link (below) does not work, use your favorite Internet search engine and type Norton Power Eraser in the search field.

    https://security.Symantec.com/nbrt/NPE.aspx?lcid=1033

  • del um erro ao preparar a delivery. tent executar este aplicativo again ajuda

    Alguem pode me help osx El capitan da esse erro na reisntalacao nao tenho cd e dvd pen pilot apple nem nen but sotenho esse mac than estou com problemas me help please

    Google translate:

    Can someone help me x el capitan of this error in reisntalacao I have no cd or dvd nen apple pilot pen and more sotenho the mac I'm in trouble please help me.

    What error are your get? Something may have gotten lost in translation.

  • Pagina Niet mijn PC geeft delen op internet case correct weer.

    Pagina Niet mijn PC geeft delen op internet case correct weer. Is invulvelden verschijnen niet in beeld. Teksten zijn vaak in die velden notice: "John code in" dubbel en ongelijk paper onduidelijk. Ontbreken ze Hotel soms. Het is

    bijna onmogelijk om zo'n veld te vinden of in te vullen. Soms ontbreken ook kaders rondom een tekst, die ik op mijn andere PC wel zie. Ik heb Firefox al eens opnieuw geinstalleerd maar zonder succes. Kunt U me helpen?
    Met vriendelijke groet, Jean-Pierre Knoors. [email protected]
    

    You are welcome

  • Pavilion v062br: Erro 0xEFFFF08 na recoveracao using DVD

    APOs atualizacao do win8 para o win10 o portable apos entrar em nao ensures retornar but so desligando/ligando.

    O processo recovering apos ler o quinto DVD (95% pronto) Grill has seguinte mensagem erro "O HP Recvery Manager falhou.» Erro code = 0xEFFFFF08", reiniciando Máquina, e o sysprep starts entered em loop reiniciando again.

    Bootei a m´´aquina com um CD e utilitario particao faith WINRE sobreposta no recovery, o tests of HD nao apontou nenhum erro.

    O computer laptop e novo, excellent one to two weeks, or seja, esta cerca na garantia.

    Hi kevin-t,.

    As the browser pages were in Portuguese I tought was in local support.

    I get error 0xEFFFF08 on recovery offline when you read the fifth DVD.

    In any case I had a discussion with my local HP support... it seems that there is something wrong with my backup... and they will be shipping the media (s) for recovery.

    Thank you.

    José special

  • When I start firefox browser display a erroe message containing the text "point_except_handler4_common of procedure not found entry into the dynamic link library msvcrt.dll" I use windows XP

    when I start firefox browser an erroe message appear that contain this text "the procedure entry point_except_handler4_common could not be located in the dynamic link library msvcrt.dll" I am using windows XP  in English
    

    This has happened

    Each time Firefox opened

    Is start mozila firefox

    This problem may be caused by a problem with the file c:\windows\system32\dwmapi.dll
    The dwmapi.dll file is a Vista file and must be present in Windows XP.

    See also [tiki - view_forum_thread.php? idforum = 1 & comments_parentId = 417674]

  • is freezer una pagina y no hay manera quitarla

    Buscando en google una pagina al ponerse in the pantalla is freezer, me salio abajo her barra donde dice if quiero salvar, correr o bajar y esta an amarillo pero no nada works, puedo entrar Internet y computadora intensification in todo: correo, facebook, youtub, todo, y quito todo pantalla pero esa pagina no quita is , apague the computadora y volvi a prender y vuelve a dirty, alguien me can help

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • "Cuando trato open administrator of dispositvos sell me a message to cancel the fantastic of the pagina ' means that?

    Open Trato 'Dispositvos administrator' is me sale el message "to cancel the fantastic of the pagina.»

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How can fix erros and impruve the speed of your pc in compiuter

    Erros PC and impruve speed up the pc compiuter or clen

    Maybe this article will help you.

    http://support.Microsoft.com/mats/ie_performance_and_safety/en-us

  • Ler o erro occurred "este computador não pode ligar a um grupo doméstico.

    OLA,
    Ler o erro occurred "este computador não pode ligar a um grupo doméstico '... JA I tried a 'fix - it' available correccao pela Microsoft mas nao resultou. Agradea§o contact us. OBG. A. Pinheiro (Portugal)

    Unfortunately, this Windows Internet Explorer community is able to provide support in English only.

    Please, ask for help in the Microsoft answers Forums português (Brasil)

    Then...


    Thank you & good luck.

  • If you print a document from an e-mail, why is the document different on another computer? The pagination is different, and my boss thought that I modified the document?

    If you print a document from an e-mail, why is the document different on another computer?  The pagination is different, and my boss thought that I modified the document?  I have not change the document - I just printed it e-mail, he says than the version printed on different is his version on his computer - and I have nothing but print it.

    Could answer you my question today?

    Thank you

    Hi MBS_PITT,

    The print can be different depending on the print settings and the settings of the computer on the other computer. If you want the same settings, then you should change the settings accordingly before you take the print out.

    For more information, you can consult the following article:

    Print a document or file

    Hope this information is useful.

  • update of ERRO

    O day appears automático, mas o sistema não instala, apontando o erro "WindowsUpdate_09370001" "WindowsUpdate_dt000", meu tem laptop Windows 7. Alguem sabe o than devo fazer?

    Unfortunately, this community is able to provide support in English only. The following URL will help ensure that you receive support appropriate for your location information. Select your region from the drop-down list, and then click the arrow button.

    http://support.Microsoft.com/common/international.aspx

    Have a great day and thank you for your visit.

    Jason H. Engineer Support of Microsoft answers visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for