JPopupMenu goes behind main JFrame after checking/unchecking its Items.

I've written the following stand-alone code, which basically contains a JFrame that includes a combination of JPopupMenu's and JMenu's. If user right-clicks on the JFrame, a JPopupMenu will popup, which contains a JMenu. This JMenu also includes another JPopupMenu that contains 4 JCheckBoxMenuItems.
The problem that I'm facing is that, after I select one JCheckBoxMenuItem, the popup menu containing them, will go behind the JFrame. How can I get it to stay in front? Here's my SSCCE. I need to turn this in at work by tomorrow at the latest. So, if anyone has time, your help will be very much appreciated. Thanks!
import java.awt.Color;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JButton;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JPopupMenu;
import javax.swing.SwingUtilities;
public class MyPopupTest {
      * @param args
     public MyPopupTest(){}
     public void generateMenu()
          final JFrame frame = new JFrame("My Frame");
          frame.setSize(300,300);
          final JPopupMenu popupMenu = new JPopupMenu();
          final JMenu menu = new JMenu("My Menu");
          final JPopupMenu itemsPopupMenu = new JPopupMenu();
          final JButton okButton = new JButton("OK");
          final JCheckBoxMenuItem item1 = new JCheckBoxMenuItem("Item 1", true);
          final JCheckBoxMenuItem item2 = new JCheckBoxMenuItem("Item 2", false);
          final JCheckBoxMenuItem item3 = new JCheckBoxMenuItem("Item 3", true);
          final JCheckBoxMenuItem item4 = new JCheckBoxMenuItem("Item 4", false);
          itemsPopupMenu.add(item1);
          itemsPopupMenu.add(item2);
          itemsPopupMenu.add(item3);
          itemsPopupMenu.add(item4);
          itemsPopupMenu.add(okButton);
          menu.add(itemsPopupMenu);
          popupMenu.add(menu);
          frame.addMouseListener(new MouseAdapter()
               public void mouseClicked(MouseEvent e)
                    if(SwingUtilities.isRightMouseButton(e))
                         frame.getContentPane().add(popupMenu);
                         popupMenu.setLocation(e.getPoint().x+50,e.getPoint().y);
                         popupMenu.setVisible(true);
          popupMenu.addMouseListener(new MouseAdapter()
               public void mouseEntered(MouseEvent e)
                    itemsPopupMenu.setLocation(new Point(popupMenu.getWidth()+menu.getLocationOnScreen().x, menu.getLocationOnScreen().y));
                    itemsPopupMenu.setVisible(true);
          item1.addMouseListener(new MouseAdapter()
               public void mousePressed(MouseEvent e)
                    popupMenu.setVisible(true);
               public void mouseEntered(MouseEvent e)
                    item1.setBackground(Color.PINK);
               public void mouseExited(MouseEvent e)
                    item1.setBackground(popupMenu.getBackground());
          item2.addMouseListener(new MouseAdapter()
               public void mousePressed(MouseEvent e)
                    popupMenu.setVisible(true);
               public void mouseEntered(MouseEvent e)
                    item2.setBackground(Color.PINK);
               public void mouseExited(MouseEvent e)
                    item2.setBackground(popupMenu.getBackground());
          item3.addMouseListener(new MouseAdapter()
               public void mousePressed(MouseEvent e)
                    popupMenu.setVisible(true);
               public void mouseEntered(MouseEvent e)
                    item3.setBackground(Color.PINK);
               public void mouseExited(MouseEvent e)
                    item3.setBackground(popupMenu.getBackground());
          item4.addMouseListener(new MouseAdapter()
               public void mousePressed(MouseEvent e)
                    popupMenu.setVisible(true);
               public void mouseEntered(MouseEvent e)
                    item4.setBackground(Color.PINK);
               public void mouseExited(MouseEvent e)
                    item4.setBackground(popupMenu.getBackground());
          okButton.addMouseListener(new MouseAdapter()
               public void mousePressed(MouseEvent e)
                    popupMenu.setVisible(false);
                    itemsPopupMenu.setVisible(false);
          frame.setVisible(true);
     public static void main(String [] args)
          MyPopupTest test  = new MyPopupTest();
          test.generateMenu();
}

Quit multi-posting. This is your third posting on this topic. Others have no idea what has already been suggested in the other postings and are wasting their time reading the posting. Keep the discussion in a single posting.
In fact I already explained to you how you can prevent the popup menu from closing and gave you a simple example to work from. For those of you that are curious. If you add a JCheckBox to a JPopupMenu, instead of a JCheckBoxMenuItem, the popup will stay open.
I can't explain the behaviour of the posted code, but when you have a smiple working solution maybe its time to use it as the basis of your solution.

Similar Messages

  • Outlook2013 email message goes behind main Outlook window when opening PDF attachment with Reader 11

    Problem statement: Outlook 2013 email message goes behind main Outlook window when opening PDF attachment with Adobe Reader 11.0.3
    Environment: Windows 8 x64; Office 2013; Adobe Reader 11.0.3
    Steps to reproduce bug:
    1. Open Outlook 2013
    2. Open email message with PDF attachment
    3. Open PDF attachment (with Adobe Reader as default PDF viewer)
    4. Close Adobe Reader
    Results: Original email message with PDF attacment now sits behind the main Outlook window
    Expected results: Original email message should be on top of main Outlook window as it was when opening the PDF attachment
    Note: Adobe Acrobat Profession performs as expected - the original email is on top of the main Outlook window - This only seems to be a problem with Adobe Reader.
    Has anyone else experience this problem?  If so, have you found a work-around?
    Thanks,
    Mike

    From: new window opens behind existing window - how to modify?
    I had this problem happening in Outlook.
    If I tried to open an email, it would open behind the main Outlook window.
    The same happened if I opened a link in the email - it would open behind the mail.
    The fix that was suggested to me was so simple that I still don't believe it.
    Right click on the task bar and unlock the taskbar, then lock it again.
    Close down Outlook and re-start it.
    Problem solved! Just dont know how  or why.
    Proposed as answer byalfreelandTuesday, January 08, 2013 4:52 PM
    It worked for me with Win 7 and OL 2003. Why? Who cares ... It is working.
    Liviu 2014-09-17

  • JMenu closes after checking/unchecking JCheckBoxMenuItems

    I added a JMenu to an existing JPopupMenu, and added a few JCheckBoxMenuItems, followed by a JButton to the JMenu. Currently, when I open the JMenu and check/uncheck a JCheckBoxMenuItem, the JMenu closes.
    So, my question is, how do I get the JPopupMenu, JMenu and all the JCheckBoxMenuItems to stay open while I click multiple JCheckBoxMenuItems? I basically want everything to stay open until I push the JButton. I believe this is possible, but I don't know how to go about it. And I need help ASAP. Thanks!

    Hi, yes actually it is urgent. I'm doing this for work and it took me two days becuz it was the weekend and I didn't have access to code.
    Anyways, I just created this SSCCE, as you had advised. As far as instructions are concerned, after launching the application, you need to right click on the JFrame and go from there. You will see that after selecting/unselecting one of the JCheckBoxMenuItems it goes behind the frame. I'm sorry if my instructions are confusing, all you need to do is right-click on the frame and you'll see what I'm talking about.
    import java.awt.Point;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JCheckBoxMenuItem;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JPopupMenu;
    import javax.swing.SwingUtilities;
    public class MyPopupTest {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              final JFrame frame = new JFrame("My Frame");
              frame.setSize(500,500);
              final JPopupMenu mainPopup = new JPopupMenu();
              final JMenu myMenu = new JMenu("My Menu");
              final JPopupMenu itemsPopupMenu = new JPopupMenu();
              JButton okButton = new JButton("OK");
              JCheckBoxMenuItem item1 = new JCheckBoxMenuItem("item1", true);
              JCheckBoxMenuItem item2 = new JCheckBoxMenuItem("item2", false);
              JCheckBoxMenuItem item3 = new JCheckBoxMenuItem("item3", false);
              frame.getContentPane().add(mainPopup);
              mainPopup.add(myMenu);
              myMenu.add(itemsPopupMenu);
              itemsPopupMenu.add(item1);
              itemsPopupMenu.add(item2);
              itemsPopupMenu.add(item3);
              itemsPopupMenu.add(okButton);
              okButton.addMouseListener(new MouseAdapter()
                   public void mousePressed(MouseEvent e)
                        itemsPopupMenu.setVisible(false);
                        myMenu.setVisible(false);
              myMenu.addMouseListener(new MouseAdapter()
                   public void mouseClicked(MouseEvent e)
                        if(SwingUtilities.isRightMouseButton(e))
                             mainPopup.setLocation(e.getPoint());
                             mainPopup.setVisible(true);
                   public void mouseEntered(MouseEvent e)
                        itemsPopupMenu.setLocation(new Point(myMenu.getLocationOnScreen().x + mainPopup.getWidth(),myMenu.getLocationOnScreen().y));
                        itemsPopupMenu.setVisible(true);
              frame.setVisible(true);  
    }

  • Plug-in Window goes behind main window(CS5)

    hi all,
         I've been working on a plug in development for After Effects(CS5)..But i'm facing a problem now. The plug in window goes behind the After effects main window..So i would like to know the reason and solution for the problem..so could anybody help me out on this?
    Cg soft

    hi cg soft.
    welcome to our little, quiet sea-side developers community. (where people are nice and the pharmacies are open late)
    i can't understand whether the problem you're describing is in regards to a custom made window (pop up), a palette plug-in, or the ECW.
    this is a long thread that deals with a lot of different issues, but also goes into details on creating os level windows:
    http://forums.adobe.com/message/3337511#3337511
    at the end if it you'll find this very useful video, courtesy of gutsblow:
    http://vimeo.com/17206258
    he shows how to create windows using cocoa.
    if you're not dealing with an os level window then... what exactly is the problem?

  • In Unix, main JFrame focus not regained after modal dialog exit.

    Hi all,
    I'm new to this forum so hopefully this is the right place to put this question.
    I have a relatively simple GUI application written in Java 6u20 that involves a main gui window (extends JFrame). Most of the file menu operations result in a modal dialog (either JFileChooser or JOptionPane) being presented to the user.
    The problem is that when running on Unix (HPUX), the process of changing focus to one of these modal dialogs occasionally results in a quick flash of the background terminal window (not necessarily that used to launch the Java), and the process of closing the modal dialogs (by any means, i.e. any dialog button or hitting esc) doesn't always return focus to the main extended JFrame object, sometimes it goes to the terminal window and sometimes just flashes the terminal window before returning to the main JFrame window.
    I think the problem is with the Unix window manager deciding that the main focus should be a terminal window, not my Java application, since the problem occurs in both directions (i.e. focus from main JFrame to modal dialog or vice versa).
    In most cases of JOptionPane, I DO specify that the main extended JFrame object is the parent.
    I've tried multiple things since the problem first occured, including multiple calls to a method which calls the following:
    .toFront();
    .requestFocus();
    .setAlwaysOnTop(true);
    .setVisible(true);
    ..on the main JFrame window (referred to as a public static object)...
    just before and after dialog display, and following selection of any button from the dialogs. This reduced the frequency of the problem, but it always tends to flash the terminal window if not return focus to it completely, and when it occurs (or starts to occur then gets worse) is apparently random! (which makes me think it's an OS issue)
    Any help appreciated thanks,
    Simon
    Self-contained compilable example below which has the same behaviour, but note that the problem DOESN'T occur running on Windows (XP) and that my actual program doesn't use auto-generated code generated by a guibuilder:
    * To change this template, choose Tools | Templates 
    * and open the template in the editor. 
    package example;  
    import javax.swing.JOptionPane;  
    * @author swg 
    public class Main {  
         * @param args the command line arguments 
        public static void main(String[] args) {  
            java.awt.EventQueue.invokeLater(new Runnable() {  
                public void run() {  
                    new NewJFrame().setVisible(true);  
    class NewJFrame extends javax.swing.JFrame {  
        /** Creates new form NewJFrame */ 
        public NewJFrame() {  
            initComponents();  
        /** This method is called from within the constructor to 
         * initialize the form. 
         * WARNING: Do NOT modify this code. The content of this method is 
         * always regenerated by the Form Editor. 
        @SuppressWarnings("unchecked")  
        // <editor-fold defaultstate="collapsed" desc="Generated Code">  
        private void initComponents() {  
            jMenuBar1 = new javax.swing.JMenuBar();  
            jMenu1 = new javax.swing.JMenu();  
            jMenuItem1 = new javax.swing.JMenuItem();  
            jMenu2 = new javax.swing.JMenu();  
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);  
            jMenu1.setText("File");  
            jMenuItem1.setText("jMenuItem1");  
            jMenuItem1.addActionListener(new java.awt.event.ActionListener() {  
                public void actionPerformed(java.awt.event.ActionEvent evt) {  
                    jMenuItem1ActionPerformed(evt);  
            jMenu1.add(jMenuItem1);  
            jMenuBar1.add(jMenu1);  
            jMenu2.setText("Edit");  
            jMenuBar1.add(jMenu2);  
            setJMenuBar(jMenuBar1);  
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());  
            getContentPane().setLayout(layout);  
            layout.setHorizontalGroup(  
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
                .addGap(0, 400, Short.MAX_VALUE)  
            layout.setVerticalGroup(  
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
                .addGap(0, 279, Short.MAX_VALUE)  
            pack();  
        }// </editor-fold>  
        private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {  
            int result = JOptionPane.showConfirmDialog(this, "hello");  
        // Variables declaration - do not modify  
        private javax.swing.JMenu jMenu1;  
        private javax.swing.JMenu jMenu2;  
        private javax.swing.JMenuBar jMenuBar1;  
        private javax.swing.JMenuItem jMenuItem1;  
        // End of variables declaration  
    }

    It won't comfort you much, but I had similar problems on Solaris 10, and at the time we traked them down to a known bug [6262392|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6262392]. The status of this latter is "Closed, will not fix", although it is not explained why...
    It's probably because the entry is itself related to another, more general, bug [6888200|http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=b6eea0fca217effffffffe82413c8a9fce16?bug_id=6888200], which is still open.
    So it is unclear whether this problem will be worked upon (I suspect that yes) and when (I suspect that... not too soon, as it's been dormant for several years!).
    None of our attempts (+toFront(...)+ etc...) solved the issue either, and they only moderately lowered the frequency of occurrence.
    I left the project since then, but I was said that the workaround mentioned in the first bug entry (see comments) doesn't work, whereas switching to Java Desktop instead of CDE reduced the frequency of the issues (without fixing them completely either) - I don't know whether it's an option on HPUX.
    Edited by: jduprez on Jul 9, 2010 11:29 AM

  • Sub menu going behind the BOL using HTML object in IE

    when i am implementing PDFs bol object in my webpage using simple html object, it is displaying well in both chrome and Explorer( IE
    11). The main problem is the sub menu's of main navigation(sub menu) is going behind of PDFs viewer in Explorer (IE) . And one more thing all the position attributes and z-index values are fine . This is a problem with object . please show me solution. I am
    not able to create fiddle for this. for more details see my below code and run in your Internet Explorer browser and hover
    the "step 2" navigation menu.
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body{margin:0 auto;width:500px;}
    header{height:60px;background:#ccc;}
    ul#mainnav{list-style:none;display:block;}
    ul#mainnav li{float:left;width:80px;}
    ul#mainnav li#step2 ul#submenu{display:none;list-style:none;margin-margin-}
    ul#mainnav li#step2:hover ul#submenu{display:block;}
    ul#mainnav li#step2 ul#submenu li{float:none;height:30px;border-bottom:1px solid #fff;background:#000;color:#fff;display:block;}
    </style>
    </head>
    <body>
    <header>
    <ul id="mainnav">
    <li>step1</li>
    <li id="step2">step2
    <ul id="submenu">
    <li>step2 1</li>
    <li>step2 2</li>
    <li>step2 3</li>
    <li>step2 4</li>
    </ul>
    </li>
    <li>step3</li>
    <li>step4</li>
    <li>step5</li>
    <li style="clear:both;"></li>
    </ul>
    </header>
    <div style="width:300px;height:400px;border:2px sild #fff;float:left;">
    <object data="http://www.pdf995.com/samples/pdf.pdf" style="width:94%;height:94%;padding:5px;" type="application/pdf" wmode="transparent" >
    <param name="wMode" value="transparent"/>
    </object>
    </div>
    </body>
    </html>
    COPY THE ABOVE CODE TO YOUR NOTEPAD++, AND SAVE AS INDEX.HTML, AND RUN THIS CODE IN YOUR INTERNET EXPLORER BROWSER, AND MOUSE OVER ON "STEP 2", AND OBSERVE THE SUB MENU IS GOING BEHIND THE OBJECT LAYER. THIS IS HAPPENING ONLY IN INTERNET
    EXPLORER.
    please install adobe reader in your system and check
    PLEASE HELP ME TO FIX THIS PROBLEM

    Hi Vallabha,
    Thanks for posting in MSDN forum.
    I have ran your code and understood your issue. But I cannot find a standard answer. z-index property cannot work with such a object tag. After some search on the web, I find this may be a workaround for this problem.
    http://stackoverflow.com/questions/25760079/jquery-combobox-behind-embedded-object-ie-only
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to check / uncheck a checkbox in a JTable...

    Hi all,
    I know that a lot of people have asked this question before but I am unable to find a solution even after going all the messages. My issue is:
    My initial rendering of the checkboxes inside the table works ok. I am using a TableCellRenderer and my input to determine the "checked/unchecked" is string like "true" or "false" and not boolean values. But I am unable to do check / uncheck any of the checkboxes.
    I would really appreciate any pointers.
    Thanks in advance.
    Below is my code snippet:
    public Component getTableCellRendererComponent(JTable table_,
    Object value_, boolean isSelected_, boolean hasFocus_, int rowIndex_,
    int colIndex_)
    Component component = super.getTableCellRendererComponent(table_,
    value_, isSelected_, hasFocus_, rowIndex_, colIndex_);
    indicator = table_.getColumnModel().getColumnIndex("IND");      
    if (indicator == colIndex_)
         if (value_.equals("true")){
              component = new JCheckBox("", true);           
         } else {
              component = new JCheckBox("", false);           
         return component;
    }

    Your TableModel has to indicate that the column is editable. Your TableModel also has to implement setValueAt() so that when the user changes the value, it updates the data.
    The table will know to use it's own boolean renderer/editor for that column because it knows what to do when a column returns a Boolean.

  • How do i get my photos back on usb after editing in iphoto. i used export but after checking my photos were not back on usb?

    how do i get my photos back on usb after editing. i used export but after checking my photos were not back on usb?

    You're really going to need to explain that. What's "USB"? Do you mean a Disk, Drive or volume connected by USB? How is your iphoto set up? What version are you using?
    Regards
    TD

  • Unable to check/uncheck older podcast episodes in iPod sync to iTunes 11.0

    Hi,
    I have a few podcasts in my iTunes where I have saved a large number of episodes. Now I have upgraded to the new version of iTunes I unable to check/uncheck older podcast episodes from iPod syncing - the finder window won't scroll to the bottom of the list, and just 'bounces' after scrolling past a certain number!
    Not sure if this is a bug, or I'm overlooking something.
    Thanks

    I have the same problem.  Scrolling does not work in the iPod podcast list panel, but it works in every other panel or window in iTunes...

  • How to check/uncheck all check boxes in an insert-not-allowed block

    Hi All,
    I have a column of check box which is placed in a multirow block. This block's INSERT_ALLOWED property is set to false. The column of check box is not a database item and its insert_allowed property is to true. Now I use the following code which is in when-button-pressed trigger to control checking/unchecking all the check boxes:
    go_block('selected_payment');
    first_record;
    loop
    :cb_payflag:= 'N'; -- uncheck the check box
    exit when (:system.last_record = 'true');
    next_record;
    end loop;
    It gives me 'FRM-41051 Cannot create records here' error, and it goes into an infinite loop. It looks like it never reaches the last record where the block actually contains two records.
    Please help!
    Thanks in advance.
    Regards,
    Vanessa

    It sounds like your block does not have a field where the cursor focus can go when looping through the records. Create a dummy non-db field in the block which is enabled and has insert/update allowed. see if it then works. If it does then you can shrink the field down to 1x1 pixels with no border so the user cannot ever click on it and it's invisible.

  • Text after checking my voicemail

    If there a way to turn this off, please tell me. The phone sends me a text after i check my vm.

    Hello everyone, as Ann stated, the new software for the Rhyme does resolve the issue with the device receiving text messages after checking or receiving voicemail. Here is a link to the official benefits document. If you haven't already received this update it will be pushed soon. You can also check for updates by going to Settings>Software update. 

  • What process goes behind "Return Requisition" in oracle purchasing

    Hi Guys,
    In Oracle Purchasing, When you click "Autocreate", where you will get the form "Find Requisitions Window".
    You will find the requisitions and then if you want to return a requisition by telling the reason for returning
    the requisition, the you will go to Tools--> and Click "Return Requisition" and specify the reason for returning
    in a text provided.
    May I know what workflow or what process goes behind when you click that Return Requisition from Tools Menu.
    Thanks

    If you are in forms, then check the special triggers 1 to 30, these would be available in the tools menu, check the corresponding code in the form library, or the custom library, if this is a custom menu item.
    Thanks
    Tapash

  • How to auto return to main menu after track plays

    On my main menu I have two buttons. Each accesses a different video asset. But when the user selects one of the videos to play at the end of play I need the user to be returned to the main menu. Currently, at the end of video play the screen just sits on the last frame, which is black, and does not return to the main menu. In the simulator, if I hit the menu button it goes back to the main menu but I would like it to return to the main menu automatically after the video that has been selected is finished playing. I have searched through the DVD SP manual and so far can't find out how to do this. Do I have to write a script for this simple action? Is there a setting that simply makes a target track jump back to the main menu after it plays? Thanks as ever for your excellent advice.

    You need to set the end jump for the track... click on the track in the outline or graphical view, look in the property inspector. Near the top there is a drop down for the end jump - use that to set where to go back to... in your case the menu.

  • Non main JFrame

    If i wanted to make a non main JFrame what is the basic structure for it to open as a new frame not as an internal frame? How would i call this Frame at an event?

    Sorry been feeling ill and I seem to not write what i mean and not remember things i already know. I meant to take the elements of the JFrame into it but i did it just after you answered with some tweeking anyway. Calling and passing values to it should be done like a normal class construction method. Thanks for helping me out anyway

  • Numbers does not open with the main user after installing mountain lion. It works flawlessly when I use the second account on my mac. What got corrupted in the admin-account, something in the user-library? How can I fix it? I´m kinda desperate...

    Numbers does not open with the main user after installing mountain lion. It works flawlessly when I use the second account on my mac. What got corrupted in the admin-account, something in the user-library? How can I fix it? I´m kinda desperate... (the same happens with the other iWork-Apps!)
    Looking forward to hearing from somebody with a littlemore expertise than me, Chris

    you can remove preferences files by navigating to the Preferences folder for your user as follows:
    0) Quit ALL iWork apps (Keynote, Pages and Numbers)
    1) from the Finder select the menu item "Go > Go To Folder…".  This will bring up a dialog:
    2) enter the path "~/Library/Preferences" (no double quotes)
    3) find the files:
    com.apple.iWork.Keynote.plist
    com.apple.iWork.Numbers.plist
    com.apple.iWork.Pages.plist
    and move these to the trash.  I would NOT empty until later.
    4) restart Numbers

Maybe you are looking for

  • Port Replicator III+ very high cpu when moving usb mouse only in W2k

    Tecra M2 with a port replicator III+ It's set to dual boot into XP and Win2000 (yes I know it's getting on a bit, but I've got a lot of stuff installed in win2k that is difficult to get hold of these days). XP is 100% fine, but with win 2000 if I use

  • Not given credit for subscription with skype to go...

    hi, my skype to go number had expired,by mistake,I renewed,buying only 120 minutes to call the country of my subscription,I let that expired,and bought the unlimited minutes to that same country,which is supposed to have the skype to go number...that

  • XML and Images MAC CS3

    Hi, if I try to import an XML with images on the Mac, InDesign will not allow me to use the tilde '~' for the users home directory. I.e. paths like this cannot be handled: file:///~/Library/Preferences/Adobe InDesign/Version 5.0/Scripts/Scripts Panel

  • Network Model Question

    What does "1 link(s) with referential integrity problems." mean when you do a: MDSYS.SDO_NET.VALIDATE_NETWORK on a network data model? This is 10.2.0.1 on windows/32. I also did... SELECT mdsys.sdo_net.validate_node_schema('COMM_PATH') from dual; SEL

  • Slow display of reports on remote ConfigMgr Console

    Hi I have an issue displaying reports within the ConfigMgr console, in remote consoles that are connected via 10 MB links it takes up to 15 minutes to display the reports. All other admin tasks within the console work fine, also accessing the reports