Detecting serial ports when program is already running

hi, i've tried detecting the available ports of my computer usingEnumeration portList = CommPortIdentifier.getPortIdentifiers ();
while (portList.hasMoreElements()) { ... }, i use it when my program starts to run and it works well. but i have a button which can give users option to change the port for which he wants to use.. and a port may not be available when the porgram started and may be available when the program is already running (i'm using a serial-to-USB cable so i can just plug and unplug it), i'm using the same code as above but it only detects the ports that i detected from the beginning, not including the new ports... does anyone know what i'm doing wrong? thanks!

just found my solution in one of the threads, i inserted try{
CommDriver cd= (CommDriver) Class.forName("com.sun.comm.Win32Driver").newInstance();
cd.initialize();
}catch(Exception e) {System.out.println("No available daw"); }before my Enumeration... my problem is solved!! Thanks for taking time to reply.

Similar Messages

  • I just got an IPAD2 on Saturday.  With the Mac, I could always tell when programs were open/running by going to the menu bar.  How can I tell what programs are running in the background.  I am struggling with not being able to go to a menu bar at the top

    I just got an IPAD2 on Saturday.  With the Mac, I could always tell when programs were open/running by going to the menu bar.  How can I tell what programs are running in the background.  I am struggling with not being able to go to a menu bar at the top

    You can see which apps are open and/or recently used by double-clicking the home button to bring up the taskbar at the bottom of the screen (not all apps that appear there are active) - you can then close apps on it by pressing and holding one of them for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar. If you have an app 'open' on-screen then it won't appear on the taskbar, you will need to go back to the homescreen first, and it should then show when you next open the taskbar.
    If you haven't already got a copy then you can download the iPad manual from here : http://support.apple.com/manuals/#ipad

  • How to know if the java program is already running?

    I have a simple java program, and I need some way to know if this program is already running. I need it because when I execute this program and during this execution I execute it again, two java programs are running in the Operating System. Is there any java method that tells if the current program is already running?

    Hey, stevejluke and nicklap, do you know about Threads? I NEED SOME HELP, URGENTLY!!! I�ve posted the same problem two times in this forum, but nobody gave me the solution. It seems to be very simple, and I�m very angry because I am wasting a long time because this ridiculous problem. Read the text below please. If you know some suggestion or tip, tell me!
    Sorry for posting this topic again. But I need some suggestion urgently. I put the last post below.
    ==============================
    I�ve been trying to test my application in Eclipse, and I am using threads. But when I debug it, sometimes the behavior is not what I am expecting. Sometimes when I stop at some breakpoint for a long time, the debug stops to execute. Curiously the application runs perfectly in run mode.
    Has anyone had this problem?
    Thanks.
    ==============================
    ==============================
    (m.winter)
    Debugging threads works perfectly in eclipse. However be aware: If you just set a breakpoint by doubleclicking left to the source line, then its policy ist to stop the trhread, not the VM. That means, once you reach the breakpoint, only the thread reaching that line is stopped. All other threads continue running. If a second thread later also hits that line, it is also stopped. This makes it sometimes difficult to find out, where you are, as two or more threads may be suspended. You can see the status of the threads and switch between them in the treah view, typically in the upper half of the screen.
    You can change the behaviour of a breakpoint to "suspend VM" by left-clicking on the breakpoint and choosing breakpoint properties.
    I assume in your case, that other threads are continuing to run. They may e.g. produce data, which is supposed to be worked on by the suspended thread. If you stay a long time at the breakpoint, finally you might run out of memory or something else happens, which does not occur in run mode.
    ==============================
    ==============================
    (Peter-Lawrey)
    If you have anything in your code which is time depend it can run fine, except when you debug it.
    e.g. if one thread times out because you have stopped another thread.
    ==============================
    ==============================
    Thanx, but I didn�t understand yet.
    Sorry if I commit any English language error, I�m learning English.
    Please try to debug the code below:
    public class Main {
        public static void main(String[] args) {
            Shared objShared = new Shared();
            Thread thread1 = new Thread(new Thread1(objShared));
            Thread thread2 = new Thread(new Thread2(objShared));
            thread1.start(); //put breakpoint here
            thread2.start();
    class Thread1 implements Runnable {
        private Shared objShared;
        Thread1(Shared shared) {
            objShared = shared;
        public void run() {
            try {
                objShared.doSomething1();          
            } catch(InterruptedException e) {
                e.printStackTrace();
    class Thread2 implements Runnable {
        private Shared objShared;
        Thread2(Shared shared) {
            objShared = shared;
        public void run() {
            try {
                objShared.doSomething2();          
            } catch(InterruptedException e) {
                e.printStackTrace();
    class Shared {
        private boolean x = false;
        synchronized void doSomething1()
            throws InterruptedException {
            while (x) //put breakpoint here
                wait();
            System.out.println("Doing something 1");
            x = true;
            notifyAll();
        synchronized void doSomething2()
            throws InterruptedException {
            while (!x)
                wait();
            System.out.println("Doing something 2");
            x = false;
            notifyAll();
    }"If you stay a long time at the breakpoint, finally you might run out of memory or something else happens" - I don�t wait a very long time. Just few seconds in the "while" breakpoint is enough to debug stops the execution.
    "You can change the behaviour of a breakpoint to "suspend VM" - I did it, but in properties I didn�t find any thing to configure in order to debug perfectly.
    In debug mode, when I press F6 button rapidly, this program is executed perfectly. The problem occurs only if the debug is stopped for few seconds in breakpoint. Try it, I�m really interested in the cause of this behaviour.
    Thanks a lot!
    ==============================
    I don�t know why does this behaviour occur! If anyone has the solution for my problem, please tell me!
    **************************************************************************************************************************

  • I can't get Firefox to bring up the browser. It continually tells me that the program is already running and to either close it or restart my computer. Not having anything to actually close, I restarted the computer five times. Now what?

    I can't get Firefox to bring up the browser. It continually tells me that the program is already running and to either close it or restart my computer. Not having anything to actually close, I restarted the computer five times. Now what?
    == This happened ==
    Just once or twice
    == Today. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; PeoplePal 6.6; PeoplePal 7.3) w:PACBHO60 w:PACBHO60 w:PACBHO60 w:PACBHO60 w:PACBHO60

    Phillipp,
    I tried it again using "save link as", and this time it actually worked! I just now downloaded several more using the "save link as" option, and it works perfectly. Thanks. Problem solved.
    Littleberry

  • Fire fox will not open and give the message that program is already running when it is not and i have to restart my computer. i am running windows xp and this problem started after the last up date. i have tried uninstalling and reinstalling the program

    is this a known issue?

    If you close Firefox properly the problem will practically disappear.
    To close Firefox properly:
    :<b>Closing Firefox</b> ''(#close_firefox)'', avoid getting <b>Firefox already running</b> messages:&nbsp; To properly shutdown Firefox when multiple windows or closing the
    last window use File → Exit/Quit (or Firefox button → Exit).&nbsp; Closing Firefox with the [X] in the upper right corner closes the window ("Ctrl+W") but that does not necessarily close Firefox if it has subtasks running.&nbsp; If you want to close and reopen Firefox use the "Restart" within Add-ons if you made a change requiring a restart, or install "[https://addons.mozilla.org/en-US/firefox/addon/restartless-restart/ Restartless Restart]" ("Ctrl+Alt+R") which will allow you to take Firefox down and restart without having to check the Windows Task Manager to see if Firefox first actually ended. ([http://kb.mozillazine.org/Firefox_hangs Firefox hangs])
    In checking the Windows Task Manager be sure to check the "Process" tab not the "Application"tab/

  • Detecting if the Air App is already running when clicking on start shortcut

    I have a question . Is it possible when starting up an air application to get  info if this Application is already opened  ? And if it is posssible how can I send notification or any kind of invocation to that opened application about that the user tried to start up the application . In my scenario I have got the Application that will run most time in minimized mode ,so it will happen that the user ,after some time , will not pay attention that the Application is already opend and will try to start it again . I want that when he attempts to do so the minimized  Application will reopen .
    Any Advice will be very appreciated !!!!
    Michael

    AIR app can register for Invoke event. This event is dispatched when the app is started initially . Also, when you try to start an already running app, the running app would get an invoke event, indicating that the app was tried to be started again. You can use this to achive the functionality you desire.

  • Firefox won't open links from other programs if already running

    I've seen this reported many other places, but none of the solutions have worked. I am running Firefox v33.0.2 (current as of this message) on Windows 7 64-bit (fully updated). I did the following:
    1. Completely deleted my profile;
    2. Uninstalled Firefox, then manually deleted all remaining files on the system pertaining to Firefox and rebooted;
    3. Gone into the Windows "Default Programs" control panel (DPCP) and told it to make Internet Explorer the default (giving it all of its defaults);
    4. Downloaded a fresh copy of the installer and installed Firefox 33.0.2;
    5. Let the installer set my default browser to Firefox;
    6. Tested link opening behaviour (see below);
    7. Let Firefox set itself as the default browser when it asked me;
    8. Tested link opening behaviour again (see below);
    9. With Firefox not running, gone back into the DPCP, and had it set all of Firefox's defaults;
    10. Tested link opening behaviour again (see below);
    11. With Firefox not running, set Internet Explorer to the default via the DPCP, then back to Firefox;
    12. Tested link opening behaviour again (see below);
    13. Repeated steps 11 and 12 with Firefox in safe-mode;
    14. Repeated steps 11 and 12 with Firefox in normal-mode with a new profile;
    The observed link-opening behaviour:
    - Internet shortcuts (i.e., actual shortcut files on, say, the Desktop) open in Firefox without issue whether or not Firefox is already running. When this approach is taken, no additional firefox.exe processes are created. The process does not have any command-line parameters per Task Manager;
    - Links clicked in Thunderbird open correctly if Firefox is not running: one new firefox.exe process is created, I get a new Firefox window and the link loads correctly. The firefox.exe process does not have any command-line parameters per Task Manager;
    - Links clicked in Thunderbird yield the "Firefox is already running, but is not responding" message if Firefox is already running. In this case, I see a second firefox.exe process created. Per Task Manager, the new process has the command-line arguments '-osint -url "FOO"' where FOO is the URL I clicked.
    From these observations I believe that the link hand-off behaviour is broken. I use a single profile using the as-installed shortcuts.
    Intitial version: 33.0.2
    Update: Updated to 33.1, still broken.

    Under Tools > Options > Advanced look to see if the "check if Firefox is default browser on startup" Check this and then restart FF. If it isn't the default it should ask if you want to make it the default. Choose yes and it should open when clicking links again.

  • Serial Port not accessible until I run MAX

    Hi!
    On my machine I can access all Serial ports perfectly. I put a Vias Resource in my VI and get a drop down menu with all my serial ports. But on other machines (Runtime v7 and VISA runtime installed) I don´t get the names (e.g. com1 com2) but only
    ASRL1:****
    ASRL2:****
    ASRL10:****
    I know that ASRL1 is COM1 but when I select it it dowsn´t work.
    If I now install MAX on the machine and run it once without changing the configuration my ports work.
    Can anybody tell me how to use the ports without using MAX??
    regards
    hmann

    Hi hmann,
    When you run MAX it is configuring your VISA alias list behinf the scenes. See "JB" answer to this question to find out how to do this without using MAX. It basicly requires editing an INI file.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000238D0000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    I hope this help,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to detect serial port

    CommPortIdentifier portId;
              Enumeration en = CommPortIdentifier.getPortIdentifiers();
              Vector v=new Vector();
              while (en.hasMoreElements())
                   portId = (CommPortIdentifier) en.nextElement();
                   if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
                             v.addElement(portId.getName());
              }

    refer this URL
    http://www.java2s.com/Code/Java/Development-Class/ReadfromaSerialportnotifyingwhendataarrives.htm
         * Project                     :
         * Class                     : GUIFrame.java
         * Purpose                    :
         * Date_Created               :
         * @ Version 1.0
    import javax.swing.JFrame;
    // import javax.swing.JPanel;
    import javax.swing.JMenuItem;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import java.awt.event.*;
    import javax.comm.*;
    import java.awt.*;
    import javax.swing.*;
    // import javax.swing.border.TitledBorder;     
    public class GUIFrame extends JFrame implements ActionListener
         JButton connectPort;
         JComboBox combo;     
         //JButton baudRate;
         //JComboBox baudRateCombo;     
         public JTextArea textArea;     
         JButton sendData;
         public SerialConnection serialConnection;
         public GUIFrame()
              setLayout(null);
              setTitle("First Frame");
              serialConnection = new SerialConnection();                    
              setJMenuBar(createMenuBar());
              combo = new JComboBox();
              combo.setBounds(50, 50, 80, 25);
              listPort();
              combo.addActionListener(this);
              connectPort = new JButton("Connect");
              connectPort.setBounds(150, 50, 100, 25);
              connectPort.addActionListener(this);
              sendData = new JButton("Send Data");
              sendData.setBounds(150, 150, 100, 25);
              sendData.addActionListener(this);
              textArea = new JTextArea();
              textArea.setBounds(300, 300, 400, 300);
              textArea.setFont(new Font("sansserif",0,18));
              add(connectPort);
              add(combo);
              add(sendData);
              add(textArea);;
              setSize(400, 300);
              setVisible(true);
              addWindowListener(new MainWindowAdapter());
         public static void main(String arg[])
              System.out.println("Hi");
              new GUIFrame();
         public JMenuBar createMenuBar()
              JMenuBar menuBar = new JMenuBar();
              JMenu fileMenu = new JMenu("File");
              JMenuItem connectMenuItem = new JMenuItem("Connect");
              connectMenuItem.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae){
                        try{
                             if(serialConnection.portName == null){
                                  serialConnection.portName = combo.getSelectedItem().toString();
                             serialConnection.openConnection();
                        catch(Exception ex)
              JMenuItem disconnectMenuItem = new JMenuItem("Disconnect");
              disconnectMenuItem.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae){
                        try{
                             serialConnection.closeConnection();
                        catch(Exception ex)
              fileMenu.add(connectMenuItem);
              fileMenu.add(disconnectMenuItem);
              menuBar.add(fileMenu);
              return menuBar;
         public void listPort()
              CommPortIdentifier portId;          
              java.util.Enumeration enumeration = CommPortIdentifier.getPortIdentifiers();
              while(enumeration.hasMoreElements())
                   portId = (CommPortIdentifier)enumeration.nextElement();
                   if(portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
                        if(!portId.isCurrentlyOwned())
                             combo.addItem(portId.getName());
         public void actionPerformed(ActionEvent ae)
              if(ae.getSource() == connectPort)
                   System.out.println("Connect is clicked");     
                   try
                        if(serialConnection.portName == null)
                             serialConnection.portName = combo.getSelectedItem().toString();
                        serialConnection.openConnection();
                   catch(Exception ex)
              if(ae.getSource() == combo)
                   System.out.print("Port Name = " + combo.getSelectedItem().toString());
                   serialConnection.portName = combo.getSelectedItem().toString();
              if(ae.getSource() == sendData)
                   byte b[] = new byte[5];
                   b[0] = (byte)0xaa;
                   b[1] = (byte)0xbb;
                   b[2] = (byte)0xcc;
                   b[3] = (byte)0xdd;
                   b[4] = (byte)0xee;     
                   try
                        serialConnection.getOutputStream().write(b);
                        display(b);
                   catch(Exception ex)
         public class MainWindowAdapter extends WindowAdapter
              public void windowClosing(WindowEvent win)
                   dispose();
                   System.exit(0);
         public void display(byte[] b)
              for(int i=0; i< b.length; i++)
                   textArea.append(Integer.toHexString (b[i] & 0xff) + " ");
              textArea.append("\n");
         * Project                     :
         * Class                     : SerialConnection.java
         * Purpose                    :
         * Date_Created               :
         * @ Version 1.0
    import javax.comm.*;
    import java.io.*;
    public class SerialConnection
         private OutputStream os;
         private InputStream is;
         private CommPortIdentifier portId;
         public SerialPort sPort;
         private boolean open;
         public String portName;
         SerialConnection serialConnection;
         public SerialConnection()
              serialConnection=this;
              PortHandler portHandler = new PortHandler(serialConnection);
              portHandler.init(serialConnection);
         public void setOutputStream(OutputStream os)
              this.os=os;
         public OutputStream getOutputStream()
              return os;
         public void setInputStream(InputStream is)
              this.is=is;
         public InputStream getInputStream()
              return is;
         * A Method to open the SerialConnection
    public void openConnection() throws Exception
              try
                   portId = CommPortIdentifier.getPortIdentifier(portName);
              catch (javax.comm.NoSuchPortException e)
                   System.out.println("noPort : "+e);
              try
                   sPort = (SerialPort)portId.open("port", 3000);               
                   open = true;
              catch (javax.comm.PortInUseException e)
                   throw new Exception();
              try
                   setOutputStream(sPort.getOutputStream());
                   setInputStream(sPort.getInputStream());               
                   System.out.println("IO stream is opened");
              catch (java.io.IOException e)
                   sPort.close();                    
         *A Method to Close the port and clean up associated elements.
         public void closeConnection()
              // If port is already closed just return.
              if (!open)
                   return;
              if (sPort != null)
                   try
                        this.os.close();
                        this.is.close();
                        System.out.println("IO stream is opened - CloseConnection");
                   catch (java.io.IOException e)
                        System.err.println(e);
                   sPort.close();
                   System.out.println("Port is closed");
              System.out.println("Flag Open - 1 : " + open );
              open = false;
              System.out.println("Flag Open - 2 : " + open);
         * Send a one second break signal.
         public void sendBreak()
              sPort.sendBreak(1000);
         * Reports the open status of the port.
         * @return true if port is open, false if port is closed.
         public boolean isOpen()
              return open;
         * A Method to add the event listener to the SerialPort
         public void addEventListener(java.util.EventListener listener)throws Exception
              System.out.println("Is not in opened state");
              if(isOpen())
                   System.out.println("Is in opened state");
                   try
                        sPort.addEventListener((javax.comm.SerialPortEventListener)listener);
                   catch (java.util.TooManyListenersException e)
                        sPort.close();               
                   // Set notifyOnDataAvailable to true to allow event driven input.
                   sPort.notifyOnDataAvailable(true);
                   // Set notifyOnBreakInterrup to allow event driven break handling.
                   sPort.notifyOnBreakInterrupt(true);
                   // Set receive timeout to allow breaking out of polling loop during
                   // input handling.
                   try
                   sPort.enableReceiveTimeout(50);
                   //sPort.enableReceiveTimeout(-1);
                   catch (javax.comm.UnsupportedCommOperationException e)
                        e.printStackTrace();
                   // Add ownership listener to allow ownership event handling.
                   portId.addPortOwnershipListener((javax.comm.CommPortOwnershipListener)listener);
         import javax.comm.*;
         public class PortHandler implements SerialPortEventListener,CommPortOwnershipListener{
              public SerialConnection serialConnection;
              public PortHandler(SerialConnection serialConnection)
                   this.serialConnection=serialConnection;
                   try{
                        serialConnection.addEventListener((SerialPortEventListener)this);
                        System.out.println("New Port Handler is called");
                   catch(Exception e)
                        System.out.println("Exception PortHandler(); " +e);
                        e.printStackTrace();
                   // Add this object as an event listener for the serial port.
                   System.out.println("PortHandler is initialised...");
              public SerialConnection getConnection(){
                   return serialConnection;
              public void setSerialConnection(SerialConnection serialConnection){
                   this.serialConnection = serialConnection;
              public void init(SerialConnection serialConnection){
                   setSerialConnection(serialConnection);
              public void serialEvent(SerialPortEvent e){
                   System.out.println("Event Initialised");
                   //Determine type of event.
                   switch (e.getEventType())
                        case SerialPortEvent.DATA_AVAILABLE:
                             try{
                                  readData();                              
                             catch(java.io.IOException e1)
                                  System.out.println("IO Excep "+e1.getMessage());
                                  e1.printStackTrace();
                             catch(Exception e1)
                                  System.out.println("Exception from Serial Event "+e1.getMessage());
                                  e1.printStackTrace();
                        break;
                        case SerialPortEvent.BI:
                        break;
              public void readData() throws java.io.IOException
                   byte b[]=new byte[8500];
                   int i=0,selectOption=0;
                   int newData=0;
                   int doubleLength=0;
                   int length=0;
                   // String mid="",strLen="";
                   while (newData != -1)
                        try     
                             System.out.println("getInputStream().available() : " + serialConnection.getInputStream().available());
                             newData = serialConnection.getInputStream().read();
                             System.out.println("newData\t"+newData);
                             if (newData == -1)
                                  System.out.println("\n End of the File\n");
                                  break;
                             if(i==0){
                                  b=(byte)newData;
                                  System.out.print("\n MSg ID \t= " + Integer.toString(newData&0xff,16)+"\n----------------------------");
                                  if(b[0] == (byte)0x00)
                                       i=-1;
                                       i++;
                                       continue;
                                  i++;
                                  //System.out.println("Method is called - selectOption : " + selectOption);
                                  continue;
                             if(i==1)
                                  b[i]=(byte)newData;
                                  System.out.print("\n Length =\t"+Integer.toString(newData&0xff,16)+"\n----------------------------");
                                  length=newData;
                                  if(length == 0)
                                       i=0;
                                       continue;
                                  i++;
                                  continue;
                             b[i]=(byte)newData;
                             if((b[0] == (byte)0x07) && (i == 2) || (b[0] == (byte)0xaf) && (i == 2) || (b[0] == (byte)0xec) && (i == 2)
                                  || (b[0] == (byte)0x5c) && (i == 2) || (b[0] == (byte)0xbe) && (i == 2) )
                                  String string = String.valueOf((byte)b[0]);
                                  String strLen = Integer.toString(b[2]&0xff,16) + Integer.toString(b[1]&0xff,16);
                                  System.out.println("\n\nLength String = " + strLen + "\n\n");
                                  java.math.BigInteger bi=new java.math.BigInteger(strLen,16);
                                  strLen = bi.toString();
                                  doubleLength = Integer.parseInt(strLen);
                                  System.out.println("\nLength int = " + doubleLength + "\n");
                                  //System.out.println("Method is called");
                             i++;
                             // Added by Siva on Jan 06
                             switch(selectOption)
                                  case 0:
                                       if(i>length+1)
                                            try
                                                 b[i]=(byte)newData;     
                                                 System.out.print("\nThe Last Byte =\t"+Integer.toString(newData&0xff,16)+"\n----------------------------");
                                                 System.out.print("\n"+i+" i Value =\t"+Integer.toString(newData&0xff,16));
                                                 System.out.println("\n----------------------- FINISHED------------------------------");
                                                 // service(b);     
                                                 System.out.println("\n----------------------- After Service------------------------------");
                                                 i=-1;
                                                 i++;               
                                                 continue;
                                            }catch (Exception e)
                                                 System.out.println("Exception in calling service 0:"+e.getMessage());
                                                 e.printStackTrace();
                                                 b[i]=(byte)newData;
                                       System.out.print("\nMSg ID \t= "+Integer.toString(newData&0xff,16)+"\n----------------------------");
                                       break;
                   }catch (java.io.IOException ex)     {
                        System.err.println("Abstarct Port handler Exception\t"+ex);
                   catch(Exception e1)
                        System.out.println("Exception from Read Data "+e1.getMessage());
                        e1.printStackTrace();
                   System.out.println("-----------------------------");
              public void ownershipChange(int type){
                   if (type == CommPortOwnershipListener.PORT_OWNERSHIP_REQUESTED){
              public void destroy()     
                   try{
                        serialConnection.closeConnection();     
                   }catch(Exception e){
                        System.out.println("Exception 2:"+e);     
                        e.printStackTrace();
              public void finalize(){
                   destroy();

  • Downloading XI pro trial when I'm already running XI standard?

    Hi, I currently own XI standard (Windows 8) and would like to try XI pro, primarily for pdf --> ppt. However, when I try to download the XI pro trial the download assistant states that I'm already running a more updated version and the XI pro trial download is halted. Do I need to uninstall XI standard first? Other suggestions? Thanks

    Stantheman yes you will need to remove any previous installations of Acrobat prior to install Adobe Acrobat XI Professional on Windows 8.

  • How do I download Mavericks when I am already running it?

    Hi,
    I want to make a boot memory stick for Mavericks, but I can´t seem to download Mavericks from the App store. Is that because I am already running the latest version? If so does anyone know how I can download it?
    Thanks

    All ok now. If I search for Mavericks, I get all the applications relating to Mavericks, if I click on Mavericks (the OS) it takes me into the info page, when I select Mavericks its asks for Password as normal but nothing happens. But if I click download next to Mavericks in the search results box it works. Strange

  • Installing Parallels when Boot Camp already running Windows

    I'm considering installing Parallels on my MacBook Pro, which I already have partitioned with a drive running Windows using Boot Camp. What I need to know is, do I need to eliminate the partition with Boot Camp and if so, will I have to completely reinstall Windows and all my Windows software? I don't want to waste the partition that's dedicated to the virtual drive, rather I'd prefer to have the entire hard drive available to MAC. I really want to have parallels, as it's easier for me to be able to work on Windows and MAC applications at the same time, without having to stop-shut down-restart each time.

    Parallels can use your existing Boot Camp partition for the VM, if that's what you're asking. However, if you want to have all one partition (without the Boot Camp one), then yes, you'll have to reinstall Windows when you install Parallels, unless there's some way to "import" your Boot Camp" setup that I don't know about.
    Message was edited by: Firesign3000

  • When entering the firefox icon ,it saya firefox want respond because it is already running ,and i can't get logged in, what must i do and what steps must i take to resolve this problem

    my home computer says :when i try to use the firefox icon , it's say that the system is already running ,and i dont know how or what programs are already running,it just simply keep telling me the same thing over and over when i use the icon, what should i do to correct this and gain access to firefox once again....

    my home computer says :when i try to use the firefox icon , it's say that the system is already running ,and i dont know how or what programs are already running,it just simply keep telling me the same thing over and over when i use the icon, what should i do to correct this and gain access to firefox once again....

  • I cannot access firefox because it says it is already running. It is asking me to close the program that is running I cannot find where it is. I uninstalled and reinstalled the latest version. It did not correct the problem

    when I click the firefox link a window pops up saying a the program is already running and I must close that program in order to run a current one. I went through task manager and then completly uninstalled firefox and reinstalled the newest version. This did not help.

    See this article for possible causes and solutions:
    [[Firefox is already running but is not responding]]
    See also:
    http://kb.mozillazine.org/Profile_in_use

  • Profile missing - can't create new one - uninstalled FF - reverted W8.1 to earlier - says already running when trying to re-install FF - many reboots VIPRE IS

    original error message was "FF already running" - not showing in task manager - could not close - rebooted several times - same results - uninstalled FF and tried downloading & installing again - same "already running" message. Reverted W8.1 by about 3 weeks (3 updates) - same result when installing FF = "already running". After the "already running" message is always that profile is missing or inaccessible.
    Getting the same stuff with TB BTW. Using the latest version of VIPRE internet security on auto update. Nothing similar on a W7 and an XP machine on same LAN. Is there a virus out there corrupting FF? VIPRE scan says nothing found on the 8.1 machine..

    See:
    *https://support.mozilla.org/kb/how-run-firefox-when-your-profile-missing-or-inacc
    This is usually caused by a problem with the profiles.ini file and the profile marked as Default=1 in this file is no longer present on the hard drive.
    *Windows: %AppData%\Mozilla\Firefox\<br>C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\
    *Linux: ~/.mozilla/firefox/
    *Mac: ~/Library/Application Support/Firefox/
    You can use one of these to make Firefox create/use a new default profile:
    *Delete the profiles.ini file to force Firefox to create a new default profile
    *Use the Profile Manager to create a new profile
    *Use "Choose Folder" when you create a new profile to select the location of a lost profile and recover this profile
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

Maybe you are looking for

  • How to search/scan the sourcecode of Function Module

    Hi, How to search / scan the Source code of Function module for any function modules used in it. Scenario :     There is a Function module called ztestfm. In the source code of ztestfm, if it is using other fucntion module     ( Ex : CONVERSION_EXIT_

  • [internalization] cannot get the correct local lang

    Hi there, I'm trying to develop an application based on the Internalization tutorial. I'm not getting any errors by the server, but the application doesn't change the local language. In the HTTP monitor I've got the following header parameter sent by

  • Refurbished Mini--Won't Configure

    I put in the install disk and stuff and when it gets to the Configuration it won't read it. Whenever I try to turn it on I get the ipod support address.

  • MDM Registration in SLD

    Hello All, I need to register MDM system in my PI 7.1 SLD, so i need to know, i should be doing this by adding as Standalong system type option or can i also do it with SLDREG? I did read a note # 1018839 regarding SLDREG and as per it.."The "receivi

  • Ipod appearing in Itunes but songs aren't transferring

    I just got a new computer, and when I plug in my nano, the iTunes program recognizes it, but when I try to transfer songs over, they do not go on the iPod and a little "x" shows up. Help!