Browser button to find?

I need the button to search within a web browser I made this code but I can do to mark the word I'm looking for the command caret?
import java.awt.*;
import java.awt.event.*;
import java.net.*;
import java.io.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.Caret;
public class LeerArchivoServidor extends JFrame {
private JTextField campoIntroducir;
private JEditorPane areaContenido;
private JTextField nombre;
// configurar GUI
public LeerArchivoServidor()
super( "Navegador Web simple" );
Container contenedor = getContentPane();
// crear campoIntroducir y registrar su componente de escucha
campoIntroducir = new JTextField( "Escriba aquí el URL del archivo" );
campoIntroducir.addActionListener(
new ActionListener() {
// obtener el documento especificado por el usuario
public void actionPerformed( ActionEvent evento )
obtenerLaPagina( evento.getActionCommand() );
} // fin de la clase interna
); // fin de la llamada a addActionListener
contenedor.add( campoIntroducir, BorderLayout.NORTH );
// crear areaContenido y registrar componente de escucha de evento HyperlinkEvent
areaContenido = new JEditorPane();
areaContenido.setEditable( false );
areaContenido.addHyperlinkListener(
new HyperlinkListener() {
// si el usuario hizo clic en el hipervínculo, ir a la página especificada
public void hyperlinkUpdate( HyperlinkEvent evento )
if ( evento.getEventType() ==
HyperlinkEvent.EventType.ACTIVATED )
obtenerLaPagina( evento.getURL().toString() );
} // fin de la clase interna
); // fin de la llamada a addHyperlinkListener
contenedor.add( new JScrollPane( areaContenido ),
BorderLayout.CENTER );
setSize( 400, 300 );
setVisible( true );
} // fin del constructor de LeerArchivoServidor
// cargar documento
private void obtenerLaPagina( String ubicacion )
// cargar documento y mostrar ubicación
try {
areaContenido.setPage( ubicacion );
String respuesta1 = JOptionPane.showInputDialog(null,"Escribe el texto a buscar:");
nombre = new JTextField(respuesta1, 20);
String textoABuscar = nombre.getSelectedText();
if (textoABuscar == null)
textoABuscar = "";
// Se abre el diálogo para pedir la cadena a buscar, rellenándolo con
// el texto actualmente seleccionado.
textoABuscar = JOptionPane.showInputDialog(
nombre, "Texto a buscar", textoABuscar);
// Se obtiene el texto del JTextArea.
String texto = nombre.getText();
// Se comprueba la posición del texto seleccionado si lo hay.
Caret seleccion = nombre.getCaret();
int posicion = 0;
if (seleccion.getDot() != seleccion.getMark())
posicion = seleccion.getDot();
// Se busca el texto a partir de la posición del texto seleccionado si lo
// habia
posicion = texto.indexOf(textoABuscar, posicion);
// Si no se encuentra el texto, se termina.
if (posicion == -1)
return;
// Se selecciona el texto encontrado. Valdría la llamada a areaTexto.select(),
// pero dice la API que es mejor llamar a esto.
nombre.setCaretPosition(posicion);
nombre.moveCaretPosition(posicion + textoABuscar.length());
campoIntroducir.setText( ubicacion );
catch ( IOException excepcionES ) {
JOptionPane.showMessageDialog( this,
"Error al recuperar el URL especificado", "URL incorrecto",
JOptionPane.ERROR_MESSAGE );
} // fin del método obtenerLaPagina
public static void main( String args[] )
LeerArchivoServidor aplicacion = new LeerArchivoServidor();
aplicacion.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
Edited by: 876788 on 03-ago-2011 14:31
Edited by: 876788 on 03-ago-2011 14:32

876788 wrote:
I need the button to search within a web browser I made this code but I can do to mark the word I'm looking for the command caret?This seems to be your 2nd post on this subject. I hope you marked the first one "Complete".
And I still don't understand what you mean by the phrase "but I can do to mark the word I'm looking for the command caret?". Could you please explain?
Also, please use [url http://forums.oracle.com/forums/ann.jspa?annID=1429]code tags when you are posting code. You're unlikely to get many answers if you don't.
Winston

Similar Messages

  • Can't find browse button on attach page

    Tried to attach a word document to an email. Hit the attach button and went to the next screen. That screen says to use the browse. There is no browse button.
    SmC

    Do you mean the one to ask for something to be added to the Store? Open iTunes, under iTunes beside File it says Provide iTunes Feedback, that'll open a web page for you.

  • Cannot find the private browsing button since I downloaded ios 7. I wish to turn off private browsing but am unable to do so.  Please help.

    Was wondering why the private browsing button no longer appears after downloading ios 7? I need to turn it off and am unable to do so.  Please help.

    Tap on the Pages icon at the bottom right (two squares). There you have the Private button.

  • Removal of the the Browse button at the lower right corner.

    Just would like to send out a request for apple to update the new iTunes 8.0 by re-adding the "Browse" button at the lower right hand corner, along side of the new genius button. I found the feature in the drop down view section on the top bar, but I'm sure users will be lost and have a hard time finding it.

    You can send feedback/feature requests directly to Apple at this link: Apple Product Feedback
    You can also use a keyboard command to open and close the browser. Hold down the Command and B keys together.

  • View of browse button on Firefox is not good

    I am using a browse button in my html code, It's workng fine, but on firefox-30 view of my browse button is not good, Can someone help me to fix it in my code??

    Please find the attachment.
    I am using browse button, to upload a file. When I click on upload button with out selecting the file. The view of the button is weird, as shown in the attachment.
    Expected: I don't what the red lining around the browse button, when I click on the upload button without selecting the file through browse button.I just want a pop up saying "please select a file".
    Note": My browse button is same as "Choose File" button on this forum.
    Is there anyway to solve this through my html code or through CSS ?
    Thanks in advance.Waiting for a quick reply

  • Htmlb:fileUpload: change "browse" button to another language

    I have a simple fileUpload Tag that shows a inputField and a "Browse" Button. In my Browser-Settings, the language is German, so instead of "Browse", there should be something in German.
    Can I change that word somehow?

    Hi Daniel,
    A very good hack has been found out for the same. Look at this weblog...
    /people/dagfinn.parnas/blog/2004/08/15/inputfile-how-to-hide-the-plain-browse-button
    I am sure you can find a way out from this and please let us know, your approach as well
    Regards,
    Subramanian V.

  • Drag-n-drop a file on the Browse button?

    Hi,
    Recently discovered I can drag-n-drop a file onto the Browse button in web applications prompting for file upload. Would like to find out more details about this capability. When was it implemented? What are the details of the implementation? Is it a standard capability I can count on for my application use?
    -Scott

    http://techreport.com/news/18147/firefox-3-6-supports-drag-and-drop-uploading
    https://hacks.mozilla.org/category/drag-and-drop/by/comments/as/complete/
    https://wiki.mozilla.org/Firefox/Feature_Brainstorming:Form_handling_and_text_areas
    Above link tells you about drag n drop feature of firefox along with video

  • Browser button doesn't work after installing drivers - HP 4540s

    Hello everyone, 
    I have problem with browser button (the button next to wireless button) after installation of  "Keyboard, Mouse and Input Devices" (more specifically "HP Hotkey Support" - Win8). Before that the button works fine, but after installation of this driver it does not work anymore.
    I update my BIOS and I did not find button sittings there.
    On HP's drivers site there is only driver for Wireless button.
    I expect your answers!
    Thanks!

    Wow, that's odd...there might be a registry error in Windows preventing it from working correctly. Do you have any kind of registry cleaner?
    I don't want to recommend too many things for you to download, but I personally use CCleaner to clean and fix my registry. I would recommend uninstalling HP Support Assistant, downloading CCleaner and run the registry cleaner. After you run the registry cleaner, reboot the computer and then try to re-install HP Support Assistant. Hopefully that will work. 
    Here is a link to the download: http://www.piriform.com/ccleaner
    Best of luck,
    Kyle
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Help required to Place Browse button in Interactive forms

    Hi,
    I am developing an interactive form in which I have to include a browse button. Is it possible?

    Hi Amit,
    Did you already solve this problem?
    I have the request to implement this functionality also and can not find the browse../upload functionality in Adobe Designer.
    I'm using NWDS 7.0.09, adobe designer 7.0.
    As alternative I can make a checkbox in the Interactive Form with value "Want to upload?" > if checked after submit > fire plug to uploadView.
    Does anyone know if there is a way to do this directly in the Adobe Designer?

  • Against browse button textbox is not displayed in latest versions ?

    In earlier versions of Firefox like (5 and before 5) there was a text box against a browse button displayed where you can enter the path directly but in latest versions we are not finding the text box which is very useful can you please let us know when can we bring back the text box against the browse button

    In the latest versions it shows as the attached please let me know any possible way to display as is in old versions

  • Browse Button in Webutil

    Hi All
    I'm using Webutil library in Oracle Form Buider 10g to help me create Browse Button.Browse Button is a button when I press it,it will show a Open dialog box which i can select file.
    In the trigger "When Button Pressed" of button
    begin
    :file_name:= CLIENT_GET_FILE_NAME('c:/', File_Filter=>'Text Files (*.txt)|*.txt|');
         get_file_contents(:file_name);
    exception when others then
         message(sqlerrm);
    end;
    and in the Program Unit of Form I write a Procedure Body "GET_FILE_CONTENTS"
    When i compile form,no error but run form and press button,it appear error:"ORA-06508:PL/SQL:could not find program unit being called"
    I can't repair this error.
    Pls,Help me!
    Thanks all

    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.Sarah

  • Capturing file path using a browse button

    I've created a registration form and need to allow the end user to click the "browse" button and select a directory - not a file. e.g. \\server\share\directory Once the directory has been selected the text field would be populated and eventually stored in the database. Unfortunately, I can't seem to find the right function to capture the directory path. Is it not possible? If not, any other suggestions?
    thanks in advance

    use ASMA with Dynamic conf.
    Ref:
    Accessing ASMA -
    http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/frameset.htm
    Dynamic Conf vs variable substitution - /people/shabarish.vijayakumar/blog/2009/03/26/dynamic-configuration-vs-variable-substitution--the-ultimate-battle-for-the-file-name
    Note:
    the get method will help you retrieve the FileName ref. the code in this blog also - Same file name -
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14

  • How do I display the McAfee siteadvisor browser button?

    In the previous version of Firefox, I can display the browser button at the bottom right corner of Firefox window. However in Firefox 4, I can't find display it again.

    The McAfee Site Advisor add-on may have to be updated to work with Firefox 4. You will need to contact McAfee about that.
    A couple of things you can try:
    Make sure the add-ons bar is displayed - Right-click on a toolbar, if "Add-on bar" does not have a tick by its name click on it, this will display the add-on bar.
    Right-click on a toolbar and select Customize. If the McAfee siteadvisor button is listed in the customize toolbar dialog, you can drag and drop it onto a toolbar.

  • Add a browse button

    Hi All
    I'm using Oracle From 10G,
    how to add a browse button so that user can browse the file system and then
    select the file that they want WITHOUT needing to type the FULL PATH.
    Thanks And Regards
    Vikas Singhal

    Download WebUtil and JACOB libraries
    • Download WebUtil version 1.0.6 from:
    http://www.oracle.com/technology/software/products/forms/files/webutil/webutil_106.zip
    • Download the JACOB libraries from:
    http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    Extraction
    Extract the webutil_106 zip file and make the following:
    • Copy the webutil folder to this directory:
    o <Developer Home>\forms90
    • Copy contents of the server folder to this directory:
    o <Developer Home>\forms90\server
    • Make sure that the webutil.cfg, webutilbase.jar,
    webutiljini.jar, webutiljpi.jar files are copied
    • Copy contents of the java folder to this directory:
    o <Developer Home>\forms90\java
    • Make sure that the frmwebutil.jar file was copied
    Extract the jacob_18 zip file and make the following:
    • Copy the jacob.dll file to this directory:
    o <Developer Home>\forms90\webutil
    • Copy the jacob.jar file to this directory:
    o <Developer Home>\forms90\java
    Sign the Jar files using sign_webutil.bat
    • Sign both the frmwebutil.jar and the jacob.jar with the same digital
    certificate.
    • Make sure that keytool and jarsigner are present in the path.
    • Make sure that you have shutdown the OC4G Instance .
    • From command line type the following:
    o C:\cd <Developer Home>\jdk\bin
    o C:\<Developer Home>\jdk\bin>
    <Developer Home>\forms90\webutil\sign_webutil.bat
    <Developer Home>\forms90\java\frmwebutil.jar
    o Make sure that this message (...successfully done.) is appeared.
    o C:\<Developer Home>\jdk\bin>
    <Developer Home>\forms90\webutil\sign_webutil.bat
    <Developer Home>\forms90\java\jacob.jar
    o Make sure that this message (...successfully done.) is appeared.
    orion-web.xml Configuration
    • Go to this directory:
    o <Developer Home>\j2ee\DevSuite\applicationdeployments\
    forms\forms90web
    • Open the orion-web.xml file.
    • Add this line:
    o <virtual-directory virtual-directory="/webutil"
    real-directory="<Developer Home>/forms90/webutil"
    />
    • Save the changes.
    default.env Configuration
    • Go to this directory:
    <Developer Home>\forms90\server
    • Open the default.env file.
    • Find FORMS90_PATH=<Developer Home>\forms90
    • Append this line:
    o C:\oracle\product\10.2.0\ds_1\forms90\webutil
    • In a new line under (FORMS90_PATH=) add this line:
    o WEBUTIL_CONFIG=<Developer Home>\forms90\server\webutil.cfg
    • Find PATH= , comment it and replace it with this line:
    o PATH=<Developer Home>\bin;
    <Developer Home>\jlib;
    <Developer Home>\jdk\bin;
    <Developer Home>\jdk\jre\bin;
    <Developer Home>\jdk\jre\bin\client;
    <Developer Home>\jre\1.1.8\bin;
    • Find CLASSPATH= and append this line:
    o <Developer Home>\forms90\java\jacob.jar;
    <Developer Home>\forms90\java\frmwebutil.jar;
    <Developer Home>\forms90\java\f90all.jar;
    <Developer Home>\jdk\jre\lib\rt.jar;
    • Save the changes
    formsweb.cfg Configuration
    • Go to this directory:
    o <Developer Home>\forms90\server
    • Open the formsweb.cfg file.
    • Under the [Default] section
    o Find archive_jini=f90all_jinit.jar
    o Comment this line.
    o Add the following:
    �� archive_jini=f90all_jinit.jar,frmwebutil.jar,jacob.jar
    �� archive=f90all.jar
    • At the end of the formsweb.cfg file, Define a new section
    [webutil]
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=f90all_jinit.jar
    WebUtilArchive=frmwebutil.jar,jacob.jar,f90all.jar
    archive=frmwebutil.jar,f90all.jar
    lookAndFeel=oracle
    • Save the changes.
    webutil.cfg Configuration
    • Go to this directory:
    o <Developer Home>\forms90\server
    • Open the webutil.cfg file.
    • At the end of this file add the following
    o transfer.database.enabled=TRUE
    o transfer.appsrv.enabled=TRUE
    Registry Configuration
    • In the registry editor find FORMS90_BUILDER_CLASSPATH
    • Modify by appending this line:
    o <Developer Home>\forms90\java\jacob.jar;
    <Developer Home>\forms90\java\frmwebutil.jar;
    <Developer Home>\forms90\java\f90all.jar;
    <Developer Home>\jdk\jre\lib\rt.jar;
    • Note: The total length of the FORMS90_BUILDER_CLASSPATH cannot exceed
    512 characters.
    • If the FORMS90_BUILDER_CLASSPATH exceeds 512 characters, you will get
    this error when you start the Forms Builder:
    o FRM-18122: Oracle Forms Debugger failed to Initialize.
    • To solve this problem make the following:
    o Return FORMS90_BUILDER_CLASSPATH to its previous value.
    o Workaround FORMS90_BUILDER_CLASSPATH by defining new
    environment variables (user variables):
    Variable Name Variable Value
    WEBUTIL_CONFIG <Developer Home>\forms90\server\webutil.cfg
    CLASSPATH <Developer Home>\forms90\java\jacob.jar;
    <Developer Home>\forms90\java\frmwebutil.jar;
    <Developer Home>\forms90\java\f90all.jar;
    <Developer Home>\jdk\jre\lib\rt.jar;
    Configuring Database for WebUtil
    • Start SQL*Plus as SYSDBA, and issue
    o CREATE USER webutil IDENTIFIED BY [password]
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    o GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC
    SYNONYM TO webutil;
    • Start iSQL*Plus as webutil
    o Load the script create_webutil_db.sql
    (You find this script under webutil_106 zip file after extract it)
    o Execute the script.
    o You will get this message:
    PACKAGE CREATED
    PACKAGE Body CREATED
    • Start SQL*Plus as webutil, and issue
    o CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
    • Reconnect as SYSDBA, and issue:
    o GRANT EXECUTE ON webutil_db TO PUBLIC;
    • Start the OC4J instance.
    • Start Forms Builder and connect to your schema.
    o Open webutil.olb
    o Open webutil.pll
    • Compile ALL (Shift-Control-K)
    • Generate PLX (Control-T).
    • If the PLX is not generated, the webutil.pll library would have to be
    attached with full path information to all forms wishing to use WebUtil. This is
    NOT recommended.
    • Create a new Form
    o Open webutil.olb, and Subclass (not Copy) the WEBUTIL object to
    the Object Groups of your form.
    o There is no need to Subclass the WEBUTILCONFIG object.
    o Attach the webutil.pll Library, and remove the path.
    o When you open the WEBUTIL_CANVAS in layout editor,

  • After download, box which says 'you have chosen to open' 'greys out' after browse button is selected and whole page is frozen/crashed. PC restart neccesary.

    Hi Firefox
    After I have finished downloading a file the Mozilla Download page appears.
    I right click the download to open it and the 'You Have Chosen To Open' box appears in the bottom right hand corner of the screen with the 'radio button' already selected to 'Open with..
    All this so far is perfectly normal.
    However if I click on the 'Browse' button to make a choice then the title at the top of the box, the closing 'cross' and the 'OK' button have all faded to grey and are inoperable.
    Furthermore the whole Firefox page is frozen/crashed and can't be closed.
    I have no further options than to restart the PC.
    I have tried various suggestions I have found on your forums including deleting cookies, turning off the hardware accelerator, and I have uninstalled and reinstalled Firefox 12.
    I have looked at your 'Troubleshooting Information' and it does show a graphics driver problem. However my driver is the lastest nVidia driver for my GeForce FX5200 card and it has worked fine with firefox 12.
    WebGL RendererBlocked for your graphics driver version. Try updating your graphics driver to version 257.21 or newer.
    GPU Accelerated Windows0. Blocked for your graphics driver version. Try updating your graphics driver to version 257.21 or newer.
    Here is the specification of my computer:
    MSI K8N Neo motherboard (N1996 MS-7030 VER:1),
    an AMD Athlon (tm) 64 processor 3200+ (Socket 754)
    3GB of RAM.
    It has at present a NVIDIA GeForce FX 5200 graphics card.
    The system is running Windows XP Professional 32bit with SP3 and all drivers are up to date.
    I have used Firefox for many years and would not use anyone else browser ever!
    I have not had a problem until now. I do hope you can help me.
    Kind Regards
    Chris

    Dear mha007 Your brilliant! Now I have the correct terms it was the 'Opening' box that was freezing and it was the 'Choose Helper Application' that couldn't be accessed.
    However I followed the instructions which I have cut n' pasted below and I am sure it was the 'renaming' of the rdf file that put things right.
    Thank you very much I am very grateful. Kindest Regards Chris
    '''''''Reset download actions for all file types
    To reset how all file types are handled by Firefox back to default:
    Open your profile folder:
    At the top of the Firefox window, click on the Firefox button, go over to the Help menu (on Windows XP, click on the Help menu) and select Troubleshooting Information. The Troubleshooting Information tab will open.
    Under the Application Basics section, click on Open Containing Folder. A window with your profile files will open.
    Note: If you are unable to open or use Fire​fox, follow the instructions in Finding your profile without opening Firefox.
    At the top of the Firefox window, click on the Firefox button (File menu in Windows XP) and then click Exit.
    Rename the mimeTypes.rdf file to mimeTypes.rdf.old .
    Restart Firefox. '''''''

Maybe you are looking for

  • IP Characteristic Relationship used via Filter for derivation in Query

    Hello Experts, hopefully you can help me with following issue: Currency is an Attribute from Company. I created a Characteristic Relationsship to derive Currency from Company Afterwards I created an Aggregation Level with fields Currency, Company, Ma

  • Safari crashin

    My mac keeps crashing druing both safari and mail usage. Help I cant do anything unless im in firefox. This is driving me crazy Process:     Safari [2101] Path:        /Applications/Safari.app/Contents/MacOS/Safari Identifier:  com.apple.Safari Versi

  • Flex 4.5.1 AIR 2.6 android mobile application

    I am trying my first Flex(4.5.1)/AIR(2.6) mobile application for android. I am using Flash Builder 4.5.1. I am able to run the application on desktop selecting the Target platform as Google Android and Google Nexus One as device to simulate. But I am

  • JSF 1.2 book

    Hi, is there any good book about JSF which covers also JSF 1.2? Or are the differences between 1.1 and 1.2 so important that I should buy 1.2-compliant book? Thank you

  • XML Syntax Highlighting

    Hi, I need help with XML Syntax Highlighting. I try to create simple XML editor, but I have probleblems with Syntax Highlighting. Is there anyone who can help me?