ActiveX in MAS

Hello, I have already solved the as to make a control ActiveX and to insert it in a Tile... my problem is now that I am not able to return the content of a property Get from the control to Tile. Does somebody know like he/she could make it?
Thank you.

Didn't like your answer in the [other thread?|http://forums.sun.com/thread.jspa?messageID=2023915]
Ignore the fact that you are working in JSP, and ask Google how to include ActiveX in a web page. Then do the same thing in the JSP.

Similar Messages

  • How...  ActiveX in MAS?

    Hi, I wanted to know since I can use a control activeX in MAS, the examples with BlueBox of the course 310 or 320 are not at all clear.

    why do you need an active/X for this?
    Can't you just create 2 default blocks on dept and on emp.
    Use the relationship wizard to define the relation. and set the number of records displayed for the emp block to 10?
    This will give you all you need with no hussle.

  • Excel Get ActiveX References​.vi and closing references -- grrr

    I'm new to ActiveX stuff, but eager to learn! 
    The "grrr" in my Subject line is a reference to how I feel about LabVIEW's documentation from time to time.  I'm a dinosaur who came from text-based programming, and did a fair amount of C coding, so sometimes with LabVIEW I'm left with this awful feeling in the pit of my stomach like, "Good grief!  How much memory must LabVIEW be hogging up in the background when I use this vi?" or "What happens to those variables (wires) in that subVI when it completes but doesn't close?  What are their statuses when I come back in the next time?" or "What if I put a lot of elements into that array the first time and then started from element zero the second time and just put in a few?  What has happened with the memroy that was allocated when there were a lot of elements?"
    Today I'm stewing about this "Excel Get ActiveX References.vi," and what happens to the "ActiveX references" it generates each time I call the subVI in which "Excel Get ActiveX References.vi" lives.  I think that at least one of the "ActiveX references" it generates when I call it is of the type Excel._Application.  Then there appears to be an Excel._Workbook, and others.  You see, I've used "Excel Easy Report.vi" to put some data into an Excel spreadsheet, and I want to tell Excel to do a "Save" on the open spreadsheet.  I think ActiveX is the (a) right way to do that, so I'm wading into the ActiveX fray...  But this "Excel Get ActiveX References.vi" says in its help file, "Do not close ActiveX references opened with the Excel Get ActiveX References VI. References must remain open until the report is closed. Otherwise the error 3001 will occur."  Well, these Excel workbooks that get created by my VI could well stay open until after my LabVIEW VI terminates!
    So (finally), here are some of my quesitons:
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existance.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    Well, thanks for reading my novel.  I don't know what can be done with LabVIEW documentation to make it more satisfying to folks like me, but perhaps someone can weigh in on all my ActiveX questions here.
    Thank you in advance,
    Steve Brady
    Solved!
    Go to Solution.

    You need to close EVERY ActiveX reference you open.  If you don't you'll end up with some Excel processes running even after LabVIEW exits.  You can see them in Task Manager.
    I, personally, don't like the LabVIEW Report Generation Tool Kit for working with Excel.  I don't think it's flexible enough.  I have a growing library of VIs that I've written that open, manipulate, and close Excel.  Some references I pass from VI to VI and some I close right after I use them.  It all depends on what I'm doing.  If I want to enter read or write data from/to a certain range I'll get the range reference, read or write the data, then close it right away because I have no use for it any more.  On the other hand, when I open Excel or a Workbook I keep the reference until I'm done, which could be later in the program.
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existence.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    1)  No, LabVIEW will NOT close those references.  You need to make sure that happens.
    2)  You can save the references in a functional global or use a class but if you're not going to save them close them as soon as you're done with them.
    3)  Your user should not be able to close your LabVIEW application without it going through the shutdown routine you've created for your program.  The ABORT button should never be exposed to the user and you should capture and discard the panel close event so your program ALWAYS shuts down is an orderly fashion.  If you don't you will have fragments of Excel hanging around in your operating system and will have to kill those processes using Task Manager.  That should only be a problem during development, not once deployed.
    I used to program in C and Assembly many moons ago.  You should have seen my first LabVIEW code.  I go back and look at it just so I can see how far I've come in the last 12 years.  I feel your pain.
    Kelly Bersch
    Certified LabVIEW Developer
    Kudos are always welcome

  • How to disable IE Security Warning on opening a "local" visio file with Visio Viewer ActiveX?

    Hello all,
    Everyone knows that Microsoft released ActiveX based Visio Viewer for free and allow the users to open Visio drawing and view/print via IE browser.
    The problem that I am facing is that some users are complaining about IE browser's security warning on "active content to run in files on My Computer".
    It means that opening .VSD files from the network, internet, intranet would be all OK but if the user wants to open .VSD files from the local hard drive (or open it as a mail attachment, which will extract it to a temp folder), it prompt the user to select "Allow Blocked Content" EVERYTIME they open them.
    I know that I can GLOBALLY disable this warning by going through Tools - Internet Options - Security section and enable "Allow active content to run in files on My Computer" but I hope that there is a way (or workaround) to allow them by file type or location, etc.
    Questions:
    1. Is there any way to disable those warning for all .VSD only while we still UNCHECK the option on Internet Options?
    2. Is there any 3rd party Win32 based viewer which wouldn't have those restriction?
    3. Is it safe assumption that McAfee VirusScan and Host IPS protection is sufficient enough to remove the IE's security warning feature?
    Thanks in advance?
    Young-

    Are you able to host/launch the VSD file via an HTM page? In that case you can format the HTM page as shown below. This will trick IE into thinking it is loading the file off of a website. Commonly called 'mark of the web'.
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html>
    </html>

  • Matlab and ActiveX performanc​e

    I am playing around with using Labview as an ActiveX server with
    Matlab.  The anticipated application is to run instrument control
    in Labview
    and then use ActiveX to transfer data over to Matlab for more processing.
    The data transfer speed is surprisingly slow.  Over a 100 Mbit
    network, two PCs can move a large double-precision 2D array at 6
    Mbyte/sec.  When both Labview and Matlab are on the same PC (1.4
    GHz P4) , the transfer rate is only ~10 Mbyte/sec. 
    The Matlab code looks something like this:
        LV = actxserver('Labview.Application') ;
        vi = invoke(LV,'GetVIReference','c:\test.vi') ;
        vi.Run ;
        % now transfer the data from Labview to Matlab
        array = vi.GetControlValue('Output Array') ;
    I am using tic/toc to time that last line of Matlab code.  Am I
    doing something wrong or inefficient here, or is this just the way
    ActiveX is?

    Hello pcyservice
    There is NOT a way to downgrade/roll-back/revert to a previous firmware without wiping all data.  This is specifically mentioned on the firmware update page:
    " CAUTION!
    This update is not data destructive, however, ALWAYS back up your data before performing any firmware update!
    Once you have updated the firmware, you will NOT be able to revert to an older firmware version."
    I recommend you disable any unnecessary features/protocols such as Media Server and Active Folders, then reboot the unit.
    If you are still experiencing performance issues, please contact LenovoEMC support to troubleshoot further.
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • Need help trying to create a ActiveX registered event

    I am trying to create a register event for an ActiveX component. The problem I am having is creating the callback vi. When I right click on the VI ref and create the callback vi it is created with the user parameter as a variant. I would like this to be a control refnum. If I open the callback vi and replace the user parameter variant with a control refnum the wire from the callback vi to the VI ref is broken. How do I change the user parameter?

    Joe is correct on this one. The callback where designed to take variants as their inputs, so that they are more flexible. In addition Variants are used through out ActiveX programming.
    If you have a control reference that you want to pass into the VI, all you need to use is the "To Variant" function in the main VI to turn the reference into a variant. You can then inside the Callback VI you can use the Variant to Data VI to change the variant back to a reference; you simply where a constant of the reference type to the "Type" terminal.
    Evan
    National Instruments

  • Viewing Crystal 2008 ActiveX  on Access 2007 forms

    Ok, i am a little confused as there seems to be a some doubt whether Crystal 2008 ActiveX can be used on Access forms. Another thread even has a reply that mentions that the ActiveX control is no longer included in Crystal Reports 2008..... Take a look at this, you can clearly see i have embedded the 2008 ActiveX control onto an Access form. link:[http://www.moktar.pwp.blueyonder.co.uk/AX.JPG]
    I have just installed 2008 and will get round to looking at this, however in my brief look, i couldnt see the run time library for 2008. By all accounts you can freely distribute the run time files for Crystal Reports 2008 as MSI or exe packages to your clients. I hope this is the case and i can get the ActiveX working.
    If anyone has some information on this subject i will welcome reading it.
    This is how its used to be done;
    1) Open the Access form in design view.
    2) Click on Add Tool button on the toolbar.
    3) Select Crystal Reports ActiveX toolbar control from the list of controls.
    4) Place the control on the form.
    5) Click on the View Code toolbar button to open the code for the form
    6) Choose u2018Referencesu2019 from the u2018Toolsu2019 menu
    7) Select u2018Crystal Reports ActiveX Design and Runtime Library 11.Xu2019 from the list of references and add to the project.
    8) On the Form_Load() event, please use the code given below to pass the report to the viewer:
    Dim crReport as CRAXDRT.Report
    Dim crApplication as New CRAXDRT.Application
    u2018 Use the appropriate path for the report
    Set crReport = crApplication.OpenReport(u201CC:\Report1.rptu201D)
    u2018 ReportSource property and ViewReport method will not be displayed on the viewer control
    CrystalActiveXReportViewer0.ReportSource = crReport
    CrystalActiveXReportViewer0.ViewReport
    'Hey Presto, the Crystal control on the Access form is now displaying a report. However, you had the age old issue of distributing the runtime files to clients that dont have crystal reports installed, and even more so of an issue, as this is Access and no method of doing it. I was hoping that 2008 with its MSI and EXE versions of the runtime files would solve this age old problem.
    Thanks
    Simon.

    Hello Simon,
    The RDC was retired after Crystal Reports XI R2 and no longer exists in CR 2008.
    The viewer control you are seeing is not meant for RDC applications.
    You will need to move to Java or .NET if you plan on using CR 2008.
    Best Regards,
    Jason

  • Os botões da Barra de navegação desaparecem (Voltar, favoritos, abrir menu), mas ao passar o mouse sobre o locar do botão ele está lá. Fechar da aba também some

    Após algum tempo de uso, os desenhos de todos os botões padrão do navegador desaparecem, porém eles continuam lá. Quando passo o mouse sobre eles a silhueta deles é contornada e ao clicar eles também funcionam.
    O desenho do botão fechar das abas também desaparece mas mantém a sua funcionalidade.

    Tente desativar a aceleração dos gráficos através do hardware.
    Pode ser necessário reiniciar o Firefox para que a alteração entre em vigor, então salve todos os trabalho que estiver fazendo primeiro.
    Execute essas etapas:
    #Abra a janela opções do Firefox :
    #*Clique no botão de menu [[Image:New Fx Menu]] e selecione {button Opções}.
    # Na janela de opções, clique na aba '''Avançado''', em seguida clique na aba '''Geral'''
    # Nas opções exibidas, desmarque a opção ''Quando disponível, utilizar a aceleração por hardware''.
    # Agora, reinicie o Firefox e veja se o problema persistir.
    Além disso, verifique se há atualizações para o driver da placa de video, seguindo os passos mencionados nos seguintes artigos da base de conhecimento:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]

  • Meu nome é Liliane, e o site do mozila só abre com a tela toda preta no meu computador, já desinsinstalei e intalei mas não teve jeito não consigo mexer.

    Bom Dia!
    Ao abrir o site do mozila ele aparece todo preto e a parte de cima azul, aparece apenas os botões minimizar, maximizar e fechar, já desinstalei e instalei novamente, porém, não teve jeito, sinto que o site está normal e é essa cortina negra que impedi-me de usar achei que era vírus, porém um técnico veio até aqui e fez uma limpeza na maquina instalou antivírus mas o mozila não funciona então por favor me deem uma orientação pois agora só posso usar os outro navega.

    Atualmente na versão 33, o Firefox implementou uma nova estrutura para o carregamento de páginas para diminuir o tempo de carregamento. Esta nova funcionalidade OMTC carrega fotos e conteúdo de forma assíncrona. No entanto ainda há alguns ajustes e os desenvolvedores da Mozilla estão fazendo isso.
    Este é um problema conhecido que a Mozilla está a trabalhar arduamente para corrigir.
    Entre no firefox em [[Modo de segurança#w_como-iniciar-o-firefox-no-modo-de-seguranada |modo de segurança]] e [/pt-BR/kb/atualize-os-drivers-da-sua-placa-de-video-para-usa#w_desligar-a-aceleraadaco-por-hardware desabilite a aceleração por hardware].
    Mais uma vez pedimos desculpas pelo inconveniente.

  • Itunes é legal, mas quando está sincronizando é um lixo, nem isso pq minha lixeira levanta a tampa mais rápido que o itunes!

    itunes é legal, mas quando está sincronizando é um lixo, nem isso porque minha lixeira levanta a tampa mais rápido que o itunes... ¬¬
    Quando você coloca ele pra sincronizar por exempolo com o iphone (qualquer versão), o itunes deixa de ser um player e vira dor de cabeça, além de lento pra sincronizar ele fica travando, dando lag, erros e por ai vai... (onde está a qualidade da apple, acho que foi toda pra outro lugar porque o itunes... aff)
    Uso o itunes a mais de 4 anos e até hoje nunca resolveram esse problema... porque será?
    Bem, eu n sei, mas isso me fez usar outros programas em vez do itunes (ex:iphone pc suite) que é 1.000.000x melhor!!! (sério!)
    Apenas indico itunes para quem não tem produtos apple, porque se ele tiver ele vai saber do que estou falando...
    Então ta ai galera, quem gostou comenta, quem não gostou pode comentar também, e deixe sempre sua opnião.
    Abraço a todos.

    Itunes é uma beleza enquanto você não precisa formatar o computador... se vc precisar recuperar dados, começa seu tormento. Essa Apple devia manter toda sua equipe de desenvolvimento de hardware e demitir todos os responsáveis pelos softwares... muita complicação por nada. Se você tem um ipod, tem mais de um computador e acorda um dia querendo copiar um cd num outro micro que não o original, a hora que vc espeta o ipod no outro itunes, ele começa a apagar todos seus dados ou copia todas suas músicas pro outro computador... meu.. q merda... não é só copiar o que é novo pro Ipod? Inventam muita coisa que só faz o usuário passar raiva.

  • Os vídeos rodam no Youtube mas não rodam em sites de notícias, como o G1, UOL, etc. Já atualizei os plugins e nada.

    Reinstalei o Firefox, atualizei todos os plugins, inclusive o Download Helper, porém não consigo assistir os videos de sites como UOL, G1, Facebook. No entanto, consigo assistir normalmente os videos do Youtube, DailyMotion, Vimeo. Como pode? Tenho o Internet Explorer e o Chrome e vejo todos os videos de qquer site, mas o Firefox é meu navegador padrão. Que mais posso fazer? Por favor, ajudem-me

    Olá,
    '''Execute o Firefox em Modo Seguro''' para verificar se o problema é resolvido. O Modo Seguro é utilizado para resolução de problemas, ele desabilita a maioria dos add-ons.
    Existem duas maneiras de iniciar o Firefox em Modo Seguro:
    #Segure a tecla '''Shift''' quando for iniciar o Firefox através do menu Iniciar ou por um atalho.
    #Execute o Firefox normalmente, vá até o menu '''Ajuda''' e em seguida clique em '''Reiniciar com extensões desativadas...'''.
    ''Quando o pop-up for exibido, selecione "Iniciar em Modo Seguro" ''
    '''Se o problema não ocorrer no Modo Seguro''', uma extensão pode estar causando o erro e você precisa descobrir qual é a correta. Por favor, leia o artigo [[Troubleshooting extensions and themes]] para determinar isso.
    ''Para fechar o Firefox em Modo Seguro, basta sair normalmente e aguardar alguns segundos para reabrí-lo.''
    ''Quando você descobrir qual o problema, por favor mande um retorno! :) Isso poderá ajudar outros usuários que tenham o mesmo problema.''
    Obrigado e conte conosco!

  • Firefox 24 trava já na 1ª pág. Desinstalei/instalei várias vezes; restaurei sistema... fiz de tudo, mas trava e só fecha usando o gerenc. de tarefas.

    O Firefox sempre demorou para abrir, quando usado pela primeira vez após ligar o computador, mas depois funcionava normalmente. De um mês pra cá, simplesmente parou de funcionar. Se não me engano, foi depois que atualizou para a versão 24.0.
    Como utilizo o Malwarebytes para proteção do PC, o mesmo indicou arquivo malicioso na versão baixada através DESTE SITE. Opto sempre por corrigir os problemas encontrados e não sei se devido a isso, o programa não funciona mais. Ontem à noite desinstalei novamente o programa e fiz um novo download pela décima vez. Começou a funcionar normalmente e a navegar sem travamento. Hoje rodei o MALWAREBYTES, que acusou um arquivo malicioso no Firefox, no arquivo baixado ontem. Mandei corrigir o problema e o navegador não funcionou mais. Ele fica tão travado que a tela só fecha se eu for para o Gerenciador de Tarefas e mandar fechar o programa!
    Demora minutos para abrir uma página de qualquer site e fica só rodando, rodando... Quando finalmente abre, dá o alerta SCRIPT NÃO ESTÁ RESPONDENDO - Um script desta página pode estar em execução ou parado de responder. Você pode interrompê-lo agora ou continuar para verificar se ele termina a execução. Aí tanto faz eu INTERROMPER O SCRIPT ou CONTINUAR que o resultado é sempre o mesmo: TRAVAMENTO GERAL. Só fecha com o Crtl+Alt+Del!!
    Preciso usar o Firefox para resolver problemas de trabalho, pois o site de um determinado órgão funciona apenas com o Firefox!
    Agradeço muito se alguém puder me ajudar.

    Olá CelinaBrasil, boa noite!
    O recurso '''Restaurar Firefox''' pode resolver muitos problemas, restaurando o Firefox para seu estado padrão, salvando suas informações essenciais.
    Note:'' Isso fará com que você perca todas as extensões, sites abertos, e algumas preferências''.
    Para Restaurar o Firefox faça o seguinte:
    # Vá para o menu Firefox> Ajuda> Dados para Suporte.
    # Clique no botão "Restaurar o Firefox".
    # Firefox irá fechar e reiniciar. Quando o Firefox estiver pronto, uma janela com as informações importadas será exibida. Clique em Concluir.
    # Firefox abrirá com todos os padrões de fábrica aplicados.
    Para mais informações entre no artigo [[Reset Firefox – easily fix most problems]].
    Espero que essas informações sejam úteis! Por favor, nos informe se isso resolver seu problema.

  • Não consigo atualizar meu iphone. Ele fica em uma tela com um símbolo de nota musical e outro desenho do cabo de conecção usb. Temto conectá-lo ao pc para atualizar mas da um erro desconhecido de numero 40 e

    Meu iphone esta com problema. Apareceu uma tela  de um icone de nota musical e abaixo  o desenho do cabo de usb. Coloco ele conectado no computador ai da que detectou o meu iphone e ele precisa ser restaurado e atualizado. Eu Clico em confirmar, ele prepara o celular para restauração , mas não consegue restaurá-lo. Então meu celular volta para a mesma tela do icone de múcica e do cabo de conecção. Não entra mais em tela nenuma. O que devo fazer? Levei a uma autoriada e eles dizem que não tem o que fazer? Como pode isso? Um aparelho tão caro? Gostaria de saber como faço para ele voltar ao normal, pois esse erro ocorreu quando conectei ele ao pc para baixar minas fotos.

    Google translate:
    Good day. The problem is this: I was moving normally on my Ipod when I then realized that the App Store was gone and I had not moved in any configuration you unaware. I was desperate and went to look for some solution on the Internet. I did all but none worked. My last option was to restore the device. When I do it, a message appeared to update the IOS (where I had seen the IPod it was updated), but even so I did what I instructed because otherwise I could not restore the product. But the biggest problem came after upgrade when my IPod entered that recovery screen (with a USB pointing to iTunes icon) and ITunes followed with an error saying that it was not possible to upgrade and I should check the network connection etc.. My connection was 100% and soon after, my iPod stopped being recognized by iTunes. Now my iPod does not leave the recovery screen and i dont know what to do, and have tried many solutions on the internet, including the Apple support. I've got to connect my iPod to another computer and ITunes gave the same error, but it is still recognized that that PC and iTunes. Please help me to solve this problem, because my iPod is new, has little more than a year.
        OBS.: My computer is Windows 8 and soon after I tried to restore the ITunes, hvia discovered that a new update. Updated and connected the iPod, but still was not recognized. The other PC I tested was the IPod ITunes and Windows 7 was updated.
         Thanks already ...
    Maybe this
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem

  • Eu estou tendo problemas com pop-ups, já baixei todos os complementos possiveis mas não adianta, eles continuam aparecendo; como faço para não aparecer mais?

    Havia um programa que já veio instalado no computador mas que depois de um tempo meu antivirus acusou que ter vírus. Deletei-o e então começou a aparecer os pop-ups. Baixei vários complementos como AdBlock, Avast online Security etc mas nada deu certo, eles continuavam a aparecer nas redes sociais, como em outros sites. Tive que recorrer ao Modo de Segurança do Firefox e desde então não aparece mais pop-ups. Queria saber se tem algum jeito de conseguir a mesma coisa sem ter o Modo de Segurança ativado.

    Tente limpar todo o cache do firefox qualquer dúvida tente esse [[Como limpar o cache do Firefox|Tutorial]] . Se não resolver tente tirar um print e postar aqui o conteúdo do pop-up, dessa forma podemos ver o problema.

  • O firefox está instalado, mas apresenta mensagem dizendo que os atalhos não existem mais. Reinstalei, fiz acertos conforme site indica, mas depois some de novo.

    O firefox começou a apresentar erros, então desinstalei e fiz o download novamente. Quando reinstalado, ele não entrava em vários sites, como facebook e até mesmo o site de support do mozilla. Segui as dicas do support e acertei esse erro e ele voltou a funcionar normalmente. No entanto, cerca de 1hora depois, quando cliquei no atalho, apareceu informação de erro, como se o programa tivesse sido desinstalado. Mas o programa continua instalado, a pasta intacta e com acesso ativo e liberado.
    Já repeti esse processo várias vezes, mas continua acontecendo isso.

    Às vezez um problema com o seu Firefox pode estar relacionado a um Malware instalado em seu computador, que você pode não estar ciente.
    Você pode tentar estes programas gratuitos para fazer a varredura do malware, que funcionam com o software antivírus existente:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] é um bom antivírus disponível para Windows 7/Vista/XP, se você já não tiver um.
    Mais informações podem ser encontradas nesse artigo: [[Troubleshoot Firefox issues caused by malware]].
    Por favor informe-nos se isso resolveu o problema!

Maybe you are looking for

  • What will happen if I open an .ear file on the OAS OC4J_Portal/applications

    Hi, Is it possible to open an .ear file in another directory of OC4J_Portal instance with UNIX as the flavour. If so what would happen?

  • Streaming video on youTube

    My neighbor gave me an eMac for my 9 yr old daughter to use. I upgraded it to OS 10.4.11 and it works fine except for watching streaming videos. Both Quicktime and Flash stutter in Safari, but since I've reinstalled Quicktime it works only on Firefox

  • Keyword and metadata for non-image files.

    Hi, everyone. As I have started to use Bridge to browse files in my system including those that are not image files I tried to find information on how Bridge handles the assignment of keywords and metadata to these files but couldn't find anything on

  • Import partial songs

    Hi, Is it possible to import only the first 1 minute of every track in a CD using iTunes? When I look under Preferences>General>Import Settings, there is no such option available. Are there other software that can do this? I've found one (CDex) which

  • Safest/best browser for 10.5?

    As I'm considering moving from Leopard to SL (on my two mid-2007 model macminis), best still hesitating, I'm wondering, now Safari/Firefox/Chrome have ceased to continue supporting their browsers in Leopard, whether there are any alternatives that do