Change the JCombobox another topics class

Hello world

I have created two different classes which extends the JFrame class, on one of the classes, I was setting a component JCombobox and on the other, I was setting a component JButton.
Now I want that when the JButton clicked on the second class JCombobox items will be changed in the first class.
Basically, I have been create a method in the first class where JCombobox component to this change the items in the JCombobox, can I call this method of the second class (without static, because I need the JCombobox as static also)?

Any other solution will be appreciated.

See you soon,.
Moshik.

Moshik wrote:
its creating another instance of MainWindow.

Yes, just do what you tell it to do.

and when I do this:

MainWindow.this.changeComboBoxDisplayItem();

its returns me an error.

Yes, since you are not in the MainWindow class, this is impossible. Also, you declare your PopUpWindow parameter as a variable of JFrame not a variable MainWindow, so MainWindow methods are not allowed.

You are on the right track, but you just need to be able to get a handle on the MainWindow object that is passed to the constructor and use it. Here's my modification of your code. There are also a few other changes including:

(1) use ActionListeners to respond to button events, not MouseListeners.
2) avoid JFrame and JDialog subclassing since it is rarely needed (in fact, the same argument can be made for not not subclassing JPanel as I do here)
(3) avoid the provision null. Use layout managers to help you organize the GUI components.
(4) I use a DefaultComboBoxModel in case I want to later be able to easily add or remove items in the drop-down list box.

import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.*;

import javax.swing.*;

public class MainPanel extends JPanel {
   private static final String[] ITEMS = {"item 1", "item 2", "item 3"};
   private DefaultComboBoxModel comboModel = new DefaultComboBoxModel(ITEMS);
   private JComboBox comboBox = new JComboBox(comboModel);
   private JButton button;
   private PopUpPanel popUpPanel;
   private JDialog dialog;

   public MainPanel() {
      setPreferredSize(new Dimension(600, 400));

      button = new JButton("PopUp Window");
      button.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent evt) {
            if (popUpPanel == null || dialog == null) {
               JFrame frame = (JFrame) SwingUtilities.getWindowAncestor(MainPanel.this);
               popUpPanel = new PopUpPanel(MainPanel.this);

               dialog = new JDialog(frame, "PopUp Dialog", false);
               dialog.getContentPane().add(popUpPanel);
               dialog.pack();
               dialog.setLocationRelativeTo(null);
            }
            dialog.setVisible(true);
         }
      });

      JPanel innerPanel = new JPanel(new GridLayout(0, 1, 0, 30));
      innerPanel.add(button);
      innerPanel.add(comboBox);

      int eb = 20;
      setBorder(BorderFactory.createEmptyBorder(eb, eb, eb, eb));
      add(innerPanel);
   }

   public void changeComboBoxDisplayItem() {
      comboBox.setSelectedItem("item 3");
   }

   private static void createAndShowUI() {
      MainPanel panel = new MainPanel();

      JFrame frame = new JFrame("Main Window");
      frame.getContentPane().add(panel);
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.pack();
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      java.awt.EventQueue.invokeLater(new Runnable() {
         public void run() {
            createAndShowUI();
         }
      });
   }
}

class PopUpPanel extends JPanel {
   private JButton button;
   private MainPanel mainPanel;

   public PopUpPanel(MainPanel mainPanel) {
      setPreferredSize(new Dimension(200, 100));
      this.mainPanel = mainPanel;

      button = new JButton("ComboBox Change");
      button.addActionListener(new ActionListener() {

         public void actionPerformed(ActionEvent e) {
            PopUpPanel.this.mainPanel.changeComboBoxDisplayItem();
         }
      });
      add(button);
   }
}

Tags: Java

