Changing langage in JFileChooser.

Hi!
I've got a problem: I want to display a JFileChooser in french, and I don't know how to choose the langage displayed!
Maybe somebody can help?
Many thanks! :)

I tried the both; changing JVM locale and even changing myJFileChooser.setLocale...
but none works!
I'm desperatly looking for a solution!
I thougt about the ressources bundles for swing, but i didn't find a way to change it for the JFileChooser.
What do you think about it?
Many thanks!!!!
:)

Similar Messages

  • Changing labels in JFileChooser

    Hello,
    for a multi-language application I need to change the text dynamically in a JFileChooser. Changing the text of the buttons works well with
    UIManager.put("FileChooser.cancelButtonText","desired text");. But I don't know how to reach the labels ("Save in", "Filename", "Filetype"). Does anybody know how to proceed?
    Thanks
    J�rg

    Tag Torsten,
    well, it's particular annoying if you look at the sources (as I did) but overlook the important things. The famous tomatoes on the eyes or the board in front of your head. ;-) Sounds nice in Ebnglish, doen't it?
    Maybe my recent trial to influence the labeling is of interest to you. I thought: Why not changing the default locale instead of explicitly setting each and every label, button and tooltip? So I did a
        System.setProperty("user.country","US");
        System.setProperty("user.language","en");
        Locale.setDefault(new Locale("en"));
        Locale lo= Locale.getDefault();
        System.out.println(lo.getLanguage());but it has not the desired effect. So there seems no other way than setting the text for all components.
    Bye
    Joerg

  • Changing language in JFileChooser

    Is there any way that I can change the language of the text in JFileChooser, ie, where it says File name and File type and such.
    Thanks for any help you can give me.

    You could to this by calling javax.swing.UIManager.getDefaults(). That will retrieve a hashtable of the properties for the various UI components. Try printing out the various key/value properties and look for the properties related to the JFileChooser component. You should then be able to set these properties on the UIManager using the UIManager.put(Object key, Object value) method.
    Hope this helps.
    -David
    Here's some code to illustrate that...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class FileChooserDemo extends JFrame {
    public FileChooserDemo() {
    super("FileChooserDemo");
    UIManager.put("FileChooser.acceptAllFileFilterText", "Show me all files");
    UIManager.put("FileChooser.lookInLabelText", "Choose a path");
    JFileChooser fileChooser = new JFileChooser();
    this.getContentPane().add(fileChooser);
    public static void main(String[] args) {
    JFrame frame = new FileChooserDemo();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    frame.pack();
    frame.setVisible(true);
    Is there any way that I can change the language of the
    text in JFileChooser, ie, where it says File name and
    File type and such.
    Thanks for any help you can give me.

  • How to change font to jfilechooser or JOptionPanes

    I'm interesting in changing the font to the components of my JFileChooser , like the Aprove botton and the rest of the labels ,
    even I'm interested in changing the font to my JOptionPanes in my Aplications, I could see for examples that in the forte for java enviroment the jfilechoosers and joptionpanes have a different font from the standart.
    the thing is that I couldn't get the way, I would apreciate any help on this subjects, thanks very much.

    You need to change User Interface Parameters. I give you a piece of code...
    // Create a new font
    Font menuFont = new Font(
    PropertyManager.get("menu.font.name"),
    Integer.parseInt(PropertyManager.get("menu.font.style")),
    Integer.parseInt(PropertyManager.get("menu.font.size")));
    // Set components look and feel.
    UIDefaults defaults = UIManager.getDefaults();
    defaults.put("Menu.font", menuFont);
    defaults.put("MenuItem.font", menuFont);
    defaults.put("TabbedPane.font", menuFont);
    defaults.put("Label.font", menuFont);
    defaults.put("Button.font", menuFont);
    defaults.put("TextArea.font", menuFont);
    defaults.put("ComboBox.font", menuFont);
    defaults.put("List.font", menuFont);
    defaults.put("CheckBox.font", menuFont);
    See also Java Look and Feel tutorial on http://java.sun.com/products/jlf/ed1/dg/index.htm
    There is also a useful third-part plugin to simplify this work: see SkinLF on http://www.l2fprod.com

  • Changing filters in jfilechooser causes selection to disapear

    i am hoping you guys can help me.
    i have a JFileChooser with some custom filters. i set a default file to export
    this.setSelectedFile(new File(session.getLabel()+((ExportFileFilter)getFileFilter()).getExtension()));
    this is fine in teh constructor, i get a nice filename derieved form the session.
    but then i use the file type dropdown to select adifferent filter.
    and the filename field goes blank.
    i had attached a property change listener to the filter list, and repeated that command form above in teh propertyChange method. but that didn't help.
    anyone have thoughts?

    Would it be an option to use text boxes from a stencil instead of creating them from scratch?
    Then you could protect them from formating. Or even better just the show line / or geometry.
    If you have to work on existing drawings without protected text boxes, then you could think about a way to select them and protect them by code.
    This selection could be done in the worse case by selecting them by hand, then running the macro.
    HTH,
    Yacine

  • JFileChooser - filename going away on switching directory

    When the JFileChooser opens up, a selected file name can be shown in the file name edit box. However, as soon as the user switches directories, it is cleared. Is there any way to make the filename stay after switching directories?
    A perfect example would be in a "Save" dialog box. The default file name for the file to save is shown, but as soon as the user switches directories, the file name is cleared.
    Is there a way to listen for a directory change within the JFileChooser (ie a fire event method? or action listener?) and re-set the filename? Is this a flaw in JFileChooser design? Am I just missing something obvious?
    I've seen this in multiple Java applications and it is very inconvenient for the user.

    This is the only way I could think of doing it. However, if you manually change the filename, then click on a new directory, it will change the filename back to the default one. This is the best option I could think of right now.
        final String defaultFileName = "test.txt";
        final JFileChooser dlg = new JFileChooser(".");
        dlg.setSelectedFile(new File(defaultFileName));
        dlg.setFileSelectionMode(JFileChooser.FILES_ONLY); // doesn't work...the following is a work-around
        dlg.addPropertyChangeListener(new PropertyChangeListener()
            public void propertyChange(PropertyChangeEvent pce)
              if(pce.getPropertyName().equals(JFileChooser.DIRECTORY_CHANGED_PROPERTY))
                dlg.setSelectedFile(new File(pce.getNewValue() + File.separator + defaultFileName));
      int result = dlg.showSaveDialog(...);
      if(result == JFileChooser.APPROVE_OPTION)
        // create and save the file in dlg.getSelectedFile()
      }

  • Why my JFileChooser showed as a FileDialog?

    Hello!
    I'm doing a project to update some existing codes. I made a change to use JFileChooser to replace FileDialog since I can customize JFileChooser. However, after I have replaced FileDialog with JFileChooser in code, it still show as FileDialog when I run it. I'm very sure that I'm using the changed codes since I can see other changes I made in the file. The runtime environment could be a little strange, I heard it may not support Java.Swing. However, I used some other Swing components they all come out fine. It seems that JFileChooser is not supported so it fails back to FileDialog automatically, does anyone know anything about this?
    Thank you very much.
    Edited by: cutty on Jun 5, 2008 9:50 AM

    We can't really diagnose your problem just with what you posted.
    cutty wrote:
    The runtime environment could be a little strange, I heard it may not support Java.Swing.What environment? Platform, OS version, JVM version.
    It seems that JFileChooser is not supported so it fails back to FileDialog automatically, does anyone know anything about this?Write a small test program that simply creates a JFileChooser and displays it, and does nothing else. If it displays a JFileChooser, you'll know there's a bug in your code. If it displays a native file chooser like AWT does, then you may be correct.

  • JFileChooser selected file

    from my code below, the File Name in the dialog/file selection window defaults to the file but once I click on to a directory to change directory the File Name changed to the directory name. How do I set the filechooser to not change the File Name if a directory is clicked? Thanks, jude
    File fileSelected = new File("c:\\temp\\newfile.txt");
    JFileChooser filechooser = new JFileChooser();
    filechooser.setDialogTitle("Save to a text file.");
    filechooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
    filechooser.setSelectedFile(fileSelected);
    int iStatus = filechooser.showOpenDialog(null);
    if (iStatus == JFileChooser.APPROVE_OPTION) {
         fileSelected = filechooser.getSelectedFile();
    else if (iStatus == JFileChooser.CANCEL_OPTION) {
         return;
    ...

    I have been able to get the JFileChooser to behave in a more standard way when the user uses the mouse to select files. I have still not been able to find a way to get it to work the way I want if they've typed a file in manually. Does anyone know how to get to the JTextField in the JFileChooser to read the value?
    If anyone could hook me up with how to access the JTextField I'd sure be greatful!!!
    Here is how I 'fixed' the traversal of folders using the mouse.
    I subclassed the JFileChooser and made a local variable
    private File lastSelectedFile = null;
    I then registered property changed listeners in the constructor for both file selection and directory changes:
    this.addPropertyChangeListener(JFileChooser.DIRECTORY_CHANGED_PROPERTY,
    (new PropertyChangeListener() {
    public void propertyChange(PropertyChangeEvent e) {
    processDirChanged(e);
    this.addPropertyChangeListener(JFileChooser.SELECTED_FILE_CHANGED_PROPERTY,
    (new PropertyChangeListener() {
    public void propertyChange(PropertyChangeEvent e) {
    processFileSelected(e);
    Here are the propertyChangedListeners:
    public void processDirChanged(PropertyChangeEvent e) {
    if ( lastSelectedFile != null ) {
    File newSelectedFile = new File(this.getCurrentDirectory().getPath() + File.separator + this.lastSelectedFile.getName());
    this.lastSelectedFile = newSelectedFile;
    this.setSelectedFile(this.lastSelectedFile);
    public void processFileSelected(PropertyChangeEvent e) {
    File selectedFile = this.getSelectedFile();
    if ( lastSelectedFile != null && ( selectedFile == null || selectedFile.isDirectory()) ) {
    this.setSelectedFile(this.lastSelectedFile);
    else {
    lastSelectedFile = this.getSelectedFile();
    }

  • JFileChooser's dialog icon

    i'd like to know if there's any way to change the default JFileChooser dialog's icon.
    Also, is there any way to change labels on it's buttons, tooltip's and so on(i need it all in Russian :) ), besides getting the components of JFileChooser by its id, 'cause in this case it's gonna be LookAndFeel based, which is not so good, if I'm not wrong.

    i'd like to know if there's any way to change the
    default JFileChooser dialog's icon.
    Create you own dialog, passing a Frame to the constructor. The dialog will use the icon of the frame. Then set the content pane of the dialog to be a file chooser.
    Also, is there any way to change labels on it's
    buttons, tooltip's and so on(i need it all in Russian
    :) ), besides getting the components of JFileChooser
    by its id, 'cause in this case it's gonna be
    LookAndFeel based, which is not so good, if I'm not
    wrong.http://www.google.ca/search?hl=en&q=UIManager+filechooser&meta=

  • FileDialog in Applet throwing security exception.

    I am trying to create a simple applet that a user can select a file from and then upload that file to a server somewhere. I am able to accomplish this using the JApplet class and the JFileChooser class. Everything works fine with the signed applet. However I am going to need to make it compliant with the Microsoft VM since it is for a corporate settings and those people won't have admin rights on their machines to toggle between the VM. So JApplet has been changed to Applet, JFileChooser has been changed to FileDailog and now I am getting this error:
    com.ms.security.SecurityExceptionEx[com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed]: FileDialog creation denied.
         at com/ms/security/permissions/UIPermission.check
         at com/ms/security/PolicyEngine.deepCheck
         at com/ms/security/PolicyEngine.checkPermission
         at com/ms/security/StandardSecurityManager.chk
         at com/ms/security/StandardSecurityManager.checkFileDialog
         at java/awt/FileDialog.<init>
         at com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed
         at java/awt/Button.processActionEvent
         at java/awt/Button.processEvent
         at java/awt/Component.dispatchEventImpl
         at java/awt/Component.dispatchEvent
         at java/awt/EventDispatchThread.run
    com.ms.security.SecurityExceptionEx[com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed]: FileDialog creation denied.
    This line of code is where it blows up:
    FileDialog fileDialog = new FileDialog(new Frame(), "Please choose the file to open:", FileDialog.LOAD);The jar is signed, however something of interest to note: there isn't a pop-up asking me if I would like to trust this applet when I use the Microsoft VM?
    jar.exe -cvf k:\applet\lib\Importer.jar com.java.applet.il.AimsImporter/*.class
    jarsigner k:\applet\lib\Importer.jar mykey
    jarsigner -verify Importer.jar
    Is there something that is different when doing this with the Microsoft VM?????
    Help! :)

    I am trying to create a simple applet that a user can select a file from and then upload that file to a server somewhere. I am able to accomplish this using the JApplet class and the JFileChooser class. Everything works fine with the signed applet. However I am going to need to make it compliant with the Microsoft VM since it is for a corporate settings and those people won't have admin rights on their machines to toggle between the VM. So JApplet has been changed to Applet, JFileChooser has been changed to FileDailog and now I am getting this error:
    com.ms.security.SecurityExceptionEx[com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed]: FileDialog creation denied.
         at com/ms/security/permissions/UIPermission.check
         at com/ms/security/PolicyEngine.deepCheck
         at com/ms/security/PolicyEngine.checkPermission
         at com/ms/security/StandardSecurityManager.chk
         at com/ms/security/StandardSecurityManager.checkFileDialog
         at java/awt/FileDialog.<init>
         at com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed
         at java/awt/Button.processActionEvent
         at java/awt/Button.processEvent
         at java/awt/Component.dispatchEventImpl
         at java/awt/Component.dispatchEvent
         at java/awt/EventDispatchThread.run
    com.ms.security.SecurityExceptionEx[com/java/applet/il/AimsImporter/AimsImportApplet.actionPerformed]: FileDialog creation denied.
    This line of code is where it blows up:
    FileDialog fileDialog = new FileDialog(new Frame(), "Please choose the file to open:", FileDialog.LOAD);The jar is signed, however something of interest to note: there isn't a pop-up asking me if I would like to trust this applet when I use the Microsoft VM?
    jar.exe -cvf k:\applet\lib\Importer.jar com.java.applet.il.AimsImporter/*.class
    jarsigner k:\applet\lib\Importer.jar mykey
    jarsigner -verify Importer.jar
    Is there something that is different when doing this with the Microsoft VM?????
    Help! :)

  • Re: Swing GUI formatting

    I normally use AWT for my program's GUI since they have simple user input. For my current project I decided to use Swing. The program is for capturing the stats for Duplicate Bridge. It has a spread sheet style layout with about 20 rows consisting of labels,text fields and radio buttons to hold the data for each hand played.
    My problem: when openning (File|Open>..) previously saved data, the window/scroll pane underneath the dialog window for choosing the file to open is cleared and then repainted very SLOWLY.
    What can I do to speed up/eliminate the slow repainting?
    A version of this program is at: http://users.mo-net.com/normandpaula/DuplicateScorer.jar
    I'm using Java 1.5 in Windows XP on a 1.3GHz system.
    Thanks,
    Norm

    Thanks for the reply.
    I was using FileDialog and changed it to JFileCHooser. No change. Still had the empty spot where the dialog window had been.
    I then woke up and realized that I was reading the file on the AWT event thread. I moved the file reading code to its own thread and now the empty spot is only a flash. Some what better.
    Norm

  • How to change the image of a selected File/Directory in JFileChooser while

    Hi all,
    I am trying to customize JFileChooser. Basically, I want to display a checked Icon for a selected directory(s) in JFileChooser
    I know that fileView class returns icon for directory/files, but I am not sure how to change their images on selection.
    your help is appreciated.
    Ramesh

    could you please anyone help me with this. I search all the web but I was not successful to find anything that would help me to create a custom renderer for JList component inside JFileChooser..
    if you can give me some reference websites that would be great.
    Ramesh

  • How to prevent JFileChooser automatically changing to parent directory?

    When you show only directories, and click on the dir icons to navigate, and then dont select anything and click OK, it automatically 'cd's to the parent folder.
    My application is using the JFileChooser to let the user navigate through folders and certain details of 'foo' files in that folder are displayed in another panel.
    So we dont want the chooser automatically changing dir to parent when OK is clicked. How to prevent this behavior?
    I considered extending the chooser and looked at the Swing source code but it is hard to tell where the change dir is happening.
    thanks,
    Anil
    To demonstrate this, I took the standard JFileChooserDemo from the Sun tutorial and modified it adding these lines
              // NEW line 45 in constructor
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         }

    Here is the demo:
    package filechooser;
    import java.awt.BorderLayout;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    * FileChooserDemo.java uses these files:
    *   images/Open16.gif
    *   images/Save16.gif
    public class FileChooserDemo extends JPanel implements ActionListener,
              PropertyChangeListener {
         static private final String newline = "\n";
         JButton openButton, saveButton;
         JTextArea log;
         JFileChooser fc;
         public FileChooserDemo() {
              super(new BorderLayout());
              // Create the log first, because the action listeners
              // need to refer to it.
              log = new JTextArea(5, 20);
              log.setMargin(new Insets(5, 5, 5, 5));
              log.setEditable(false);
              JScrollPane logScrollPane = new JScrollPane(log);
              // Create a file chooser
              fc = new JFileChooser();
              // NEW
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
              // Create the open button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              openButton = new JButton("Open a File...",
                        createImageIcon("images/Open16.gif"));
              openButton.addActionListener(this);
              // Create the save button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              saveButton = new JButton("Save a File...",
                        createImageIcon("images/Save16.gif"));
              saveButton.addActionListener(this);
              // For layout purposes, put the buttons in a separate panel
              JPanel buttonPanel = new JPanel(); // use FlowLayout
              buttonPanel.add(openButton);
              buttonPanel.add(saveButton);
              // Add the buttons and the log to this panel.
              add(buttonPanel, BorderLayout.PAGE_START);
              add(logScrollPane, BorderLayout.CENTER);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              // If the directory changed, don't show an image.
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         public void actionPerformed(ActionEvent e) {
              // Handle open button action.
              if (e.getSource() == openButton) {
                   int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would open the file.
                        log.append("Opening: " + file.getName() + "." + newline);
                   } else {
                        log.append("Open command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
                   // Handle save button action.
              } else if (e.getSource() == saveButton) {
                   int returnVal = fc.showSaveDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would save the file.
                        log.append("Saving: " + file.getName() + "." + newline);
                   } else {
                        log.append("Save command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
         /** Returns an ImageIcon, or null if the path was invalid. */
         protected static ImageIcon createImageIcon(String path) {
              java.net.URL imgURL = FileChooserDemo.class.getResource(path);
              if (imgURL != null) {
                   return new ImageIcon(imgURL);
              } else {
                   System.err.println("Couldn't find file: " + path);
                   return null;
          * Create the GUI and show it. For thread safety, this method should be
          * invoked from the event dispatch thread.
         private static void createAndShowGUI() {
              // Create and set up the window.
              JFrame frame = new JFrame("FileChooserDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // Add content to the window.
              frame.add(new FileChooserDemo());
              // Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              // Schedule a job for the event dispatch thread:
              // creating and showing this application's GUI.
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        // Turn off metal's use of bold fonts
                        UIManager.put("swing.boldMetal", Boolean.FALSE);
                        createAndShowGUI();
    }

  • How to change the defaultCellEditor to a JFileChooser

    i am currently making a table that require input of a file name. for the sake of easy use, i plan to use fileChooser to replace default hardcode editor. when the user click on a cell, fileChooser (my CellEditor) will popup automatically to prompt user to choose a specific file type. As the topic, i am not quite sure how to change the defaultCellEditor to implement as a JFileChooser. So can anyone help me a bit, thx a lot!!!

    i am currently making a table that require input of a
    file name. for the sake of easy use, i plan to use
    fileChooser to replace default hardcode editor. when
    the user click on a cell, fileChooser (my CellEditor)
    will popup automatically to prompt user to choose a
    specific file type. This is covered in the Java Tutorial.
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#editor

  • How to change the text in the Cancel button of JFileChooser ?

    Hello,
    In french the standart text in the Cancel button of the JFileChooser class is "Annuler". For a good reason which will be too long to explain, I need to change it by another term.
    I tried to create a super class and redefine the CANCEL_SELECTION string, but this does not work. I can't either change it directly because it has the final attribute.
    Where does JFileChooser get this word from ? ( I guess it is not hard coded for multilanguage support purpose).
    Any help would be appreciated
    Gege

    I believe the standard Look and feel implementations look in UIManager for a string called FileChooser.cancelButtonText.
    Therefore you might be able to change it after you've loaded your LnF by using the following code:
    UIManager.put("FileChooser.cancelButtonText", "---change me---");Note that this would change all file choosers in your application.
    If you only want to update one type of file chooser you could extend, for example, MetalFileChooserUI and set its cancel button text by overriding installStrings. You'd then need to install this UI on the file chooser you want to change.
    There may be an easier way to do this!
    Hope this helps.

Maybe you are looking for

  • Clob DataType, NULL and ADO

    Hello, First, I'm french so my english isn't very good I have a problem with Oracle Clob DataType. When I try to put NULL value to CLOB DataType with ADO, changes aren't not made. rs.open "SELECT ....", adocn, adOpenKeyset, adLockOptimistic rs.Fields

  • CommPr01-TC { how to update product status(locked,Archived etc) via Program}

    Hi all, TCode: Commpr01 ( how to update material product status as Locked or Archived Via report program. Can any one suggest me what FM's i have to use and what inputs i have to pass. I already checked with "COM_PRODUCT_MAINTAIN_STATUS" it is not wo

  • Keep Mac desktop on primary display (LCD) and Present on External?

    Here's the question. Is there a way to keep my mac desktop on my primary display (the lcd on my MBP) while presenting to a projector? When I move the presentation to the external monitor and start the slide show, my LCD goes black. I know this is the

  • Adding text to a database

    hello i hope someone can help? i have to read a text file and then send it to a database i know how to select from a database but do not know how to add my file to a database could anyone suggest any good ideas please i will be most grateful thanks b

  • Controller not showing up for my embedded video

    My embedded video will not show the controller for some reason! I have tried setting the controller attribute to true, even though it is set to true by default but it still isn't showing up! Here is the java script that I use to insert the video: <sc