JCheckBox Disabled Text Color

Hello,
I realize this is probably an old and rather tired question, but,
I have run into an interface application where 'GREY' disabled text
is not such a good idea.
Is there a way to change the disabled behavior of a JCheckBox
to make the disabled text something other than grey?
Thanks for any insight.
Peter

Try adding this before you create any JCheckBoxes and it will change it for all of them:
UIManager.put("CheckBox.disabledText", myCustomColor)

Similar Messages

  • Disabled Text in Metal Check/Radio boxes

    I noticed that the paint method in MetalRadioButtonUI does not get its disabled text color from UIManager("RadioButton.disabledText") OR from getDisabledText(). Why not? or, am I mistaken? It's causing me a lot of trouble to change the disabled text color... Is there a way to change it?
    Joel

    Hi Sean
    In addition to what jbradley88 offered, there is one other
    factor that could be at play here.
    Do the captions look okay on some PCs and not on others? If
    so, it could point to an issue with the DPI settings for the PC. If
    this is the case, you will want to perform the following steps on
    the PCs where this is an issue.
    * Display the Windows Desktop (Easily done by pressing the
    Windows key and the D key together)
    * Right-click the Windows Desktop and choose Properties from
    the context menu
    * Click the Settings tab
    * Click the Advanced button
    * Click the General tab
    See the drop-down labeled DPI setting? If that is set to 120,
    try setting to 96 and see if things improve.
    This may not be what is at play, but I've seen it have an
    impact on other display issues.
    Cheers all... Rick

  • Text Color in disabled text field

    Hi,
    In our application, The default rendered text in disabled fields is not visible properly. In order to improve the visibility we applied different color using content style for those fields.
    We did see the change in the fields after applying content-style. But it is a painful job to apply the content-style for each input field.
    Is there a way to configure default text color in ADF which is applicable for all the disabled fields in the application?
    We also tried the option of setting the color using css in following manner:
    af|inputText::content{color:#333333;}
    But this didn't have any impact on the text color.
    Please let us know if we can achieve this through a single point fix in the code.
    Thanks
    Ravi

    Hi Dimitar,
    The :rtl is a special case, as is :ltr and :alias. These are always placed at the end and are purely for the engine, they do not generate any style class on the DOM whereas other peudo classes generate a p_AF<state> class on the MAIN DOM element, which is why you must place the class on them. For example:
    af|inputText:disabled::content becomes
    In the CSS: af_inputText.p_AFDisabled af_inputText_content
    In the HTML <span class="af_inputText p_AFDisabled"><input class="af_inputText_content">
    Regards,
    ~ Simon

  • How to set Disabled Text field's Background color

    We have an Applet application which we are running with Java Plug-in 1.5.0_11. We have Grey back ground for all the pages. When the text fields are in editable mode the text color is in black. When they are in non editable mode the text color changes to opaque green (with grey background page color) which is hard to read.
    The same application with Java Plug-in 1.4.2_13 did not had this color problem. When text fields were disabled they appeared as dark grey which was easy to read.
    We are using
    import javax.swing.JTextField;
    Is it a bug in newer Java Plug-in? Is there a work around for this?
    Thanks for any help and suggestions

    Solved this myself by writing a programmatic skin and set it to LinkButton's disabledSkin.

  • How to set disabled foreground color of JCheckBox?

    How do I set the disabled foreground color of JCheckBox? To clarify, I want to choose the color that is used to paint the component's foreground when it is disabled.
    thanks.

    Check out this thread:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=122112

  • Change disabled JLabel text color

    Hi all
    I have some JLabels labelled black on grey color.
    When I disable them, the text color is too close to th background color to keep them readable. Is there a way to change the disabled color of the text to keep it dark enough to be read?
    Thanks

    import java.awt.*;
    import java.util.*;
    import javax.swing.*;
    public class Test {
        public static void main(String[] args) {
             UIDefaults uid = UIManager.getLookAndFeelDefaults();
             for(Iterator i = uid.keySet().iterator(); i.hasNext(); ) {
                 String key = (String) i.next();
                 if (key.startsWith("Label"))
                    System.out.println(key);
             UIManager.put("Label.disabledForeground", new Color(0x80, 0x40, 0));
             JPanel contentPane = new JPanel();
             JLabel label1 = new JLabel("This one is enabled");
             label1.setOpaque(true);
             contentPane.add(label1);
             JLabel label2 = new JLabel("This one is disabled");
             label2.setOpaque(true);
             label2.setEnabled(false);
             contentPane.add(label2);
             final JFrame f = new JFrame();
             f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             f.setContentPane(contentPane);
             f.pack();
             SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • How to set selected text color in Spark TextInput

    I'm trying to make Spark TextInputs and MXFTETextInputs look like Halo/MX TextInputs as much as possible, since I have a mix of both Spark and MX TextInputs in my application. I know I can set the
    selection background color to black using focusedTextSelectionColor. How can I set the selected text color to white so it matches the MX white-on-black look?

    This works, if you set the enabled property directly on the s:TextInput:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <s:layout>
            <s:VerticalLayout horizontalAlign="center" verticalAlign="middle" />
        </s:layout>
        <s:controlBarContent>
            <s:CheckBox id="ch" label="enabled" selected="true" />
        </s:controlBarContent>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|TextInput:disabled {
                color: red;
        </fx:Style>
        <s:Group>
            <s:TextInput id="ti" text="The quick brown fox jumps over the lazy dog" enabled="{ch.selected}" />
        </s:Group>
    </s:Application>
    It can get a bit trickier when you're setting the enabled property on a parent container, since (I believe) that the child control's enabled properties are still set to true and just the container is disabled. One possible workaround would be to bind the child TextInput control's enabled property to the container's enabled property. That way the s:TextInput should still go to it's disabled state and you can customize the disabled state's styles to have darker text, or whatever else you want.
    <s:Group id="gr" enabled="{ch.selected}">
        <s:TextInput id="ti" text="The quick brown fox jumps over the lazy dog" enabled="{gr.enabled}" />
    </s:Group>
    Peter

  • Disable text as black

    When I export my book to PDF some text in some documents prints as low resolution dark black. My documents in InDesign show no sign of this. I read that "disable text as black" could be a potential solution. Where would I find this option -- I don't see it in my output choices. I'm an extreme newbie -- please keep it simple.Thanks.

    I think we are going to need a lot more information, and maybe some screen shots.
    Text as Black is an option you must select, not on bey default, and it is there for when you are printing a document with colored text to a monochrome printer so you get readable solid black text. Text that is colored 100%K only is not as dark in print as text that also has CMY mixed with it. If you are printing color document to a monochrome printer you should set your Appearance of Black settings in the preferences to Output All Blacks as Rich Black or 100K will print as a dark gray (somewhere in low to mid 90% black range) because the 100% black output is used for darker rich black objects.

  • Changing JCheckbox's foreground color..

    Hi Guys...
    I want to change the foreground color of the checkmark that appears in the jcheckbox when it is checked.. Is this possible to do? I have read problems with the disabled background color... But I have not found anything on how to change the foreground color of the checkmark when its checked... I tried doing "setForeground(Color.red)" but it does not work..... Thanks alot in Advance...

    I tried the change color when selected, it doesn't seem to work. However, you can change the icons used on a JCheckbox, the appended code does just that, it uses a collection of CD Player icons for the example, but you could draw or load anything you want. You might also find the CD icons useful for other purposes.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    class TestChk extends JFrame
         Container cp;
         JCheckBox c2;
         TestChk()
              cp = getContentPane();
              addWindowListener(new WindowAdapter()
              {public void windowClosing(WindowEvent evt){System.exit(0);}});
             JCheckBox cb = new JCheckBox();
             CdIcon ic = new CdIcon(CdIcon.CdiStop,16,16,Color.BLACK);
             cb.setIcon(ic);
              CdIcon sic = new CdIcon(CdIcon.CdiPlay,16,16,Color.RED);
              cb.setSelectedIcon(sic);
              JPanel p = new JPanel();
              p.add(cb);
              cp.add(cb,BorderLayout.NORTH);
              pack();
         static public void main(String[] args){new TestChk().show();}
    class CdIcon implements Icon
         public static final int CdiStop = 0;
         public static final int CdiPlay = 1;
         public static final int CdiPause = 2;
         public static final int CdiRewind = 3;
         public static final int CdiFastBack = 4;
         public static final int CdiFastForward = 5;
         int type;
         int height, width;
         int iheight, iwidth;
         int left, top;
         Color clr;
         CdIcon(int t, int h, int w, Color c)
              type = t;
              height = h;
              width = w;
              iheight = (int)(.75*(float)height);
              iwidth = (int)(.75*(float)width);
              top = (int)(.125*(float)height);
              left = (int)(.125*(float)width);
              clr = c;
         public int getIconWidth(){return width;}
         public int getIconHeight(){return height;}
         public void paintIcon(Component c, Graphics g, int x, int y)
              int itop, ileft;
              itop = y + top;
              ileft = x + left;
              int[] xp;
              int[] yp;
              int xd;
              if(c.isEnabled())g.setColor(clr);
              else g.setColor(Color.gray);
              switch(type)
                   case CdiStop:
                        g.fillRect(ileft,itop,iwidth,iheight);
                        break;
                   case CdiPlay:
                        xp = new int[]{ileft,ileft+iwidth,ileft};
                        yp = new int[]{itop,(itop+(iheight/2)),itop+iheight};
                        g.fillPolygon(xp,yp,3);
                        break;
                   case CdiPause:
                        xd = iwidth /4;
                        g.fillRect(ileft,itop,xd,iheight);
                        g.fillRect(ileft+iwidth-xd,itop,xd,iheight);
                        break;
                   case CdiFastForward:
                        xd = iwidth /2;
                        xp =new int[]{ileft,ileft+xd,ileft};
                        yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                        g.fillPolygon(xp,yp,3);
                        xp =new int[]{ileft+xd,ileft+xd+xd,ileft+xd};
                        g.fillPolygon(xp,yp,3);
                        break;
                   case CdiFastBack:
                        xd = iwidth /2;
                        xp =new int[]{ileft+xd,ileft,ileft+xd};
                        yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                        g.fillPolygon(xp,yp,3);
                        xp =new int[]{ileft+xd+xd,ileft+xd,ileft+xd+xd};
                        g.fillPolygon(xp,yp,3);
                        break;
                   case CdiRewind:
                        int xm = iwidth/8;
                        int xleft = ileft+xm;
                        xd = (iwidth-xm)/2;
                        g.fillRect(ileft,itop,xm,iheight);
                        xp =new int[]{xleft+xd,xleft,xleft+xd};
                        yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                        g.fillPolygon(xp,yp,3);
                        xp =new int[]{xleft+xd+xd,xleft+xd,xleft+xd+xd};
                        g.fillPolygon(xp,yp,3);
                        break;
                   default:
                        g.drawRect(ileft,itop,iwidth,iheight);
                        break;
    }

  • Disabled foreground color in JComboBox

    what's the correct way to set the disabled foreground color of a jcombobox? i don't want to set the disabled color for the entire ui to the same color, but for one jcombobox specifically. i searched the web and found many posts with the same question, but no real solution. this one has been giving me nightmares and i thought i'd share what i've found. the solution seems to be quite simple: wrap the combobox label in a panel. that way the panel gets the disabled colors, but the coloring of the label of the combobox remains. here's the solution in short in case others need it:
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.ListCellRenderer;
    public class MyComboBox extends JComboBox {
      public MyComboBox() {
        super();
        setRenderer( new ColorCellRenderer());
      public static void main(String s[]) {
        JFrame frame = new JFrame("ComboBox Example");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        final JComboBox cb = new MyComboBox();
        cb.addItem( "ComboBox Item 1");
        cb.addItem( "ComboBox Item 2");
        cb.addItem( "ComboBox Item 3");
        cb.setForeground( Color.blue);
        final JButton bt = new JButton ("disable");
        bt.addActionListener( new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            cb.setEnabled( !cb.isEnabled());
            if( !cb.isEnabled()) {
              cb.setForeground( Color.red);
              bt.setText( "enable");
            } else {
              cb.setForeground( Color.blue);
              bt.setText( "disable");
        frame.getContentPane().setLayout( new FlowLayout());
        frame.getContentPane().add( bt);
        frame.getContentPane().add( cb);
        frame.pack();
        frame.setVisible(true);
      class ColorCellRenderer implements ListCellRenderer {
        protected DefaultListCellRenderer defaultRenderer = new DefaultListCellRenderer();
        public Component getListCellRendererComponent(JList list, Object value,
            int index, boolean isSelected, boolean cellHasFocus) {
          JLabel label = (JLabel) defaultRenderer
              .getListCellRendererComponent(list, value, index,
                  isSelected, cellHasFocus);
          JPanel wrapper = new JPanel();
          wrapper.setLayout( new BorderLayout());
          wrapper.add( label, BorderLayout.CENTER);
          return wrapper;
    }if anyone knows a way to remove the dropdown button of a disabled combobox without leaving a blank space when you simply hide the button, feel free to extend this :-)
    Edited by: Lofi on Mar 20, 2010 10:46 PM

    i thought i'd share what i've found. the solution seems to be quite simple: wrap the combobox label in a panel.Brilliant! I'm sure this will be useful to others who find this solution here.
    Your code does have some unnecessary overheads though, like constructing a new JPanel in every call to getListCellRendererComponent, and holding a separate renderer as a field. I've attempted to clean it up for brevity and efficiency.import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.JCheckBox;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class DisabledForegroundListCellRenderer extends DefaultListCellRenderer {
      private final JPanel wrapper = new JPanel(new BorderLayout());
      public DisabledForegroundListCellRenderer() {
        wrapper.add(this);
      @Override
      public Component getListCellRendererComponent(JList list, Object value,
              int index, boolean isSelected, boolean cellHasFocus) {
        super.getListCellRendererComponent(list, value,
                index, isSelected, cellHasFocus);
        return wrapper;
      // Test rig
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new DisabledForegroundListCellRenderer().makeUI();
      public void makeUI() {
        String[] data = {"One", "Two", "Three"};
        final JComboBox combo = new JComboBox(data);
        combo.setRenderer(new DisabledForegroundListCellRenderer());
        final JCheckBox check = new JCheckBox("Combo enabled");
        check.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            boolean selected = check.isSelected();
            combo.setForeground(selected ? Color.BLUE : Color.RED);
            combo.setEnabled(selected);
        check.doClick();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.add(check, BorderLayout.NORTH);
        frame.add(combo, BorderLayout.SOUTH);
        frame.pack();
        frame.setVisible(true);
    }I've also changed the class name, as to me "ColorCellRenderer" would rather imply something that renders either the foreground or the background (or both) on the basis of the value parameter.
    if anyone knows a way to remove the dropdown button of a disabled combobox without leaving a blank space when you simply hide the buttonThat would require a custom UI delegate, not a custom renderer. And really, I wouldn't bother -- I would just use a JComboBox and a disabled (or maybe uneditable) JTextField, held in a CardLayout, and swap them instead of disabling the combo.
    Shall take a look at how the combo UIs reserve space for the button though :)
    luck, db
    Edited by: DarrylBurke -- changed wrapper to private final, it shouldn't be static

  • Slider with Synth - Problems setting tick and text color

    Hi,
    I'm currently using Synth and I'm having some problems with sliders. The sliders appear and work fine, although I can't seem to change the color of the ticks and text.
    I would like the ticks and text to be orange, but it seems to default to black. I tried changing this in the Slider section of my Synth file (see below) but with no luck.
    Would anyone have any suggestions?
    Thanks in advance for your help.
       <!-- ================================= -->
       <!-- SLIDER TRACK -->
       <!-- ================================= -->
       <style id="SliderTrackStyle">
          <imagePainter method="sliderTrackBackground" path="images/Slider/slider_track.png"
                        sourceInsets="7 7 7 7" destinationInsets="7 7 7 7" paintCenter="true"
                        stretch="true" center="false" />
          <state value="DISABLED">
             <imagePainter method="sliderTrackBackground" path="images/Slider/slider_track_disabled.png"
                           sourceInsets="7 7 7 7" destinationInsets="7 7 7 7" paintCenter="true"
                           stretch="true" center="false" />
          </state>
       </style>
       <bind style="SliderTrackStyle" type="region" key="SliderTrack" />
       <!-- ================================= -->
       <!-- SLIDER THUMB -->
       <!-- ================================= -->
       <style id="SliderThumbStyle">
          <font name="Arial" size="1" style="BOLD"/>
          <state>
             <!-- How do we set the slider text and tick colour -->
             <color type="TEXT_FOREGROUND" value="#8f5f00"/>
             <imagePainter method="sliderThumbBackground" direction="horizontal"
                           path="images/Slider/slider_thumb.png" center="true" />
             <imagePainter method="sliderThumbBackground" direction="vertical"
                           path="images/Slider/slider_thumb.png" center="true" />
          </state>
          <state value="PRESSED">
             <!-- How do we set the slider text and tick colour -->
             <color type="TEXT_FOREGROUND" value="#8f5f00"/>
             <imagePainter method="sliderThumbBackground" direction="horizontal"
                           path="images/Slider/slider_thumb_pressed.png" center="true" />
             <imagePainter method="sliderThumbBackground" direction="vertical"
                           path="images/Slider/slider_thumb_pressed.png" center="true" />
          </state>
          <state value="DISABLED">
             <imagePainter method="sliderThumbBackground" direction="horizontal"
                           path="images/Slider/slider_thumb_disabled.png" center="true" />
             <imagePainter method="sliderThumbBackground" direction="vertical"
                           path="images/slider_thumb_disabled.png" center="true" />
          </state>
       </style>
       <bind style="SliderThumbStyle" type="region" key="SliderThumb" />
       <!-- ================================= -->
       <!-- SLIDER -->
       <!-- ================================= -->
       <style id="SliderStyle">
          <property key="Slider.paintValue" type="boolean" value="false" />
          <property key="Slider.thumbWidth" type="integer" value="14" />
          <property key="Slider.thumbHeight" type="integer" value="14" />
          <!-- Cant seem to set the tick or text color -->
          <!-- <property key="Slider.tickColor" type="color" value="#8a8a00" /> -->
       </style>
       <bind style="SliderStyle" type="region" key="Slider" />Edited by: robben07 on May 18, 2010 7:36 AM

    I put the following code in the Title and it worked...
    <B><font face="Arial" size="+3" color="#244764">Text.....</FONT>
    the only problem is to know how to center it (I've tried putting <CENTRE> html tag but it's not working)... can you please advice...
    Thanks again for your assistance

  • After use af:inputtext disbled poperty text color is not showing in IE 8...

    Hi All,
    I am using  JDeveloper 11.1.1.4.
    My Scenario is I have one jspx with multiple <af:inputtext> it will show different colors in texts.
    But after  add the disabled property in <af:inputtext> it's not showing any content colors in IE 8.(working fine Chrome&Firefox) .
    My Jspx :
      <af:inputText  value="Check the Style"  disabled="true" label="Colors"  id="it1"></af:inputText>
    My CSS:
    af|inputText::content
    text-align: right;
    color: red ;
    Is this is bug in IE 8 ? or bug in ADF ?
    Thanks
    David ...

    Hi,
    This does not work as we can not change the disable text colour using css in Internet explorer.
    https://forums.oracle.com/thread/1001999
    Thanks

  • Problem editing text color and page properties due to favicon link

    I recently added a link to a sites favicon using the link tag. Following advice on the net this was added beneath the HTML tag and before the HEAD tag. I was using a Dreamweaver template for the site and it updated all pages with the new link in the non-editable area above HEAD and just after the template declaration.
    This was fine, unitl the user went to edit the site. He found that he could no longer get to page properties as he got an error that no page properties existed in editable areas... although there was an editable region for the page title. Also text color and highlighting were now disabled.
    Moving the link tag into the head area has resolved the editing issue, but it seems a strange bug. Is there some way to add something between HTML and HEAD and have it appear before the InstanceBegin of the template?

    You can edit text in any PDF by using trial version but as for as my knowledge and limited experience with Adobe I could not find any text color option in Adobe Acrobat. But you can highlight text in Adobe Acrobat. If you want to change the text color in PDF, I would like to recommend some another software which allows you to change the color of text and is available for download here.
    Let me tell you how can change text color using this software. Open PDF file > go to "edit tab" > Click "edit" then highlight text to change the color. As you can see in the below screenshot.
    Free free to ask. Hope it helps you. Don't forget to come back to share your views.
    Thanks

  • Adf disable text skin class

    Hi,
    in my application there is some disable text. like text inside a input text which is in disable state. for those text i want to give a specific font style and size. now its comming some default font.
    how can i do that?
    thanks in advance..

    Hi..
    I will suggest archive that another way ,
    use contentStyle="color:#000000;"
    Ex
    <af:inputText value="REDTEXT" id="id12" disabled="true" contentStyle="color:#000000;">

  • How do I change the text color of footers on select pages? (InDesign CS6)

    Good afternoon,
    Months ago, I worked with a graphic designer to put together a 100-page workbook for my training company. He turned all of the files over to me and I'd like to make a small change before we print another run for a new client. Specifically, I'm having trouble changing the text color on select pages. Since a picture says 1,000 words, let me give you an example:
    As you can see, the copyright information on the right side of the page is difficult to read here when placed over the photo (you may have to look closely, but it's along the guy's sleeve). What I'd love to do is change that part of the footer (not the left, page number side) to white text. This would make it quite a bit easier to read. There's a number of other pages in the book that I want to make this change to. I'm not sure why I never noticed it or mentioned it to the designer. I suppose I've become more discerning since then.
    Let me tell you what I've tried to do:
    I learned how to override master pages by CTRL+SHIFT clicking on the footer. However, this has not worked for me. It allows me to change the page number part, but not the copyright side. Additionally, sometimes when I override the master the formatting of the footer goes goofy. For instance, the left side and right side come together and end up in the middle of the page I'm working on.
    I'm looking for a quick way to go through and make the footers easier to read on pages where they are backed by a photo. Hoping you can help me. Please let me know if you need any other information.
    Best,
    Taylor

    I think you should have left it as it was. It seems like what you had was single pages flowing as spreads within InDesign. Like below. That is the correct way, and when you changed it to all single, it did create your footer problems.
    Will you be sending the file as a PDF to your online printer? If so, then leaving the InDesign file set as below is fine. The PDF output will separate the pages.
    All you have to do is make sure that Pages, not Spreads, is chosen when you output the PDF

Maybe you are looking for

  • Mail app in ios8 crashes on opening

    Recently upgraded iPad 2 to iOS 8, now Mail app crashes on opening. have both reset, restarted/rebooted device, no change !!!

  • Java EE 5 download?

    Does anyone know of a page where I can download the Java EE 5 SDK? I have the SE 5, but I'm working with JWSDP 2.0 and it requries some classes that aren't in the SE. Every link I try on Sun (Oracle's) site takes me to the EE 6 download page. It's re

  • SCCM 2012 Reporting Services Website

    Can someone point me to a how-to for configuring the Reporting Services website?  The URL for our 2007 server is http://<server name>/SMSReporting_<site code>, but I can't figure out how to access the reporting website for SCCM 2012.

  • VLO6if will not show PGR Date in inbound delivery

    hi Gurus,             VL06IF will not show the Post good receipt date of an inbound delivery, need this date inserted in the report.last column good recepit does not show any dates showing last column empty please check thanks, Joan

  • Cannot change KDE menu entries

    Hi all! I installed Enemy Territory and I wanted to edit the menu entry in KDE. I command from et to et2, an edited version of et. When I save the menu and look back I see the entry has not changed. How can I get KDE to remember my changes? I use KDE