Similar Questions

  • How to change the default editor (IDE) class?

    How to change the default editor for my custom IDE (IDE) class (in this case it is FlashDevelop)?

    Options by default in preferences > Script files are only Animate and Flash Builder.

    Thank you!!

    Those are the only options available to animate, unless someone in the community has done something to customize this feature.

  • How to save passwords after you said 'no' to the command prompt or after changing the on another computer

    How to make ask them to register a password of Firefox. Once I say 'no', it never ask again (but now I would that he remember the password for some sites). I also changed my password on some sites (while on another computer) and I can't find out how to get Firefox to remember new passwords. I use Firefox 6.0.1 on a mac. I do not use private browsing. I 'Remember password for sites' clicked, and there is no exception. I tried to delete cookies, history, looking at the info from the page.

    The Web site may use autocomplete = off to prevent Firefox to record the name and the password.

    You can remove autocomplete = off with a bookmarklet to register the name and the password of Firefox.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Change the download destination

    I use Firefox for the Android system. I can't change my destination file. (It still downloads to "downloads"). Is it possible to solve this issue? TKS

    I don't know if there is a very easy way to do it, but this response explains how to change the path by topic: config.

  • How to change the color of the text by 1 point in the bulleted list?

    Hello

    I'm having some difficulties and I hope that someone can help you. I used for my menu bar, originally a reference to a door list not ordered so if I had to change something in the world I could do it by simply changing the bottommenubar shtml file.  In my CSS file, I set it up to look like I want it (see CSS below).  However, I would like that text is appropriate in the menu bar to be a different color when someone is on this page.  In other words, when on the home page, I want the Word home in the menu bar to be a different color than the other words/sections in the menu bar.

    So first of all, I guess I can't use the include statement and I will just have to put the unordered list below in each file .htm for each page and then use CSS to change the color of the word/link in the list of the individual page.  However, I was unable to find a way to do it.  I created a class for the color of the text (.pinktext) and tried to apply it to this word/line to the ul.  But it does not work.  I also changed the bottommenubar to a class rather than and ID and it has not always worked.  I put the lowest .pinktext code in the CSS file.  I apologize if this is a stupid question.  But any help would be appreciated.  So I would like to know if I'm mistaken, I can't use includes it the file (keep the non ordered list in a separate file) if I want the word/link to a different color for different files.  and number two, how can I change the color of the text for one item in the list. Thanks, Kirk

    The code in my file htm that links to the menu bar file (which I guess I can't use now)

    < div id = "bottommenubar" >

    "<!--file="Spry-UI-1.7/includes/bottommenubar.shtml #include "--> < / div >

    < / div >

    My bottommenubar shtml file is something like this (just included a few lines).

    < ul >

    < li > < a href = "index.htm" title = "Link to the Home Page" > home < /a > < /li > "

    < li > < a href = "news.htm" title = "Link to the Page of news" > News < /a > < /li > "

    < li > < a href = "biography.htm" title = "Link to the biography" > biography < /a > < /li > "

    < /ul >

    Since I don't think I could use since I want different color for different pages, I put this in my main file (also tried pinktext first with like an ID (and # used in my CSS code instead of) and added class of Home button, but it does not work.)

    < div class = "bottommenubar" >

    < ul >

    < li > < a href = "index.htm" title = "Link to the homepage" class = "pinktext" > home < /a > < /li > "

    < li > < a href = "news.htm" title = "Link to the Page of news" > News < /a > < /li > "

    < li > < a href = "biography.htm" title = "Link to the biography" > biography < /a > < /li > "

    < /ul > < / div >

    My CSS code when I tried as a class instead of ID is:

    {.bottommenubar}

    height: 20px;

    do-family: Arial, Helvetica, without serif.

    do-size: 18px;

    padding-top: 190px;

    }

    .bottommenubar ul {}

    list-style-type: none;

    Width: 960px;

    margin-right: auto;

    left margin: auto;

    }

    .bottommenubar ul li a {}

    do-family: Arial, Helvetica, without serif.

    do-size: 18px;

    color: #999;

    text-decoration: none;

    display: block;

    float: left;

    padding-right: 8px;

    padding-left: 9px;

    }

    .bottommenubar ul li a: hover {}

    list-style-type: none;

    color: #fc6;

    }

    {.pinktext}

    color: #f0f;

    }

    Ok.  What is your a: visited style?  Unless you disable the history/cache of your browser, you will see the style of default history for all the visited - links which are purple by default.

    Nancy O.

  • How to change the font of a particular line color in &lt; af:table &gt;

    I have a < af:table > bounded a ViewObject ReadOnly and this display object is a collection of a sql query. Now, when this table is rendered, I want specific attributes to change the color of police based on some logic.

    For example. If my af:table is a set of results that has Attributest as... EmployeeName. BalanceLeave. So I want the BalanceLeave value shoud displayed in red if the value of the attribute balance leave is greater than 20.

    Please help me on this.

    To do this, you use the attribute styleClass property and an EL related to a managed bean to return the style you want.
    Something like this to change the color

    public class ColorSwitchBean {
        public ColorSwitchBean() {
            super();
        }
        String mStyleClass = null;
    String mColorSyle = null;
    
        public String getStyleClass() {
            FacesContext fc = FacesContext.getCurrentInstance();
            ELContext elc = fc.getELContext();
            ExpressionFactory elf = fc.getApplication().getExpressionFactory();
            String sval =
                (String)elf.createValueExpression(elc, "#{row.City}", Object.class).getValue(elc);
    
            if (sval.startsWith("S"))
                mStyleClass = "red_background";
            else if (sval.startsWith("M"))
                mStyleClass = "green_background";
            else
                mStyleClass="";
    
            return mStyleClass;
        }
    
         public void setStyleClass(String aStyleClass) {
            mStyleClass = aStyleClass;
        }
    
        public void setColorSyle(String mColorSyle) {
            this.mColorSyle = mColorSyle;
        }
    
        public String getColorSyle() {
          FacesContext fc = FacesContext.getCurrentInstance();
          ELContext elc = fc.getELContext();
          ExpressionFactory elf = fc.getApplication().getExpressionFactory();
          String sval =
              (String)elf.createValueExpression(elc, "#{row.City}", Object.class).getValue(elc);
    
          mColorSyle = "";
          if (sval.startsWith("S")) {
              mColorSyle = "background-color:Red";
    
          }
    
          else if (sval.startsWith("M")) {
              mColorSyle = "background-color:Green";
    
          }
    
          return mColorSyle;
        }
    }
    

    and cela inside the table:

    - 
       
    

    Timo

  • Change the color of the tab

    Hello

    I am unable to change the color of the tab of panelTabbed point, I tried the following in a CSS file:

    AF | panelTabbed::tab: selected {}
    make-style: italic;
    background-image: url("..) (' / Images/section_label_body.jpg ");
    border-bottom-color: red;
    border-color: Fuchsia;
    border-bottom-color: Green;
    outline-color: Yellow;
    color: Aqua;
    }

    image of background and police style seems to work (who told me that I have the right skin selector) but no the rest changed the color of the tab.

    Anyone know how to do?

    Note that when I say tab, this is the header tabs, when you click it and it opens up the body of the tab.

    Thank you
    Alain.

    Hello

    best advice I can give is:

    Disable compression of the content of the page ADF Faces for the generated HTML output. This will change the names of style class to be hidden, which allows us to reduce the download size of the pages. Class astyle which shows that .x3s the runtime can make it appear as af_inputText_content after that. The af_inputText_content is what you need to discover and translate it into a valid skin picker.


    org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION
    true

    Run the application, ADF Faces, you want to discover the skin selector for in FF with Firebug and WebDeveloper plugin installed.

    Select the tab and look at the selectors of skin displayed as properties of the style class. If you find something like af_panelTabbed_tab, this translates af | panelTabbed::tab. If you see something like .p_selected, then that means it's a pseudo class, which must be attached to the selector as af | panelTabbed::tab: selected.

    Use Firebug in inspect mode and select the tab. This shows you all the selectors by style classes in the generated HTML output. Open the Web Developer plugin to change the CSS on the page. Then add the style class selector you find, for example .af_panelTabbed_tab (note the main point ".") or with a hug

    .af_panelTabbed_tab {...}

    In the cury braces, type the CSS you want to define and see how it behaves. You may need to play a little to exactly find the style class and css you want, but assuming the following works

    .af_panelTabbed_tab .p_selected {background-color: red}

    then this translates into the following selection of the skin to be copied in the CSS file

    AF | panelTabbed::tab: selected {background-color: red}

    Note that this translation at the back of class style to the skin selector is in need of little patience. However, the experience proves to be the best when cooking and if he does it for the count.
    Hope this helps

    Frank

  • Refresh JComboBox in one class when a changes JList in another class?

    Hello
    I have a small program where I am trying to update a JComboxBox in my class Main.java (a JFrame) when the contents of a JList change in another class JFrame, ProjectManager.java

    I have three classes involved in the present.

    Main
    Poster of the JComboBox

    ProjectManager
    Displays the JList and here you can add/remove items in the JList
    When this happens I want changes to be reflected in the main class

    ProfileManager
    The above two classes get their datamodel of this class by calling the static methods:
    public static ListModel getProfileListModel()
    and
    public static ComboBoxModel getProfileComboboxModel()
    I'm new to Java/Swing and I guess I'm must write a ListDataListener who warns 'Hand' that JList has changed.
    Who update the JComboBox.

    The problem is how to do that when I have three classes involved?

    I tried to create this listener in the main class:
     class ProfileListDataListener implements ListDataListener {
    
            public void contentsChanged(ListDataEvent e) {
                getProfiles();
            }
    
            public void intervalAdded(ListDataEvent e) {
                getProfiles();
            }
    
            public void intervalRemoved(ListDataEvent e) {
                getProfiles();
            }
            
        }
    getProfiles() looks like this:
    private void getProfiles() {
    cmbProfiles.setModel(profileManager.getProfileComboboxModel());
    }
    I can't add this listener to the ListDataModel since my class of earphone is not static, and if I do static, I can't call the method not static getProfiles().

    Anyway, my question is, what is the right way to do it when I want to notify a listener in the main class of class ProjectManager?

    Thank you.

    There are several ways (and I hope at least one is correct)
    You tell us how you want to update the drop-down list.
    I guess it must reflect the content of the JList. Yet,.
    I will describe the General.

    1)
    -you create hand declaring the combo as a global variable
    -you create ProjectManager by passing a reference to hand
    -join a listener JList of ProjectManager
    When the listener fires, you have access to the drop-down list via the reference of hand and the update.

    1A)
    Rather than attach the listener to the JList, you can attach it to its model,
    that might be in ProfileManager. In this case ProfileManager should have the
    the reference to hand. -By the way: you have several instances of hand or ProjectManager?
    I do not see the need for static methods in ProfileManager yet.

    2)
    -you create hand
    -you create an instance of the ProjectManager and ProjectManager must declare his
    JList as a global variable
    -You can access this list via the instance of ProjectManager
    -join a listener this list in hand and update the drop when the
    lights of the listener.

    2A)
    Rather than attach the listener to the JList, you can attach it to its model,
    that might be in ProfileManager. In the main case must have a reference to
    ProfileManager.

    I personally prefer to have the Jlist and its auditor in the same class.
    And if my assumption is right that the combo should reflect the content of the JList,
    There is no need of the ProfileManager class if his job is only to define models of
    the JList and the JCombobox.

  • I want to add auto IE tab firefox without the addition of manual, also I want to change the value of extensions.ietab.filterlist without classes to the topic: config

    (1) I want to change the default extensions.ietab.filterlist to mywebsite url value without having to follow several steps, each time that the user is going to hit my site, then to the users of the browser extensions.ietab.filterlist value must be added when it will hit my site. Topic: config, we can add manually, but I don't want to manually add, is it possible to automate this process.
    (2) is it possible to install the activex (extension Ietab) without clicking on add to firefox, I ask because my site is not supported in firefox because of the activex.

    (3) how to add admin privileges for activex in firefox.
    . Please help me

    I found the solution to this problem,
    (1) I added the User.js file in the default mozilla profile folder IE
    C:\Users\xpointers\AppData\Roaming\Mozilla\Firefox\Profiles\xb2fxdxi.default, I've added in user.js
    user_pref ("extensions.ietab2.filterlist", ' / ^ file:\\/\\/\\/.*\\. ") (mht) | ("mhtml) $/ http://*update.microsoft.com/* http://www.windowsupdate.com/ * http://www.UrWebsiteUrl.com/ * ");

    You can add n number of URLs to run in IETAb or IEtab2.
    User.js file overwrites the prefs.js file.

    (2) allowing to automatically add extensions to add addon, using the code and need to change the extensions.json file to the new version of firefox, for the old version of firefox need to change in the sqlite database.

  • How can I change the default topics listed in Windows Explorer?

    When I look at the files in Windows Explorer there are positions that I find little use for me. I would like to change the default headings listed to display only those that I use most often as update, size, Type and Date of creation. How can I change the default settings for securities so that these topics, such as tags and side are not displayed?

    To change the headers, right-click on the header bar, and click more.  You will see a list of options to be included in the header, and you can place about to adapt to your desires.  But they will not stick unless you modify the template for this type of file.  Procedures for this follow-up.

    Here's how to change the default template for a folder: http://www.vistax64.com/tutorials/70819-windows-explorer-folder-view-settings.html.  Default behavior is to select the model based on the first type of file placed in the folder (you must choose something).  Vista sets the folder type template according to what are the types of files in the window and the settings display window Explorer. This will show you how reset the display settings of Windows Explorer folder (which is what I think you want), disable Automatic folder Type discoveryand increase the view of the folder cache to have Vista don't forget not the display, model of file type settings, the size or the position of a window for when it was still closed to the location of specific path.

    It does not work with the Sub record under, Open with, open in a new tab (Internet Explorer), etc... dialog windows of type through the good File menu bar item. These don't seem to be able to have their size or their position to recall. For the latter, you can use the free program http://autosizer.en.softonic.com/ to resize them.

    Here is another article on how to modify the columns in Windows Explorer and sort in Vista: http://www.vistax64.com/tutorials/108665-column-customize.html.  This will show you how Add, Remove, move, change the widthand change the sort order of the columns in Windows Explorer in the way that you want.

    Here is another article on how to change the display of the default folders in Vista (but she argues, it is not a perfect solution and can revert to the previous behavior is not as good as the two prior links provided: http://news.cnet.com/8301-13880_3-10019957-68.html.)

    I hope this helps in your situation.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Change the location of the TEMP folder on another drive

    1. What are the steps (dialog) to change the files TEMP system Windows7 on drive C for one of my other drives local HHD? Now, I have only a 160 GB SSD for my boot (C - drv) and want to keep the WRITE/ERASE SPO to a minimum.

    2. is it a security risk to modify the TEMP Internet folder of the hidden/protected area on the C drive to another local HHD? I read that there are built-in virtual paths and protections on both the system and registry that tends to protect Internet files TEMP containing viruses, rootkits, etc. to easily reach areas critical. Norton likely also verifies signatures in these default fields for the TEMP files.

    Thanks in advance.

    Core i7-975 3.33 GHz, 12 GB of RAM, nVidia GTX280m, Win7 Ultimate64

    Hi Mike,.

    To change the location of the system Temp folder, follow the steps below.

    1. right click on computer and click Properties. In the window that appears with the basic information about your computer

    2. click on settings system advanced on the left panel, resulting in a dialog box click on the Advanced tab one

    3. click on the button marked down from Environment Variables.

    4. you can see listed in the TEMP and TMP variables user (account). It's common place; each different login account is assigned its own temporary location.

    5. in the Variable value box, you can specify the path to the Windows directory and many other programs use for temporary files.

    Remember and repeat this process for the TMP and TEMP.

    You'll need to restart all programs that are running for the new value to take effect. In fact, you will need to restart Windows for it to start to use the new value for its own temporary files.

    To change the location of the Temp Internet folder, follow the steps below.

    Note: That Internet Explorer moves cookies to the new folder and the old folder is deleted. In addition, the following message appears when you try to move the Temporary Internet Files folder:

    Warning: The location of your Temporary Internet Files folder will delete all your subscription data.

    1. Create a new folder to store the files. For example, if you want to store the files in a folder named Ietemp on drive D, create the following folder:

    D:\Ietemp

    For more information on how to create a folder, click Start, click Help, click the Index tab, type the new folderand then double-click the topic "folders."

    1. Start Internet Explorer.
    2. On the Tools menu, click Internet Options.
    3. On the general tab, click settings.
    4. Click move folder.
    5. Click the folder that you created in step 1.
    6. Click OK, click OK, and then click OK again.
    7. Restart your computer

    You can change the location of the temp Internet folder explore; There is no threat to the security of your computer.

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • What is this error represents "another user has changed the line containing oracle.jbo.Key [21 primary key]."

    Mr President.

    What is this error represents "another user has changed the line containing oracle.jbo.Key [21 primary key]."

    Concerning

    You get this exception quite often when you have a business in PL SQL layer, but you can safely ignore (suppress) it by substituting the lock() method in all implementation of your entity classes.

    /*** customizing locking management: 
    * Because attribute values can change 'outside' ADF standard life cycle, 
    * when optimistic locking executes, the exception "Another User Changed the Row" is thrown. 
    * In this case, we execute locking again, ignoring the exception 
    */ 
    public void lock() 
    { 
     try 
     { 
      super.lock(); 
     } catch (oracle.jbo.RowInconsistentException e) 
     { 
      if (e.getErrorCode().equals("25014")) 
      { 
      super.lock(); 
      } 
      else throw e; 
     } 
    }
    
  • Two quick questions (hopefully) - right way to dynamically change the CSS class and put of Splash screen implemented

    Couple of quick questions have left me speechless!

    So, it seems obvious that many JavaFX applications want to dynamically change the CSS styles.  Is the best way to do it through la.getStyleClass () .add ("classname") < node >?  The underlying data structure is a list of observable.  So let's say we have 5 styles that simply to change the fill color of a circle of 5 different colors, respectively.  So if I have a condition in which I want to dynamically apply 1 of these 5 styles, as I do now it's by setting all 5 styles as a string in a list by using a static initializer, then I call < node > .getStyleClass () .removeAll (list), then getStyleClass () .add ("classname").  I do this to avoid adding again and still the same style and inflate the underlying list.  What is the right way to manage dynamic CSS styles?

    Finally a very simple I think.  So I know there's a little differently to implement a splash screen.  My app has certainly got bigger in the last few months of development and I noticed there are about a 5 second delay between when I run the application when I see the main stage.  I was thinking what a splash screen would be nice to fill that time.  I had no time to prototype using a Preloader and I fear that using another, early stage start-up again would be too long of a delay.  "I actually thought that using the Nice and simple JVM argument" - splash: image name > "would be simple, easy and effective.  Unfortunately when I try to do, the splash screen appears but never goes away.  Anyone know what is happening with this?

    Your mechanism to manage the css style classes is a good approach; I've used several times. I wonder why the style classes have been implemented as a list, instead of a game, but there may be cases of good use for the use of a list.

    In some cases you can also consider using CSS PsuedoClasses, which were presented in JavaFX 8. Here is a little easier to use, especially if you have two options. But a use case might look like:

    public class Message {
        public enum Status { NORMAL, WARNING, CRITICAL }
    
        private final ObjectProperty status = new SimpleObjectProperty<>(Status.NORMAL);
        private final StringProperty message = new SimpleStringProperty();
    
        // constructor, getters, setters, and property accessors....
    }
    
    public Label createLabel(Message message) {
        PseudoClass warning = PseudoClass.getPseudoClass("warning");
        PseudoClass critical = PseudoClass.getPseudoClass("critical");
    
        Label label = new Label();
        label.textProperty().bind(message.messageProperty());
        message.statusProperty().addListener((obs, oldStatus, newStatus) -> {
            label.pseudoClassStateChanged(warning, newStatus == Message.Status.WARNING);
            label.pseudoClassStateChanged(critical, newStatus == Message.Status.CRITICAL);
        }
        return label ;
    }
    

    And then your css looks like

    .label:warning {
        -fx-text-fill: orange ;
    }
    .label:critical {
        -fx-text-fill: red ;
    }
    
  • Cannot change the topics offline

    I work from home (WFH) a few times a week and works in HR with another author and we're tracking our changes from SC. Since the network is really slow, I thought that I could work on the subjects in offline mode and check them, then when I go into the office, however, whenever I have an amendment to a topic, I get an error like this box:

    SC Error.png

    I can not make changes to any topics or extracts and I checked my rights as a user SC - I have all the rights. I also tried to extract files but none can do. I thought I was able to do that in offline mode when WFH. Is there another setting I'm missing? I looked in the help and there isn't a lot on the use of topics offline, so I don't really know what are my limitations.

    I suspect it has something to do with what you have at home at the RSC database access. I would get your verified VPN access.

  • When I try to change the settings for keyword.url in topic: config to make one "I'm Felling Lucky" Google search, it just resets to chrome://browser-region/locale/region.properties whenever I restart Firefox.

    I just installed Firefox 4 today. When I try to change the settings for keyword.url in topic: config to make one "I'm Felling Lucky" Google search, it just resets to chrome://browser-region/locale/region.properties whenever I restart Firefox.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > appearance/themes).

    • Makes no changes on the start safe mode window.

    See:

    See also:

Maybe you are looking for

  • Java no longer works on Firefox.

    I got the update of Java 6 31. Chrome, I had, and it worked fine. Subsequently, there was an update of Java 7 9 update. Due to an error, I couldn't install Java 7, so I stuck with the update of Java 6 31. However, it did not work. I activated the ext

  • Can I move staus indicator page load FF4?

    In FF3, the information on a page load or even the url of a link when hovering appears in the status bar. Now, it appears in a tab as window above the bar of the add-on and obscures the part of the screen. Can it be returned to where it was in FF3?

  • Satellite M70: LAN & WLan need driver for Win 7 RC

    Hi all I can't install Windows 7 RC.I have a Satellite M70, but I can't find a driver for card or WiFi network then "I can't connect to windows update to take the other missing drievers, too. I tried Vista drivers but does not work. I have try on htt

  • Have to reset the flag of string value

    Hello everyone I'm trying to reset the flag of string value. I use node string indicator property to change the color, its evolution, but when the program runs again it should start default how to do it. Thanks in advance

  • The HP recovery file is lost

    I have HP Pavilion dv2000 Cold son not did the file of backup recovery, and later, when he passed over laptop for me I used it extensively without realizing that it is y not up. Later, the window was damaged so I reformatted it. Now the problem is ho