Where is the "Refresh Button" Saw cont+r but would like the buttom.

As stated I can't find any "refresh / page reload" button.

It was moved into the right-side of the Location bar, where the web address appears. You can move that button to anywhere you want it by opening the toolbar Customize mode and dragging that button to a different position.
https://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar

Similar Messages

  • I have a iPad and I connect it to my tv through hdmi but would like the sound to come out through the headphone socket, can I make this happen

    I have a iPad and I connect it to my tv through hdmi but would like the sound to come out through the headphone socket, can I make this happen.

    Go to System Preferences>Sound>Output  and make sure that you selected the right output. I think if yo use HDMI you might not be abe to select another output.

  • I have lost my simcard but would like the same number?

    I lost my simcard but would like the same number. I cannot ring up as I live in Sweden currently, but I am coming home for a week later in August. Is there a way I can get a simcard posted to my home address in England with the same number I used to have?  Also is there an email address for EE mobile network? I have looked all over but have not found anything. Thank you! 

    Order it online https://explore.ee.co.uk/Order-a-new-SIM for £10. It will be sent to your registered addy. There is no email for mobile custs.

  • The web address bar no longer displays the url of the open tab, the refresh button doesn't work any longer, and the more time FF is open, the slower it eventually runs.

    Downloaded FF4 a while back. Not the beta version. All seemed to work well for a while. Then the aforementioned problems began. I did not add any plugins or make any changes at all. Web site addresses do not show in tabs, and the refresh button is non-functional. After FF4 has been open a while, it begins to run slower and slower as if there is a memory leak.

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Others query the absence of the refresh button and that people have suggested dragging the stop, etc button from the right, but I don't have this button nor does it come up when I search under Views/ Toolsbars/Customise. How do I get a refresh button ?

    Can't add much to the question

    Firefox 4 later use a combined Stop/Reload/Go button that is positioned at the right end of the location bar.<br />
    During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button.<br />
    If you type in the location bar then that button becomes a Go button.<br />
    Middle-click the Reload button to duplicate the current tab to a new tab.
    To move the Stop and Reload buttons to their position to the left of the location bar you can use these steps:
    * Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * Drag the Reload and Stop buttons to their previous position to the left of the location bar.
    * Set the order to "Reload - Stop" to get a combined "Reload/Stop" button.
    * Set the order to "Stop - Reload" or separate them otherwise to get two distinct buttons.

  • I have an iPhone 5 on O2 and I don't have the group message option in settings but would like to try it could someone please help

    I Have an iPhone 5 on O2 and don't have group message option in settings and would like to try it can anyone help please

    Hi t.romano91,
    Welcome to the Support Communities!
    I'm not sure why you had to manually enter your contact information, but if you created and turned on your iCloud account, the information should be there.
    The link below will give you a general overview of iCloud, and how to look at your contacts:
    iCloud Help: Contacts overview
    I've also included the User Guide for the iPhone below to help you get started ...
    Please note that the Contacts App (looks like a brown address book) is located inside the Utilties folder on your home screen.  Press and hold the Utilities folder and it will jiggle.  Then drag the Contacts App out onto the home screen for easier access. (see page 20 of the guide below).
    manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Page 100 - 102 explains how the Contacts feature works.
    Enjoy your new iPhone!
    Have a great day!
    - Judy

  • Currently have JTextArea, but would like the output to be in a JTable...

    Hi there. I asked this question in the database section, but I ended up getting more questions and separating code, etc. Needless to say, my initial question went unanswered. So, for the purposes of this question, let me get this one thing out of the way:
    Yes, I know this is one big file, and that I should have the GUI and DB separated. However, this is for a small project that I'm working on, and for the moment, I'm not too worried about separating class files. As long as the program works as I want it too, so much the better for me.
    Now, on to the question at hand. Currently, I have a project that connects to a MySQL DB, and it displays the output from an SQL command in a JTextArea. It looks horribly ugly, as all the columns are not formatted properly. Take a look:
    http://img508.imageshack.us/img508/2193/testxe4.jpg
    Sure I can see columns, but I would love for the output to be displayed in a neat JTable, which is also much easier on the eyes.
    Here is the current code:
    package classes;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.sql.*;
    import java.util.*;
    public class SQLClient extends JApplet {
         private Connection connection;
         private Statement statement;
         private JTextArea jtasqlCommand = new JTextArea();
         private JTextArea jtaSQLResult = new JTextArea();
         JTextField jtfUsername = new JTextField();
         JPasswordField jpfPassword = new JPasswordField();
         JButton jbtExecuteSQL = new JButton("Execute SQL Command");
         JButton jbtClearSQLCommand = new JButton("Clear");
         JButton jbtConnectDB1 = new JButton("Connect to Database");
         JButton jbtClearSQLResult = new JButton("Clear Result");
         Border titledBorder1 = new TitledBorder("Enter a SQL Command");
         Border titledBorder2 = new TitledBorder("SQL Execution Result");
         Border titledBorder3 = new TitledBorder("Enter Database Information");
         JLabel jlblConnectionStatus1 = new JLabel("");
         JLabel jlblConnectionStatus2 = new JLabel("Not Connected");
         public void init() {
              JScrollPane jScrollPane1 = new JScrollPane(jtasqlCommand);
              jScrollPane1.setBorder(titledBorder1);
              JScrollPane jScrollPane2 = new JScrollPane(jtaSQLResult);
              jScrollPane2.setBorder(titledBorder2);
              JPanel jPanel1 = new JPanel(new FlowLayout(FlowLayout.RIGHT));
              jPanel1.add(jbtClearSQLCommand);
              jPanel1.add(jbtExecuteSQL);
              JPanel jPanel2 = new JPanel();
              jPanel2.setLayout(new BorderLayout());
              jPanel2.add(jScrollPane1, BorderLayout.CENTER);
              jPanel2.add(jPanel1, BorderLayout.SOUTH);
              jPanel2.setPreferredSize(new Dimension(100, 100));
              JPanel jPanel3 = new JPanel();
              jPanel3.setLayout(new BorderLayout());
              jPanel3.add(jlblConnectionStatus1, BorderLayout.CENTER);
              jPanel3.add(jbtConnectDB1, BorderLayout.EAST);
              JPanel jPanel4 = new JPanel();
              jPanel4.setLayout(new GridLayout(4, 1, 10, 5));
              jPanel4.add(jtfUsername);
              jPanel4.add(jpfPassword);
              JPanel jPanel5 = new JPanel();
              jPanel5.setLayout(new GridLayout(4, 1));
              jPanel5.add(new JLabel("Username"));
              jPanel5.add(new JLabel("Password"));
              JPanel jPanel6 = new JPanel();
              jPanel6.setLayout(new BorderLayout());
              jPanel6.setBorder(titledBorder3);
              jPanel6.add(jPanel4, BorderLayout.CENTER);
              jPanel6.add(jPanel5, BorderLayout.WEST);
              JPanel jPanel7 = new JPanel();
              jPanel7.setLayout(new BorderLayout());
              jPanel7.add(jPanel3, BorderLayout.SOUTH);
              jPanel7.add(jPanel6, BorderLayout.CENTER);
              JPanel jPanel8 = new JPanel();
              jPanel8.setLayout(new BorderLayout());
              jPanel8.add(jPanel2, BorderLayout.CENTER);
              jPanel8.add(jPanel7, BorderLayout.WEST);
              JPanel jPanel9 = new JPanel();
              jPanel9.setLayout(new BorderLayout());
              jPanel9.add(jlblConnectionStatus2, BorderLayout.EAST);
              jPanel9.add(jbtClearSQLResult, BorderLayout.WEST);
              this.add(jPanel8, BorderLayout.NORTH);
              this.add(jScrollPane2, BorderLayout.CENTER);
              this.add(jPanel9, BorderLayout.SOUTH);
              jbtExecuteSQL.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              executeSQL();
              jbtConnectDB1.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              connectToDB();
              jbtClearSQLCommand.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              jtasqlCommand.setText(null);
              jbtClearSQLResult.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              jtaSQLResult.setText(null);
         private void connectToDB() {
              String driver = "com.mysql.jdbc.Driver";
              String url = "jdbc:mysql://localhost:3306/petstore2002";
              String username = jtfUsername.getText().trim();
              String password = new String(jpfPassword.getPassword());
              try {
                   Class.forName(driver);
                   connection = DriverManager.getConnection(url, username, password);
                   jlblConnectionStatus2.setText("Connected To Database");
              catch (java.lang.Exception ex) {
                   ex.printStackTrace();
         private void executeSQL() {
              if (connection == null) {
                   jtaSQLResult.setText("Please connect to a database first");
                   return;
              else {
                   String sqlCommands = jtasqlCommand.getText().trim();
                   String[] commands = sqlCommands.replace('\n', ' ').split(";");
                   for (String aCommand: commands) {
                        if (aCommand.trim().toUpperCase().startsWith("SELECT")) {
                             processSQLSelect(aCommand);
                        else {
                             processSQLNonSelect(aCommand);
         private void processSQLSelect(String sqlCommand) {
              try {
                   statement = connection.createStatement();
                   ResultSet resultSet = statement.executeQuery(sqlCommand);
                   int columnCount = resultSet.getMetaData().getColumnCount();
                   String row = "";
                   for (int i = 1; i <= columnCount; i++) {
                        row += resultSet.getMetaData().getColumnName(i) + "\t";
                   jtaSQLResult.append(row + '\n');
                   while (resultSet.next()) {
                        row = "";
                        for (int i = 1; i <= columnCount; i++) {
                             row += resultSet.getString(i) + "\t";
                        jtaSQLResult.append(row + '\n');
              catch (SQLException ex) {
                   jtaSQLResult.setText(ex.toString());
         private void processSQLNonSelect(String sqlCommand) {
              try {
                   statement = connection.createStatement();
                   statement.executeUpdate(sqlCommand);
                   jtaSQLResult.setText("SQL command executed");
              catch (SQLException ex) {
                   jtaSQLResult.setText(ex.toString());
         public static void main(String[] args) {
              SQLClient applet = new SQLClient();
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setTitle("Interactive SQL Client");
              frame.getContentPane().add(applet, BorderLayout.CENTER);
              applet.init();
              applet.start();
              frame.setSize(800, 600);
              Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
              frame.setLocation((d.width - frame.getSize().width) / 2,
              (d.height - frame.getSize().height) / 2);
              frame.setVisible(true);
    }Right now it works fine, and I am planning on using this as an initial prototype for the presentation. Can I get some help on getting the output displayed into a JTable? How would I go abouts doing the conversion? I'm fairly new to Java (taking a course on it), and I'm worried that if I change one line of code the whole thing will get ruined and I'll need to start from scratch.

    -> It sounds like you're getting annoyed with the amount of people asking perfectly legitimate questions
    Your expectations are not legitimate. We attempt to understand your problem and give you the resources to solve the problem. Many times those resources are in the form of a tutorial or a reference to the API. We are not here to write code for you.
    I pointed you in the right direction. Its up to you do to some learning on your own. You have not made the slightest effort to understand how to use a JTable. You have not made the slightest effort to search the forum to see if you question has been asked before (it has).
    Your attitude and effort determines how much effort we make. Frankly you have made no effort whatsoever to solve you problem so as far as I am concerned you are on you own. Apparently I am not the only one who thinks you should be making more of an effort based on all the other advice you have received.

  • Where is the refresh button?

    Hi there, i am new to using firefox, i will look thru some of the tutorials. I wondered where the refresh button is? i have ticked all the view toolbars - menu, nav etc thanks.

    I found it, it's at the end of the address bar, in the corner of the white area.

  • Why is the refreshing button on iCloud Mail all the way below at the left corner?

    The refreshing button on iCloud Mail service is at the left corner in the bottom. I sometimes click the windows start button instead of refreshing button. They are so close. At all e-mail services, the refreshing button comes at the top and close to all other most necessary buttons. It has to be changed because it *****.

    Welcome to the Apple Community.
    This is a user to user community, Apple are unlikely to read your comments, if you have any suggestions that you think might enhance iCloud you can send Apple your feedback here.

  • Bring back the Refresh button in Dreamweaver (Was: Dreamweaver CC "simplifying")

    Is anyone else flabbergasted that Adobe removed the refresh button from Dreamweaver CC? All for the purpose of "simplifying" the workspace? Sorry, that's just stupid! I don't see how removing ONE button  at the top (which wasn't obtrusive, in the way, or useless) helps simplify my workspace. If anything, it is slowing me down because my brain is so used to hitting refresh to avoid my page jumping all over the place when I click in the design view... I KNOW that F5 does the same thing, I DON'T CARE. I've use 4 different versions of DW, and I'm currently regretting upgrading to CC.
    Thanks a lot Adobe, your staff is currently so smart that they are bordering on retardation!

    I understand your frustration, but honestly I think I've hit the Refresh button more today than the last 10 years of various DW versions combined.
    Like a lot of folks out there, I've pretty much always used keyboard shortcuts in lieu of menu options or buttons when they're available.
    Changes in workflow happen when programs are updated, it keeps you on your toes. It's not like they completely rearranged the Insert menu, oh, wait a minute...

  • Bring back the Refresh button in Dreamweaver

    1 year to the day of this post, Dreamweaver CC still sucks! I just updated and I'm sincerely regretting it. I want CS6 back now! Can someone tell me how to "Command Z" my upgrade when I have creative cloud? Seriously, you removed the refresh button? I'm not talking about the Refresh TAG, I'm talking about the little button at the top that wasn't hurting anyone, and kept my page from jumping all over the place when I click back in design view. I don't care if F5 does the same thing, F5 isn't what I've been using for 5 years. What's even more stupid, is that the refresh button is there when you click on LIVE.... Tell me how this is functional! Obviously, if I switch to live mode it's going to be updated, yet you put the refresh button there? Come on!
    I used to hold Adobe to a much higher standard, now I feel like they're trying to be Apple... Spewing out new [inferior] technology as fast as they can just to make an extra billion dollars.

    This is a duplicate of this one: Bring back the Refresh button in Dreamweaver (Was: Dreamweaver CC "simplifying")

  • My back and forward buttons do not work also the refreash button does not work, I have reloaded the latest version of fire fox and that did not help. HELP please.

    My back and forward buttons do not work also the refresh button does not work, I have reloaded the latest version of fire fox and that did not help. All of navigation tool bar worked until I updated Fire Fox, now if I click on a link in yahoo, for instance, I can not get back to my yahoo home page without reloading Fire Fox. HELP please.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • WHERE IS THE REFRESH BUTTON FOR THE SIXTH TIME

    Where is the refresh button for the seventh time. I cannot refresh

    In addition to the above posted by James:
    Click the Refresh button on the right hand side of the location bar container on the Navigation Toolbar or press "Ctrl + R" or F5 to reload a web page.
    Firefox 4 later use a combined Stop/Reload/Go button that is positioned at the right end of the location bar.<br />
    During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button.<br />
    If you type in the location bar then that button becomes a Go button.<br />
    Middle-click the Reload button to duplicate the current tab to a new tab.<br />

  • The toolbar is missing a LOT of features. For instance, where is th refresh button?

    I can't find the refresh button on the toolbar. The new toolbar is missing a lot of buttons that I had on my previous version of Firefox.

    Right-click a toolbar and select Customize
    while Customize window is open.
    Look to the far right end of Location (address) bar
    Drag the Reload and Stop buttons to their previous position to the left of the location bar or where else you want them.
    Set them as Reload|Stop to get a combined button.
    If you prefer to have them separated then you can also have a flexible space in between if you want it as Reload|Stop order or set set them as Stop|Reload.
    Then click Done.
    No toolbar buttons are actually removed or missing as they are either on a toolbar somewhere or in Customize window.

  • Where is the refresh button? Missing !

    I cannot find the refresh button? I don't see refresh in the view menu drop down either.

    It has been incorporated into the far right end of the Address Bar. When you load a page, it is a "Stop" button, when it finished loading, it turns into a "Reload" button.
    If you want it to be somewhere else in the Toolbar, you can drag it out to wherever you want. If that doesn't work, try this:
    View > Toolbars > Customize and drag the Refresh/Stop icon into the window, then drag it back out to wherever you prefer.

Maybe you are looking for

  • Mac mini DVI to HDMI with Sharp Aquos 46' LCD TV

    Hi, I currently use my 2008 Mac mini on my Sharp LC-46X20 TV using the DVI to VGA adaptor and the TVs VGA input. I currently have the resolution set at 1280 x 768 at 75hz. The picture on the whole is fine, filling the screen perfectly. However, the t

  • Pinch in and out on trackpad not working to zoom in and out in firefox

    Ever since i bought my macbook pro (early 2011) I was able to use the pinch in and out trackpad feature to zoom in and out in firefox. This suddenly stopped working a couple of days ago. It still works in safari so this seems to be Firefox specific.

  • Connecting to a database on a hosted site

    I have a mysql database on the site where my web page is hosted. I would like to write an application that sits on a users computer and allows them to send data to this database. Ther server has a firewall and its linux. How would anyone suggest I do

  • BUG CSS Editor z-index property

    I use JDeveloper 10.1.3.1 to edit CSS. span.dialog { z-index: 100; } is underlined in red, although span.dialog { z-index: 99; } and span.dialog { z-index: 101; } are OK.

  • Not finding an IP address

    Hello - im having a problem with my WRT54GS v6 router...! (any help would really be appreciated) Basicly ive had the router about 5 or 6 years and its always worked brilliantly. However I bought a MacBook and when I try to connect to it, its connecti