Decorate window of class extending JFrame

Hello,
I have a class that extends JFrame and I'd like to set it's look decorated the same way that it does when a new JFrame is built inside the code. Currently it's got the regular Java look (if I create a JFrame somewhere in the code it has the look I want), the following code didn't help, it only sets the subsequently created JFrames decorated:
    GUI frame = new GUI(); //GUI extends JFrame
    UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
    frame.setDefaultLookAndFeelDecorated(true);

Thanks for your reply. I already read that, in fact the section "Programmatically Setting the Look and Feel " instructs to write the code I posted on the previous post. I also tried:
UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
SwingUtilities.updateComponentTreeUI(this);And it didn't work. The main frame has the regular LNF and subsequently created JFrames will have the javax.swing.plaf.metal.MetalLookAndFeel
Also, after the code I posted on my previous post, GUI.isDefaultLookAndFeelDecorated() returns true.
Thanx in advance! :)

Similar Messages

  • Which is better? Extend JFrame or Wrap it in a class???

    Just a random thought, have been programming swing for a long time now and during the time have been researhed a lot of swing examples on web and found out that most people tend to make a class extend JFrame in order to use it stuff.
    However the way i've been programming is to wrap it around a class by creating an instance of JFrame inside my class. In that way i feel is more easier to program.
    But which is better style of programming and which is better programming technique in terms of robustness, reusablitity & good general programming practice?

    The usual answer, it depends. If you don't want to change a JFrame's behaviour, you wrap it. If the JFrame class is lacking a feature you need, you extend it and implement the desired feature.

  • Getting grid layout to work with a class that extends JFrame

    In my code, I have a class extending JFrame and setting the layout to grid works and the code to add with three parameters compiles just fine but when I run it I get this:
    java.lang.IllegalArgumentException: illegal component position
         at java.awt.Container.addImpl(Container.java:999)
         at java.awt.Container.add(Container.java:928)
         at javax.swing.JFrame.addImpl(JFrame.java:479)
         at java.awt.Container.add(Container.java:928)
    on the add(myLabel, 1, 1); line

    I see on these from
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Container.html#add(java.awt.Component)
    1.public Component add(Component comp)
    2.public Component add(String name, Component comp)
    3.public Component add(Component comp, int index)
    you should use method add(...) of JPanel instead

  • Extending JFrame

    Hi Everyone, I want to create my own utility class named as MyJFrame which will extend the JFrame, so that I can extend MyJFrame instead of JFrame while creating any application. My application will not use the JFrame, instead it will use the MyJFrame, but still I should be able to do all the things which we generally do while developing any application using JFrame.
    I want to do this because I want to provide some more operations to a application developer along with the JFrame.
    To achieve this what are the things I will have to do? If you have any idea about doing this, please guide me.
    Thanks and Regards.

    nikhil_shravane wrote:
    one of them may be MyJFrame extends JFrame, but still no idea what to do further so that MyJFrame will have all the behaviors of JFrame. ?
    suggest me other ideas also.If your class extends JFrame, it will automatically have all of the "behaviors" of JFrame. What functionality do you think you will lose by extending the class? You are being very vague in your question; please provide a specific question or concern or you might not get much help.
    As Encephalopathic says, many people will advise you not to extend JFrame at all, telling you to google [Composition vs. Inheritance|http://www.javaworld.com/javaworld/jw-11-1998/jw-11-techniques.html]. However if you really insist on going the "inheritance" route, I'd suggest extending JRootPane as opposed to JFrame. JRootPane provides all of the functionality you really use in an appliction (menu bar, manages the content pane, glass pane, etc.), and extending and using it as your base class for a generic "application" would allow you to shove your "application base" into JApplets as well as JFrames.

  • Class extends question

    Hi Ive written a program in java3D and my class extends JFrame because i using swing for my GUI however i now want to use the mouse picking thing in java to click on shapes on my canvas which i see isnt 'too' hard but i cant now extend a second thing can i? is there a way around it? the code below is exactly what i want but it extends MouseAdapter which mine cant ?
    import com.sun.j3d.utils.picking.*;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    import com.sun.j3d.utils.geometry.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.awt.event.*;
    import java.awt.*;
    public class Pick extends MouseAdapter
      private PickCanvas pickCanvas;
    public Pick()
        Frame frame = new Frame("Box and Sphere");
        GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
        Canvas3D canvas = new Canvas3D(config);
        canvas.setSize(400, 400);
        SimpleUniverse universe = new SimpleUniverse(canvas);
        BranchGroup group = new BranchGroup();
        // create a color cube
        Vector3f vector = new Vector3f(-0.3f, 0.0f, 0.0f);
        Transform3D transform = new Transform3D();
        transform.setTranslation(vector);
        TransformGroup transformGroup = new TransformGroup(transform);
        ColorCube cube = new ColorCube(0.3);
        transformGroup.addChild(cube);
        group.addChild(transformGroup);
        //create a sphere
        Vector3f vector2 = new Vector3f(+0.3f, 0.0f, 0.0f);
        Transform3D transform2 = new Transform3D();
        transform2.setTranslation(vector2);
        TransformGroup transformGroup2 = new TransformGroup(transform2);
        Appearance appearance = new Appearance();
        appearance.setPolygonAttributes(new PolygonAttributes(PolygonAttributes.POLYGON_LINE, PolygonAttributes.CULL_BACK,0.0f));
        Sphere sphere = new Sphere(0.3f,appearance);
        transformGroup2.addChild(sphere);
        group.addChild(transformGroup2);
        universe.getViewingPlatform().setNominalViewingTransform();
        universe.addBranchGraph(group);
        frame.addWindowListener(new WindowAdapter() {
           public void windowClosing(WindowEvent winEvent) {
              System.exit(0);
        frame.add(canvas);
        pickCanvas = new PickCanvas(canvas, group);
        pickCanvas.setMode(PickCanvas.BOUNDS);
        canvas.addMouseListener(this);
        frame.pack();
        frame.show();
    public static void main( String[] args )
        new Pick();
    public void mouseClicked(MouseEvent e)
        pickCanvas.setShapeLocation(e);
        PickResult result = pickCanvas.pickClosest();
        if (result == null)
           System.out.println("Nothing picked");
        else
           Primitive p = (Primitive)result.getNode(PickResult.PRIMITIVE);
           Shape3D s = (Shape3D)result.getNode(PickResult.SHAPE3D);
           if (p != null)
              System.out.println(p.getClass().getName());
           else if (s != null)
                 System.out.println(s.getClass().getName());
           else
              System.out.println("null");
    }

    hi,
    first, you don't have to extend JFrame (even it seems convenient), try to honor the composition over the inheritance. second, if you listen to key or mouse events, usually it's enough and perfectly ok to implement proper listener interface and then implement its methods (fulfill the contract).
    what you did (extnding some mouse listener) i would assume that you're trying to implement a new mouse listener with specific behavior. but what you actually want is just to use it.
    this question is "on the edge" since it involves some general design decisions (so it could be in java programming section) and at the same time it touches the j3d apis (so it can be here).
    hope it helped;)

  • Invoke a panel object in a class which extends JFrame

    I have a class LoginUI which extends JFrame and another class NewUserUI which extends JPanel. The LoginUI contains a button which when clicked should display the NewUserUI panel in a separate window. How should I invoke the NewUserUI object in the LoginUI class?

    One possibility would be the use of a JOptionPane containing the JPanel.
    Cheers
    DB

  • Japplet is not able to call a class that extends JFrame in internet Explore

    Hi
    I am doing an application on Japplet.The Japplet class calls anathor class which extends JFrame.When I am running this appication on Applet Viewer it works fine.but when I am running this aplication in internet Explorer the Frame window doesn't come.What might be the problem.
    Thanks
    Srikants

    There is no error or exceptio comming when i am running that application on Internet Explorer.Convert the html page to use the object tag instead of the applet tag.
    The IE build in jre (called msjvm) cannot display JFrame since the version is
    1.1.2 and it has no javax classes.
    Still problems?
    A Full trace might help us out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • Adding a JPanel from one class to another Class (which extends JFrame)

    Hi everyone,
    So hopefully I go about this right, and I can figure out what I'm doing wrong here. As an exercise, I'm trying to write a Tic-Tac-Toe (TTT) game. However, in the end it will be adaptable for different variations of TTT, so it's broken up some. I have a TTTGame.java, and TTTSquareFrame.java, and some others that aren't relavent.
    So, TTTGame:import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import joshPack.jUtil.*;
    public class TTTGame extends JFrame
         private Integer sides = 3;
         private TTTSquareFrame mainSquare;
         private TTTGame newGame;
         private Container contents;
         private JPanel mainSquarePanel, addPanel;
         public static void main(String [] args)
              TTTGame newGame = new TTTGame();
              newGame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public TTTGame()
              super("Tic-Tac-Toe");
              contents = getContentPane();
              contents.setLayout(new FlowLayout());
              addPanel = startSimple();
              if(!addPanel.isValid())
                   System.out.println("Something's wrong");
              contents.add(addPanel);
              setSize(300, 300);
              setVisible(true);
         public JPanel startSimple()
              mainSquare = new TTTSquareFrame(sides);
              mainSquarePanel = mainSquare.createPanel(sides);
              return mainSquarePanel;
    }and TTTSquareFrame:import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import joshPack.jUtil.Misc;
    public class TTTSquareFrame
         private JPanel squarePanel;
         private JButton [] squares;
         private int square, index;
         public TTTSquareFrame()
              System.out.println("Use a constructor that passes an integer specifying the size of the square please.");
              System.exit(0);
         public TTTSquareFrame(int size)
         public JPanel createPanel(int size)
              square = (int)Math.pow(size, 2);
              squarePanel = new JPanel();
              squarePanel.setLayout(new GridLayout(3,3));
              squares = new JButton[square];
              System.out.println(MIN_SIZE.toString());
              for(int i = 0; i < square; i++)
                   squares[i] = new JButton();
                   squares.setRolloverEnabled(false);
                   squares[i].addActionListener(bh);
                   //squares[i].setMinimumSize(MIN_SIZE);
                   squares[i].setVisible(true);
                   squarePanel.add(squares[i]);
              squarePanel.setSize(100, 100);
              squarePanel.setVisible(true);
              return squarePanel;
    }I've successfully added panels to JFrame within the same class, and this is the first time I'm modularizing the code this way. The issue is that the frame comes up blank, and I get the message "Something's wrong" and it says the addPanel is invalid. Originally, the panel creation was in the constructor for TTTSquareFrame, and I just added the mainSquare (from TTTGame class) to the content pane, when that didn't work, I tried going about it this way. Not exactly sure why I wouldn't be able to add the panel from another class, any help is greatly appreciated.
    I did try and cut out code that wasn't needed, if it's still too much let me know and I can try and whittle it down more. Thanks.

    Yea, sorry 'bout that, I just cut out the parts of the files that weren't relevant but forgot to compile it just to make sure I hadn't left any remnants of what I had removed. For whatever it's worth, I have no idea what changed, but something did and it is working now. Thanks for your help, maybe next time I'll post an actual question that doesn't somehow magically solve itself.
    EDIT: Actually, sorry, I've got the panel working now, but it's tiny. I've set the minimum size, and I've set the size of the panel, so...why won't it respond to that? It almost looks like it's being compressed into the top of the panel, but I'm not sure why.
    I've compressed the code into:
    TTTGame.java:
    import java.awt.*;
    import javax.swing.*;
    public class TTTGame extends JFrame
         private Integer sides = 3;
         private TTTSquareFrame mainSquare;
         private TTTGame newGame;
         private Container contents;
         private JPanel mainSquarePanel, addPanel;
         public static void main(String [] args)
              TTTGame newGame = new TTTGame();
              newGame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public TTTGame()
              super("Tic-Tac-Toe");
              contents = getContentPane();
              contents.setLayout(new FlowLayout());
              mainSquare = new TTTSquareFrame(sides.intValue());
              contents.add(mainSquare);
              setSize(400, 400);
              setVisible(true);
    }TTTSquareFrame.java
    import java.awt.*;
    import javax.swing.*;
    public class TTTSquareFrame extends JPanel
         private JButton [] squares;
         private int square, index;
         private final Dimension testSize = new Dimension(50, 50);
         public TTTSquareFrame(int size)
              super();
              square = (int)Math.pow(size, 2);
              super.setLayout(new GridLayout(size, size));
              squares = new JButton[square];
              for(int i = 0; i < square; i++)
                   squares[i] = new JButton();
                   squares.setMinimumSize(testSize);
                   squares[i].setVisible(true);
                   super.add(squares[i]);
              setSize(200, 200);
              setVisible(true);
    I've made sure the buttons are smaller than the size of the panel, and the panel is smaller than the frame, so...
    Message was edited by:
    macman104

  • Why we extends JFrame class in java

    Hello Java Developers,
    I am new to Java & Currently I am trying my hands on Java Swings.
    I wrote a very simple program in Java to display a JFrame on screen. My code is as follows:
    import javax.swing.*;
    public class JavaFrame {
    public static void main(String args[]){
    JFrame frame = new JFrame();
    frame.setTitle("My Frame");
    frame.setSize(400, 150);
    frame.setLocation(300, 300);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    I saw some examples on internet & they are extending "JFrame" in their every example. I want to know what is the benefit of this ??? here is code:
    import javax.swing.*;
    public class JavaFrame extends JFrame {
    public static void main(String args[]){
    JFrame frame = new JFrame();
    frame.setTitle("My Frame");
    frame.setSize(400, 150);
    frame.setLocation(300, 300);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    My second question is what is the meaning of line "frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);"
    frame - This object of class created by me.
    setDefaultCloseOperation() - This is predefined method in JFrame class.
    JFrame.EXIT_ON_CLOSE - what is the meaning of this ??

    I saw in JFrame API as you suggested & I found that
    EXIT_ON_CLOSE is an "public static final" method.Look again. It's not a method.
    final: this mehod must be executed
    am I right ???No. final means that the value cannot be reassigned.
    Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    db

  • Retrieve method from class which extends JFrame

    hi, i need some help with my program.
    I have two class which both extends JFrame. The first class called security class and second class is available class.
    In the SECURITY class, i create a button to operate the AVAILABLE class and it generate a result in method Count(). I want to view the result in Frame SECURITY by calling method count() but i could manage to do it. Could somebody help me how to manage this problem?
    Thanks.

    may be you could create a instance of the class you wanted to access method from or pass the instance from one class to another.
    like this:
    public class A extends JFrame
    public B newB= new B();
    public A(){}
    public void someMethod()
    newB.someOtherMethod();
    public class B extends JFrame
    public B(){}
    public void someOtherMethod()
    i hope it is what you are looking for

  • Visual Editor cannot show the class extending a visual class of JFrame

    Hi,
    We want to create a base frame (BaseFrame) so that every form in our application extending it to share some common properties.
    But i found that the class (OrderFrame extends BaseFrame) cannot be shown properly in Visual Editor (run is ok).
    Is there any way to resolve it?
    Code Ref:
    BaseFrame.java
    public class BaseFrame extends JFrame {
    public BaseFrame() {
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    this.getContentPane().setLayout( null );
    this.setSize( new Dimension(400, 300) );
    this.setTitle( "Standard JFrame" );
    OrderFrame.java
    public class OrderFrame extends BaseFrame {
    public OrderFrame() {
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    }

    Olaf,
    When using your own beans it is best to create the bean in one project, and then use it in a second project. So in your example; use Project1.jpr to create, compile, test, debug BaseFrame.java. Then, once you are satisfied with it, use Project2.jpr to create, compile, test, debug MyInternalFrame.java. Your scenario works fine when adopting this approach. However, be sure that MyInternalFrame.java includes the necessary import statement for BaseFrame, and be sure that the classpath for Project2.jpr includes the path to BaseFrame.class. If you are using the default classpath settings for each project (i.e. myclasses) then the classpath concern will be taken care of for you already.
    Enjoy.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by olaf:
    Hi,
    the situation :
    BaseFrame extends JInternalFrame
    and
    MyInternalFrame extends BaseFrame
    Now I want to edit MyInternalFrame in the visual editor.
    I tried that by making a bean of BaseFrame and addiing the bean to the Palette but MyInternalFrame won't show up in the editor,
    anybody knows how to set this up ?
    Thanks,
    -- olaf<HR></BLOCKQUOTE>
    null

  • Catching window closing events from JFrame

    I'm having problems catching windowClosing() events from a JFrame (just doesn't get to my event listener it would seem!).
    I register and setup a window listener in the constructor of my JFrame class. Prior to this I set the default close operation as DO_NOTHING_ON_CLOSE (as you're suppose to if tyou want to handle window closing events).
    When user clicks on x (window terminate) button (in WIN systems), nothing is dispatched to my event listener. Any ideas?
    Extract from constructor:
    setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    addWindowListener(new MainWindowListener(this));
    MainWindowListener looks as follows (EDImemConvert extends JFrame):
    class MainWindowListener extends WindowAdapter
    private EDImemConvert f;
    public MainWindowListener(EDImemConvert f)
    this.f = f;
    public void windowClosing(WindowEvent e)
    System.out.println("gets here...");
    f.ReturnResources();
    f.dispose();
    System.exit(0);
    }

    This works for meimport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JFrame {
      public Test() {
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent we) { System.exit(0); }
        setSize(300,300);
        setVisible(true);
      public static void main(String args[]) { new Test(); }
    }Normally, I just use this line
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    instead of adding a listener. It will clean up everything nicely.

  • Extending JFrame to a subclass and testing it

    I am following an example in my textbook that goes like this:
    package project2;
    import javax.swing.JFrame;
    class PracticeWithJFrame2 extends JFrame
         private static final int FRAME_WIDTH=300;
         private static final int FRAME_HEIGHT=200;
         private static final int FRAME_X_ORIGIN=150;
         private static final int FRAME_Y_ORIGIN=250;
         public PracticeWithJFrame2()
              // set the frame default properties
              setTitle("My First Subclass");
              setSize(FRAME_WIDTH, FRAME_HEIGHT);
              setLocation(FRAME_X_ORIGIN,FRAME_Y_ORIGIN);
              // register 'Exit upon closing' as a default close operation
              setDefaultCloseOperation(EXIT_ON_CLOSE);
    }in the testing class:
    package project2;
    class TestPracticeJFrameClass {
          * @param args
         public static void main(String[] args) {
              PracticeWithJFrame2 myFrame;
              myFrame = new PracticeWithJFrame2();
              myFrame.setVisible(true);
    }2 errors are ocurring:
    1) Multiple markers at this line
         - The serializable class PracticeWithJFrame2 does not declare a static final
          serialVersionUID field of type long
         - The type PracticeWithJFrame2 is already defined2) the test case brings up a JFrame window, but it is basically an empty window, it didn't take on the values the constructor set for it.
    Thanks for some debugging help

    I'll get back to you in a moment, in the meantime I've got a work around solution. I did the testing/application in a single class, by calling the constructor in the main method:
    package project2;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Ch14JButtonEvents extends JFrame
         private static final int FRAME_WIDTH=300;
         private static final int FRAME_HEIGHT=200;
         private static final int FRAME_X_ORIGIN=150;
         private static final int FRAME_Y_ORIGIN=250;
         private static final int BUTTON_WIDTH=80;
         private static final int BUTTON_HEIGHT=30;
         private JButton cancelButton;
         private JButton okButton;
         public static void main(String[] args)
              PracticeWithJButton frame = new PracticeWithJButton();
              frame.setVisible(true);
         public Ch14JButtonEvents()
              Container contentPane = getContentPane();
              // set the frame default properties
              setTitle("Program PracticeWithJButton");
              setResizable(false);
              setSize(FRAME_WIDTH, FRAME_HEIGHT);
              setLocation(FRAME_X_ORIGIN,FRAME_Y_ORIGIN);
              // set the layout manager
              contentPane.setLayout(new FlowLayout());
              // create and place two buttons on the frame's content pane
              okButton = new JButton("OK");
              okButton.setSize(BUTTON_WIDTH, BUTTON_HEIGHT);
              contentPane.add(okButton);
              cancelButton = new JButton("CANCEL");
              cancelButton.setSize(BUTTON_WIDTH, BUTTON_HEIGHT);
              contentPane.add(cancelButton);
              // register 'Exit upon closing' as a default close operation
              setDefaultCloseOperation(EXIT_ON_CLOSE);
    }

  • Using mouselistener and class extending jbutton

    Hello,
    I wondered if anyone could advice, I am trying wrote a class which lowers the border of a jbutton when the button is clicked, and stays lowered until clicked again. In the sameway as bold does in ms word.
    I understand I can use setBorder(raised) or setBorder(lowered).
    But I was unsure which method here to place this code.
    Thank you
    public class AddButton extends JButton implements MouseListener{
    protected Border raised = new SoftBevelBorder(BevelBorder.RAISED);
         protected Border lowered = new SoftBevelBorder(BevelBorder.LOWERED);
    public void mouseClicked(MouseEvent e) { }
    public void mouseMoved(MouseEvent e) { }
    public void mouseExited(MouseEvent e) { }
    public void mouseReleased(MouseEvent e) { }
    public void mouseEntered(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseDragged(MouseEvent e) { }
    }

    import java.awt.*;
    import javax.swing.border.Border;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test3 extends JFrame {
      Border rb = BorderFactory.createRaisedBevelBorder(),
             lb = BorderFactory.createLoweredBevelBorder();
      JButton jb1 = new JButton("I am Button"), jb2 = new JButton("Hear me roar");
      public Test3() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        content.setLayout(new FlowLayout());
        jb1.setBorder(rb);
        content.add(jb1);
        jb1.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent ae) {
            jb1.setBorder(jb1.getBorder()==rb?lb:rb);
        jb2.setBorder(rb);
        content.add(jb2);
        jb2.addMouseListener(new MouseAdapter() {
          public void mouseReleased(MouseEvent me) {
            jb2.setBorder(jb2.getBorder()==rb?lb:rb);
        JToggleButton jtb = new JToggleButton("Toggley Button");
        content.add(jtb);
        setSize(300,300);
        setVisible(true);
      public static void main(String[] arghs) { new Test3(); }
    }

  • Why we extend JFrame in java swings? how is it different from code not ...?

    how is it different from code nt extending JFrame?
    please explain the role of contentpane in both cases?
    thanx

    Search the net for examples and/or explanations of "inheritance vs composition.
    For the role of a contentPane, read the API for interface RootPaneContainer and class JRootPane. The second named API also has a link to the Swing tutorial on How to Use Root Panes.
    db

Maybe you are looking for

  • I have a Sharp TV can I use my new Apple TV

    My TV is an older annalog TV model number 32R-S60. What do I need to hook up my apple TV. I have three RCA jacks Input in the back and three RCA output jacks in the front. I have purchased an HDMI to RCA cable with no success. Does anyone know a fix

  • Windows 8.1 Desktop wallpaper not shown if Explorer is not running

    Hi, I set wallpaper image using registry: [HKEY_CURRENT_USER\Control Panel\Desktop] "Wallpaper"="C:\\Windows\\Web\\Wallpaper\\Windows\\img0.jpg" Problem is that I need to show wallpaper WITHOUT explorer running. W7 and W8:  If explorer is running, wa

  • IPad 3 slow after upgrading to iOS 8.2 from 7.1

    To get ready for the Watch and stay current with iCloud and my devises, I'm moving this weekend to the latest upgrades for my iPhone 5, wife's iPhone 5S, my iPad 3 with 64 gb (celebrating 3 years old on Monday!), my wife's iPad 4 and my MacBook Pro

  • Currency: MXP to USD how to convert ?

    Hi everybody, I´m junior, I have a question, I need to convert currency MXP to USD, I need to know what is the actual value of dollar, I know that the system have the value but I couldn´t find it. Can anybody tell me How can I know it? Thanks,

  • Apply no copying and no editing feature to a pdf

    How to apply no copying and no editing feature to a pdf using rights management? Please reply ASAP