How many Java in control panel??

Would like to know how many Java I should have in add/remove programs (control panel -WinXP)
There is: Java2 Platform Standard Edition Runtime Environment Version 5.0, SE v1.4 2_13, JavanPlatform, Standard Edition Runtime Environment Version 6.0.30, then Java 2.0 download manager.
Also,after 6.0.30 installation I have problem with opening .pdf documents from any website. I have Adobe pdf 6.0
Please help, as I don't know what I should do ! Many thanks.

Sara84 wrote:
Would like to know how many Java I should have in add/remove programs (control panel -WinXP)In my opinion, 1 or more. But you could have 0.
There is: Java2 Platform Standard Edition Runtime Environment Version 5.0, SE v1.4 2_13, JavanPlatform, Standard Edition Runtime Environment Version 6.0.30, then Java 2.0 download manager.Okay
Also,after 6.0.30 installation I have problem with opening .pdf documents from any website. I seriously doubt this has anything to do with your Java installation.

Similar Messages

  • Single 3850(MC) how many AP can control

    Hi All now i testing about 3850.. 
    i have some question about 3850
    1. how many APs can control in single 3850(MC)
        if we buy Single 3850(48port) then can we use all port for AP?
    2. build a MC-MA Wireless environment, If MC goes down MA Can still working without MC?(is there kind of NSF?)
    3. for example MC has a AP and MA has a AP. then we can see ap only each 3850. how we can management whole APs
        Prime infrastructure can see whole APs, is this only way ?. I think this is not good for management Wireless.
    4. If MA has over two APs(AP1, AP2),  User1 connected AP1, User2 connected AP2.
        User1 need to connect with User2(FTP or something) , User1,2 can connect directly? without through of MC
              MC-----------------MA
                                            |
                                   AP1          AP2
                                     |                  |
                                user1           user2
     if you have any answer plz talk to me.
    thank you.

    A 3850 can support up to 50 directly-connected APs.

  • Does Firefox support java applets if the "Next generation plugin" is disabled via the Java plugin control panel.

    I'm still trying to get a definitive answer to this question.
    My applet is not "Next Generation compliant". When we run our applet in Internet Explorer it runs fine as long as we disable the "Next Generation Plugin" via the Java plugin control panel. However our applet does not run in Firefox if the "next generation applet" is disabled.
    Is it a requirement that if I want to run an applet in Firefox 3.6.x or higher that the "next generation plugin" be enabled via the Java plugin control panel.

    Current Firefox versions (3.6 and later) can only run Java applets via the Next Generation plugin.
    *http://java.com/en/download/help/new_plugin.xml

  • How many java String objects are created in string literal pool by executin

    How many java String objects are created in string literal pool by executing following five lines of code.
    String str = "Java";
    str = str.concat(" Beans ");
    str = str.trim();
    String str1 = "abc";
    String str2 = new String("abc").intern();
    Kindly explain thanks in advance
    Senthil

    virtuoso. wrote:
    jverd wrote:
    In Java all instances are kept on the heap. The "String literal pool" is no exception. It doesn't hold instances. It holds references to String objects on the heap.Um, no.
    The literal pool is part of the heap, and it holds String instances.
    [http://java.sun.com/docs/books/jvms/second_edition/html/Overview.doc.html#22972]
    [http://java.sun.com/docs/books/jvms/second_edition/html/ConstantPool.doc.html#67960]
    You're referring to the JVM. That's not Java.It's part of Java.
    There is nowhere in Java where it is correct to say "The string literal pool holds references, not String objects."

  • Java 7u25 control panel not responding

    Hi all, I have just updated the latest version of Java : 7u25 on several computers running Win7
    When I try to open the control panel, I have an errror : JAVA(TM) SE Platform not responding.
    Or, I dont have any error.
    In the Windows process monitor, I can see Javaw.exe launches and ends a few seconds later.
    So, impossible to manage the java control panel.
    Even If I launch C:\Program files(x86)\java\lib\javacpl.exe I got the same issue.
    This issue occurs on all my machines.
    Any idea of how to solve that issue ?
    Thank you in advance.

    Hi,
    Please run SFC command to check if you can repair this issue, this would fix some corrupted system files:
    Use the System File Checker tool to repair missing or corrupted system files
    http://support.microsoft.com/kb/929833
    Alex Zhao
    TechNet Community Support

  • How: Using the same control panel for multiple vi and propogatin​g changes to the control panel.

    I have created a labview project that contains about 40 vi.  Each vi has a control panel in common that is a group of ip address, or port address, and settings that are passed from high level vi to low level vi for the purposes of controlling and accessing our daq cards.  As this control panel exist in all vi's and is required to be identical there is a problem when needing make a change or update the controls during development.  The problem is how much time it takes to go and change every single vi's control panel.  I wish to have a way of propogating a change in the control panel across all vi simultaneously.
    All control in the control panel are in a bundle, so all values are passed in 1 wire. 
    I tried turning the control panel into a sub vi, and this way I can just "create control" and have outputs of the vi maniuplate settings, however if I update the vi, I still have to go back and create a new control for each vi as the control has changed.
    I have tried using the subpanel and creating the control panel in a sub vi that is displayed in the subpanel, but this gives the unwanted consequence of not being able to view or change settings on the control panel if the program is not running, as subpanels blank out when the program is not running.
    Is there another way to dispaly a subvi's front panel beside using a sub panel?  Is there a better way to propogate changes in a bundle throughout a series of vi? 
    JW
    Solved!
    Go to Solution.
    Attachments:
    Labjack Comm Settings.vi ‏15 KB

    Yes a type def would help you out and I'd take the next step to make it a strict type def if you want the appearence to be the same across all of its instances. You can also review this Nugget on Type definitions for more idea on this topic.
    Have fun,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How many JComboBox in my panel?

    Hi,
    I'm writing a simple JPanel which contains three JComboBox, one for the day, one for the month and one for the year. It works fine and the constructor is the following:
    public class DatePanel extends JPanel implements ItemListener{
         * The combobox for the day.
        protected JComboBox comboDay = null;
         * The combobox for the month.
        protected JComboBox comboMonth = null;
         * The year.
        protected JComboBox comboYear = null;
         * A flag that indicates if the user has manually changed the date.
        protected boolean dateHasChanged = false;
         * Creates and set up each component of this panel.
        protected void setUpGUI(){
         // get the current date
         Calendar today = Calendar.getInstance();
         // create the components
         this.comboDay = new JComboBox();
         for(int i=1; i<=31; i++)
             this.comboDay.addItem(i);
         this.comboMonth = new JComboBox();
         for(int i=1; i<=12; i++)
             this.comboMonth.addItem(i);
         this.comboYear = new JComboBox();
         int currentYear = today.get(Calendar.YEAR);
         for( int i= (currentYear - 60); i< (currentYear + 5); i++)
             this.comboYear.addItem(i);
         // add the null values
         this.comboDay.addItem("--");
         this.comboMonth.addItem("--");
         this.comboYear.addItem("--");
         this.comboDay.setSelectedItem("--");
         this.comboMonth.setSelectedItem("--");
         this.comboYear.setSelectedItem("--");
         // add the listener
         this.comboDay.addItemListener(this);
         this.comboMonth.addItemListener(this);
         this.comboYear.addItemListener(this);
         // display components
         this.setLayout( new FlowLayout() );
         this.add(this.comboDay);
         this.add(this.comboMonth);
         this.add(this.comboYear);
         * Builds a panel without initializing it with a specific date.
        public DatePanel(){
         super();
         this.setUpGUI();
        }then I've got a subclass of the above panel which adds two comboes, one for the hour and one for minute. This is also working fine, and I've got a flag that says if the above three comboes should appear or not in the panel:
    public class TimePanel extends DatePanel {
         * The comboHour selection combo box.
        protected JComboBox comboHour = null;
         * The comboMinute selection combo box.
        protected JComboBox comboMinute = null;
         * Builds the time panel with the specific comboboxes.
         * @param alsoDates true if also the dates should be visibles
        public TimePanel(boolean alsoDates){
         super();
         this.setUpGUI();
         // shuld the dates be available?
         if( ! alsoDates ){
             this.comboDay.setEnabled(false);
             this.comboMonth.setEnabled(false);
             this.comboYear.setEnabled(false);
             this.remove(this.comboDay);
             this.remove(this.comboMonth);
             this.remove(this.comboYear);
         * Sets up the components.
        @Override
        protected void setUpGUI() {
         super.setUpGUI();
         // add the time components
         this.comboHour = new JComboBox();
         for( int i=0; i<24; i++ )
             this.comboHour.addItem(i);
         this.comboHour.addItemListener(this);
         this.comboMinute = new JComboBox();
         for(int i=0; i<60; i++)
             this.comboMinute.addItem(i);
         this.comboMinute.addItemListener(this);
         this.add(new JLabel("hh:"));
         this.add(this.comboHour);
         this.add(new JLabel("mm:"));
         this.add(this.comboMinute);
        }As you can see, when I pass false to the constructor of the TimePanel, the comboes of the date panel are removed from the layout of the panel itself, thus showing only the hour and minute ones.
    Now I was writing a JUnit test for this, and surprisingly when I run a code like the following:
         TimePanel tp1 = timePanel = new TimePanel(false);
         Component[] components = tp1.getComponents();
         int comboCount = 0;
         // count how many jcombobox there are, since it has been initialized
         // with the time only, it should contain only 2 combobox (hour and minutes)
         for(int i=0;i<components.length; i++ )
             if( components[i] instanceof JComboBox )
              comboCount ++;I found that the number of comboes on my panel are 7[, that is more than the max (5) when all the components are displayed. What is wrong here?
    Thanks,
    Luca

    I found that the problem seems to be in the setUpGui method, that is called from the parent constructor and from the child constructor, thus displaying 7 comboes. But if I remove the call from the child constructor then it seems as the parent comboes are uninitialized and thus I got a nullpointer exception.
    If I modify the constructor of the TimePanel into this:
       public TimePanel(boolean alsoDates){
         this.setUpGUI();
         // shuld the dates be available?
         if( ! alsoDates ){
             this.comboDay.setEnabled(false);
             this.comboMonth.setEnabled(false);
             this.comboYear.setEnabled(false);
             this.remove(this.comboDay);
             this.remove(this.comboMonth);
             this.remove(this.comboYear);
        }and explicity call the super.setupgui into the setupgui method
      protected void setUpGUI() {
         super.setUpGUI();
         // add the time components
         this.comboHour = new JComboBox();
         for( int i=0; i<24; i++ )
             this.comboHour.addItem(i);
         this.comboHour.addItemListener(this);
         this.comboMinute = new JComboBox();
         for(int i=0; i<60; i++)
             this.comboMinute.addItem(i);
         this.comboMinute.addItemListener(this);
         this.add(new JLabel("hh:"));
         this.add(this.comboHour);
         this.add(new JLabel("mm:"));
         this.add(this.comboMinute);
        }I got that the hour and minute comboes are added twice, and moreover the day,month and year are not removed. What is the right way to call the setupgui method to do what I'd like?
    Luca

  • How to solve bootcamp control panel startup disk priviledge error?

    The rMBP's ssd is divided into 3 partions in MBR without MAC OSX partition, the boot camp assistant in mac is not used. A user in administrators is created in windows 8 enterprise 64 and this account is used to login into desktop. When clicking boot camp control panel, the startup disk error is showed and the control panel application can not be used.

    I converted current user account in windows 8 from administrator to normal users  group according with google and bootcamp works well. I should adapt to a normal user.

  • How can i use control panel in win vista

    Can i get an old version of icloud ( may be V.2 ) to install an use control panel in win Vista. The newest version (v. 3.1) only works in win 7 or win 8

    You can get ver. 2.1.2 here: http://support.apple.com/kb/DL1687.

  • HT204053 How to run icloud control panel on a users windows 8 desktop running in windows server 2012?

    I have a user on a virtual machine (server 2012) and their desktop is basically a windows 8 environment. When I tried to install icloud control panel 3 it fails, stating that it needs windows 8 or 7.
    Since it really is windows 8, but icloud doesn't see that, is it possible to fix this, so it can install?

    Hi jerelo:
    I have successfully installed iCloud Control Panel 3 on a machine running Windows Server 2012 R2. I am not running a VM on the server; rather, the users (about 10) connect via RDC. In any event, you might check out another thread related to Server 2008: https://discussions.apple.com/message/24899308#24899308.
    In the thread, a poster suggests modifying the install file to work on Server 2008 R2. I was experiencing the same problem you describe and after the fix detailed in the cited thread, iCloud installed without any problems. Now all users can access it as normal via RDC.
    I hope this helps,
    JW

  • How To Uninstall iCloud Control Panel for PC?

    Hi all,
    I'd downloaded and installed 'iCloud Control Panel'. I wasn't impressed by it, I attempted to uninstall it from the "Uninstall a Program" (from Control Panel). Just to find out, would there be any security loophole if we were to uninstall 'iCloud Control Panel'? Would there be any folder related to iCloud in the 'Program' folder within the C Drive that I need to clear/delete?
    Also, is icloud.com the place to access the stored data?
    Thank you.

    You have to SIGNOUT first from ICloud. Then you can uninstall it by going to the control panel in Windows and then you have the one which permits to remove program. However, a lot and I mean of lot of stuff is left behind.  I have done the operation a few times and I had to use GHOST to bring back my machine to a state before doing those operation.  I bought a commercial uninstaller to help and even then there is so much &_?)))&&&  left it is a shame.  I had to go directly into the Registry to finally get rid of the ICloud Control Panel appearing despite the fact it let to nothing.
    I wonder why Apple does not provide a true uninstaller to totally clean the machine. 

  • How many Java Console add-ons do I need? I have 6.0.02 thru 6.0.21

    This is really for information. I have lots of Java Consoles as add-ons. All apparently enabled. Do I need them all or can I remove all but the last

    How to remove multiple Java Console extensions: http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    <br />
    You need to update your plugins. It is important to keep them updated due to continuing security fixes and improvements in those plug-ins:
    * Adobe PDF Plug-In For Firefox and Netscape 8.2.4
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use Firefox to download and SAVE the installer to your hard drive from the link in the article below
    #**On the Adobe page, un-check any extra items (i.e. Free McAfee® Security Scan Plus) then click Download button
    #**If you see message just under tabs, DO NOT click the Allow button, instead click below that where it says "click here to download".
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link and more information</u>''': https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    #*After the installation, start Firefox and check your version again.

  • ITunes 11 - how to disable iCloud Control panel download prompt (Corporate environment)

    we dont want iCloud running in our corporate environment. are there any new Adminflags to disable this feature?
    thanks

    Any news on this?
    I'm currently involved in trying to get this solved for our company installations.
    Any AdminFlag or other setting to disable this prompt?

  • How many classes should a .java file contain?

    Are there any general guidelines on how many Java classes should be contained in a single .java file? I've been creating a new .java file for each class I write but see examples in Sun's Java tutorial where there are at least two classes in a single .java file. One such case is the TableDemo example at
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/TableDemo.java
    Thanks.

    The example you point to isn't really more the one class in one java file. It makes use of an inner class. An inner class is something different! As far as I understand it, it is mainly used to implement some behaviour (in this case AbstractTableModel behaviour). If the MyTableModel was in a separate class file, it couldn't access the variable of the main TableDemo class. So they use an inner class.
    So unless you need inner classes, this example is no reason to put more than one class in a .java file. In general, just put one class in a .java file. It's easier for everybody.

  • Either I can't find my printer control panel or it does not have the scan icon

    I have an HP Deskjet 3055A J611 Series, which is running on Windows 7.
    It is important that I scan several pages and place them all in one file.  I understand that this requires that I access the printer control panel.  I have accessed the printer through the icon "devices and printers",  and the panel that comes up have only the following 4 items:  am unable to scan from my printer control panel: HP Printer Assistant; See What's Printing; Set Preferences; Customize your Printer.  Perhaps this is not the control panel?  If not, then I do not know how to access the control panel.  On the other hand, if this is the control panel, then it does not have all of the icons and I do not know why.  Could you please help?  If I can't get this straightened out, I will need to find another printer that can easily scan documents with several pages onto one file.
    Thank you in advance,
    Maria ROBLE
    Language-incontext, FRANCE

    Welcome to the forums @CLEANA , Maria
    I understand you are not seeing the options within the Printer Assistant to change the scan options to allow you to save a multi-page scan as one file.
    I would first suggest installing the Full Feature Driver to install the scanning options.
    Click here to download: HP Deskjet Full Feature Software and Drivers
    Afterwards, you should see the printer software on your Desktop, open it up, click on Scan a Document or Photo, select the "Advance" option and you should see this box to check mark to select:
    I hope that helps!
    Happy Tuesday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

Maybe you are looking for

  • Application list is empty-- Firefox 25.0.1

    Using 25.0.1 under Windows 7, out of nowhere the list of applications has completely disappeared--no file associations of any kind, and I'm unable to add any new ones. I've created a new profile, reset Firefox, done a complete uninstall and reinstall

  • My new tab doesn't work like before.

    Hello, I can't speak English well. Please don't use difficult words. Before when I clicked on + for open a new tab, a tab opened. On the new tab I could see icons for famous web like Facebook, YouTube, Google , yahoo and .... But now when I open a ne

  • EMPTY LINE IN MAIN WINDOW OF SMARTFORM

    Hi All! I am designing  a smartform in which i had included several windows.I have a query on the main window. My main window is displaying several line items through table one by one.Now my requirement is to put one blank line in between every line

  • How to restore original size of placed and fitted image?

    If an image is placed to the frame, fitted to it, file saved. When I open it again, is there the way to restore the original size of the image? Thank you in advance for any help. Vera

  • SQL Error: ORA-01861: literal does not match format string

    Hello, I'm trying to do data mining on a web log which recorded one day web access information from a busy web server. I imported the data into Oracle Data miner, and created a table (WEBLOG). The idea is to create a new field, i.e. session, for the