Disable All Components in GUI?

Hi, I am writing a gui using java.awt/javax.swing
I want to disable all components in my gui (ie. setting all components of my gui to the disabled state by using setEnabled(false) from the java.awt.Component class) except for the Exit Button of the title bar (so that one can still exit the program via the exit button).
I try using JFrame.setEnabled(false); however, the close button is also disabled. I can go about disabling the panes, the menus, and the buttons separately but that would be too troublesome.
Anyone have some pointers? Thanks!

hi
I think this block of code solve your problem.
          JFrame f=new JFrame();
          f.setSize(400,400);
          f.getContentPane().setLayout(new FlowLayout());
          f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          JButton b1=new JButton("Demo1");
          JButton b2=new JButton("Demo2");
          f.getContentPane().add(b1);
          f.getContentPane().add(b2);
          Component[] c=f.getContentPane().getComponents();
          System.out.println(c.length);
          for(int i=0;i<c.length;i++)
               c.setEnabled(false);
          b1.setEnabled(true);
          f.setVisible(true);

Similar Messages

  • Disable all components AND subcomponents

    I have a bunch of JButtons, JText, JTree, etc. in a JPanel and I want to disable/grey-out all of them. But some of the JComponents are in a Box. They don't get disabled. The code I am using now:
         public void setEditable(boolean bool) {
              for (Component component: getComponents()) {
                   component.setEnabled(bool);
    So the above works for all the components that are not in the Box
    I ended up doing the below (checks if the component is a Box and if it is, iterate through that enabling/disableing JComponents):
         public void setEditable(boolean bool) {
              for (Component component: getComponents()) {
                   component.setEnabled(bool);
                   if (component.getClass().toString().equals("class javax.swing.Box")) {
                        for(Component subComponent: ((Box)component).getComponents()) {
                             subComponent.setEnabled(bool);
    So big question is, is there some better way of doing this, or someway which is more generic?

    Well you could extend Box and override the setEnabled method to call setEnabled of all it's components, and then use that as your Box instead.
    But I have a couple of suggestions regarding the code you posted.
    1. You should use instanceof operator to check whether the component is an instance of Box
    2. You don't handle the case when there's a Box within a Box.
    e.g.,
    public void setEditable(boolean editable) {
        for (Component c : getComponents()) {
            setEditable(c, editable);
    private void setEditable(Component c, boolean editable) {
        c.setEnabled(editable);
        if (c instanceof javax.swing.Box) {
            for (Component subC : ((javax.swing.Box)c).getComponents())
                setEditable(subC, editable);
    }

  • How do I disable all non-essential components in the CS6 installer

    A new question in the spirit of http://forums.adobe.com/thread/548877 and http://forums.adobe.com/message/2778575, where I asked this question for CS4 and CS5 and eventually discovered how to do this (at least for CS4; CS5 was a mess...): How do I disable all the non-essential components in the Photoshop CS6 installer?
    I already found the payloads/Media_db.db sqlite 3 database and wiped the DependencyData table. This goes a long way - unlike CS5, which was a maze of hidden xml configs and sqlite databases, for CS6 just wiping this single table will give the user full control over what the installer will put in the computer. With the dependencies wiped, we can now see all the stuff it's actually going to install:
    Bridge (normal and x64) - 187 and 262 MB
    CMaps (normal and x64) - 7.2 and 7.2 MB
    CSXS Extensions - 1.3MB
    CSXS Infrastructure - 6.8MB
    Color - photoshop, EU, JA, NA - 1.5, 2.1, 3.0, 2.5MB
    Video profiles - 4.7KB
    Dynamic Link Media Server - 96MB
    DynamicLink Support - 6.1MB
    ExtendScript Toolkit - 19MB
    Extension Manageer - 16MB
    Fonts recommended (normal and x64) - 110 and 110MB (why are there x86 and x64 versions? more of an open question than one that really needs an answer, but this is not how fonts work. There are no separate x86 and x64 flavoured OpenType fonts)
    Fonts required (normal and x64) - 123 and 123MB
    Hunspell Linguistics Plugin (normal and x64) - 181 and 181MB
    Linguistics (normal and x64) - 46 and 46MB
    Mini Bridge (normal and x64) - 4.0MB
    PDF Library Files (normal and x64) - 75 and 75MB
    Photoshop (normal and x64) - 486 and 563MB
    Photoshop Support - 9.4MB
    Player for Embedding 3.3 (normal and x64) - 21 and 26MB
    Switchboard 2.0 - 1.1MB
    Type Support (normal and x64) - 6 and 6MB
    Winsoft Linguistics Plugin (normal and x64) - 8.2 and 8.5MB
    XMP Panels - 4.9MB
    ColorCommonSetCMYK - 13MB
    ColorCommonSetRGB - 8.6KB
    Camera Profiles Installer - 285MB
    MSVC++2005 redist. (normal and x64) - 11 and 11MB
    MSVC++2008 redist. (normal and x64) - 11 and 11MB
    MSVC++2010 redist. (normal and x64) - 11 and 11MB
    MSVC80_CRT (normal and x64) - 0.0 and 0.0KB
    PDF Settings - 2.4MB
    Camera Raw 7  (normal and x64) - 22 and 24MB
    Suite Shared Configuration - 3.2MB
    Some of these things we really want installed (Photoshop, CMaps, XMP panels, Type Support and required fonts and color profiles are pretty much the minimal set required for a functional Photoshop installation), but some of these things really have no right to be silentedly installed. There's a good gigabyte of nonsense that someone who just wants Photoshop has no need for. Denying them the option to unselect these things during installation is a bit evil (whatever happened to the 'advanced' or 'custom' installation option? That was a good option).
    That said, there's still something funky going on - unselecting all components indicates that the installation will required 0.0KB on disk. However, selecting Photoshop CS6 x64, which indicates its size is 563MB, results in an installation that requires 677MB on disk. Similar things happen for other components; CMaps is 7.2MB, but when you select it, it suddenly requires 121MB on disk.
    Much last last time, I fully appreciate the install team's choices in making sure the installer will always work as long as people don't tamper with it, but I'm not one of those people - I do tamper with it, because I want to control exactly what lands on my disk. So: how do I find out what these secret things are that are not listed after wiping the dependency data so that I can explicitly pick individual components? Which additional steps are required to reveal the hidden dependencies that will apparently still be installed, or aren't factored into the size indication for the various components? And finally, how do I make the installer NOT determine that "this is not a genuine installer, you may have a counterfeit product" =)
    I know it's been altered; I modified it, because I think your install process is trying to force stuff onto my computer that I never asked for, nor will ever use (I know they're quality products, they just have no right to exist on my computers. If I had the choice to say no, I'd acknowledge them as quality products instead).
    - Mike Kamermans
    nihongoresources.com
    NB: if Eric Wilde ends up replying to this post: I still remember your willingness to help figure this out for CS5, two years ago. Thank you again for that.

    I can see why you wouldn't want to release information that lets people set up arbitrary installers, but that's why I mostly wanted those two specific hashes. The installer team can just generate them without ever saying how, and we will only be able to use them to validate the installer for the modification that lets you pick components. This should in no way interfere with the desire to prevent dangerous installers making it into the wild; in fact, it kind of guarantees that's impossible.
    I know you can't guarantee it'll work or test it, and that's fine. Past experience has shown that CS3, CS4 and CS5 work fine with updates (and most updates don't apply to Photoshop, they apply to the additional components that I traditionally don't install), so I'm pretty sure it'll work fine with CS6 too, although of course it could go wrong in which case I can always fall back to a normal install.
    Would you be willing to ask the install team whether they could generate just these two numbers, based on the single SQL command run on Media_db.db from the main payload directory? I can fully understand not wanting to give the "here is how you generate the hashes" information, but generating two specific numbers that don't work for anything but this specific query should be just as safe as the various hashes we can already see for the other Media_db.db files in the various payload directories (so they wouldn't reveal anything not already known about how to reverse engineer the hashing algorithm). It'd help tech-savvy customers quite a bit without playing into the hands of criminally minded jerks (I actually had the pleasure of running into a duped CS3 Extended disc several years ago! I had ordered CS3 for personal use, and mysteriously received a CS3 extended version with a volume licensing key in what looked like an official normal CS3 box. Needless to say, authorities and Adobe were notified).
    <<I think the right answer to this issue is to simply remove from the products those items that are not required to execute the product. That's actually something we're aggressively pursuing this summer so that the product size reduces in future releases, particularly for PS.>>
    It's not possible to take components out of the payloads directory without the installer complaining that errors have occurred. It really wants all those files there when it starts =(
    <<Have you investigated using AAMEE? I don't think that will get rid of all the "extraneous" pieces; but, it does provide some flexibility in creating an install package that can then be pushed out through normal deployment tools (e.g. SCCM).>>
    I did, but unfortunately AAMEE requires the use of a volume license key, which I don't have. We only have individual products keys for the machines that will get Photoshop CS6.
    - Mike

  • How can I disable all the components in a JPanel?

    I want to disable all the components( button, text field ) in a JPanel. I know I can search the panel and disable each of its children component recursively. Is there a better way to do this?

    I want to disable all the components( button, text field ) in a JPanel.You haven't defined what you mean by "disable".
    If you mean you want the component to be repainted in its disabled state, then you would need to set the property of each individual component to disable, which would imply some kind of recursion.
    If you just want to prevent components from receiving key events and mouse events, then you can use a glass pane or maybe a panel with an overlay layout that contains a non-opaque panel that intercepts all events.

  • Disable all the components of a panel ( panels within the main panel )

    Hi guys!
    I have a problem!
    i have to disable all the components of a panel. please note that i am also having panels within the main panel. please tell me how to do that!!!
    its urgent!!

    Hi guys!
    I have a problem!Wouldn't have figured that one out by myself ...
    its urgent!!No, it's not.
    You know, a panel is most often a subclass of Container, so all you need to do is recursively disable all child components. The methods getComponents and getComponent are very helpful when trying to access child components. Code likeif ( comp instanceof Container )
      // do soemthing
    }will help in determining whether a child component is yet another Container.

  • Alert like behaviour (disabling all other elements) for custom components

    Hey guys,
    I'm trying to get a CustomComponent to work like an Alert box. I want to lock all items on stage but the component.
    Is there a way to achieve this? Or would it be better to style an Alert to look like my CustomComponent?
    Thanks for reading

    Hi,
    you can Popup any component you want. To disable all other items set it modal.
    PopUpManager.createPopUp(parent, className, true)
    Hope this helpful.

  • Clients Agent no longer installing all components properly

    I attempted an upgrade to R2, but it failed, so I reverted back to a VM snapshot before the upgrade attempt and all is well except for installing the client during OSD.
    The imaging process works fine, but once complete the agent isn't listing all the Components as installed or enabled:
    1) CCM Notification Agent: Disabled
    2) Most of the components that should have a status of Enabled are listed as Installed.
    On top of that I'm running SP1 CU2 (5.00.7804.1300), but the newly imaged devices list all components as SP1 base (5.00.7804.1000).
    I checked the LocationServices.log file on a client and after a few failed attempts to reach my MP it eventually finds the MP and connects using HTTPS (we use a PKI cert).
    I reinstalled the MP by deleting the role, waiting, rebooting, adding it back.
    What else can I do?  I'm thinking I'll try installing CU5.
    So in short the client no longer completely installs, which prevents any WSUS updates or Software from being installed post OSD.

    I only see errors under 3 components:
    SMS_NETWORK_DISCOVERY:
    Network Discovery failed to connect to a DHCP server due to a connection error. (Network Discovery can communicate only with Microsoft DHCP servers; if you do not use these servers, you can ignore this error.)
    Solution: If you are using Microsoft DHCP servers, then refer to the specific error string for details. This error message means that fewer clients and networks will be found than otherwise. Note that this message will not be generated again during this Network Discovery session, regardless of how often the error occurs.
    SMS_MP_CONTROL_MANAGER:
    Management Point encountered an error when connecting to the database CM_SITECODE on SQL Server sccmDatabase.domain.local. The OLEDB error code was 0x80004005.
    Possible cause: The computer running SQL Server is turned off, not connected to the network, or not functioning properly.
    Solution: Verify that the SQL Server is turned on, connected to the network, and functioning properly.
    Possible cause: Management point does not have sufficient access rights to the database.
    Solution: Verify that management point computer account or the Management Point Database Connection Account is a member of Management Point Role (msdbrole_MP) in the SQL Server database.
    Possible cause: Network problems are preventing the management point from properly accessing the SQL Server.
    Solution: Investigate and correct any problems with your network.
    Possible cause: The management point having problems is at a secondary site, and SQL access account being used was recently reset by the parent site.
    Solution: This can automatically repair itself after one hour , as long as the account in use is not locked out. Check that the account in use is not locked out. Instead of waiting an hour, you can stop and start the SMS_SITE_COMPONENT_MANAGER service to immediately apply the new configuration.
    Possible cause: The SQL Server Service Principal Names (SPNs) are not registered correctly in Active Directory
    Solution: Ensure SQL Server SPNs are correctly registered. Review Q829868.
    Then when I attempt the SCCM upgrade I see a lot of USMT and Boot Images fail to upgrade:
    Error connecting to WMI while getting remote system drive. Configuration Manager Setup 1/7/2015 4:05:27 PM 5072 (0x13D0)
    WARN: Failed to create USMT package instance - ConnectServer failed. Will retry in 10 seconds Configuration Manager Setup 1/7/2015 4:05:27 PM 5072 (0x13D0)
    ERROR: Failed to create USMT package instance - ConnectServer failed. Configuration Manager Setup 1/7/2015 4:07:57 PM 5072 (0x13D0)
    Error connecting to WMI while getting remote system drive. Configuration Manager Setup 1/7/2015 4:08:58 PM 5072 (0x13D0)
    ERROR: Failed to create SMS_BootPackageImage instances - ConnectWmiNamespace failed. Will retry in 10 seconds Configuration Manager Setup 1/7/2015 4:08:58 PM 5072 (0x13D0)
    ERROR: Failed to create SMS_BootPackageImage instances - ConnectServer failed Configuration Manager Setup 1/7/2015 4:11:28 PM 5072 (0x13D0)

  • Change colors to all components in a consistent way

    Is there a way to change color to all components of an application (or of a JFrame), such as all JButtons backgrounds, JFrame backgrounds etc.?
    I suppose i've to deal with UIManager defaults, but is there some facility, or some check-list to help achieve this task?.
    Thanks in advance
    Agostino

    Check out my ComponentMapper class. You could do it with this by running the mapper on the contentpane (and potentially the JMenuBar too if you like)
    You are welcome to use and modify this code but please don't change the package or take credit for it as your own work
    tjacobs.util.ComponentMapper
    ======================
    package tjacobs.util;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.TextComponent;
    import javax.swing.JFileChooser;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    import javax.swing.event.DocumentEvent;
    import javax.swing.event.DocumentListener;
    import javax.swing.text.JTextComponent;
    public class ComponentMapper {
         public static interface MappedFunc {
              public void func(Component c);
         public static void map(Component c, MappedFunc func) {
              func.func(c);
              if (c instanceof Container) {
                   Container con = (Container)c;
                   int count = con.getComponentCount();
                   for (int i = 0; i < count; i++) {
                        map(con.getComponent(i), func);
         public static void main(String[] args) {
              JFileChooser fc = new JFileChooser();
              MappedFunc mf = new MappedFunc() {
                   public void func(Component c) {
                        if (c instanceof JTextComponent) {
                             System.out.println("found");
                             final JTextField tf = ((JTextField)c);
                             tf.setEditable(false);
                             tf.getDocument().addDocumentListener(new DocumentListener() {
                                  public void insertUpdate(DocumentEvent de) {
                                       Runnable r = new Runnable() {
                                            public void run() {
                                                 tf.setText("");
                                       SwingUtilities.invokeLater(r);
                                  public void removeUpdate(DocumentEvent de) {
                                  public void changedUpdate(DocumentEvent de) {
                             while (c != null) {
                                  System.out.println(c.getClass());
                                  c = c.getParent();
                             //disable the textfield
              map(fc, mf);
              fc.showSaveDialog(null);
    }

  • Disable (all) functions on the block diagram with right-click menu

    Hello to everyone,
    here is one more idea, which I'd like to propose. 
    As for me, it would be useful to have the following: when all components (functions, wires, subVIs, etc.) are selected on the block diagram (like, after ctrl+A), operator could do right-click, and in the menu would appear menu item "Disable everything". After it, all the code could be placed into Disable structure. 
    Of course, I can add Disable structure to block diagram manually, and cover whatever I want, but with right-click menu it would be much faster.
    Also, it can be modified to disable only selected items - then each of them can be placed into separate Disable structure, and, for example, additionaly in the enabled case of Disable structure, corresponding wires will be connected. Sometimes it is needed for testing - just to disable couple functions, and test subVI. Or to disable subVI fully (it's faster, then disable place, where it is called. Especially, if subVI is used in many places).
    It will not make debugging difficult, because anyway Disabled structures are used; such functionallity can just make life a little bit easier...
     

    There is always the File->New... which opens up a new window.  You can have your templates in that window by putting them somewhere (I don't remember where at the moment).
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • 11G ADF BC: First time loading the page, how to disable some components?

    Hi,
    I have a fusion web application created using Jdev 11G ADF BC. I am working on a search/results page that has a panel split. In the left panel, there is a list of nevigation links. The data shows in the right panel.
    What I want to achieve here is to enable only one link on the left when the page is first loaded and it is a search/result page. Disable all the rest of it because other links are related to more info about the search results. When the page is first loaded, there is no data on the right, so that there is no more other data to look at. Ideally, all the rest of the links should be disabled and only the "Query" link should be active and selected.
    Is there a way to do this with 11G? Thank you very much for your help.
    Regards,
    Annie

    initially, what ever the components you want to disable set the disabled="true" in the jspx. Once you fetch the query results and in that action enable the componens like commandButton1.setDisabled(Boolean.FALSE);. that's how I am doing. You can dynamically enable/disable by having a boolean variable in the backing bean and set the disable property of component lke disabled="#{backingBeanScope.yourbean.blnAddBtn}".

  • How to disable all fields of a page on button click

    Hello, I am using JDeveloper 11.1.2.3.0
    I have a page with several fields on it. I want to have all the page fields disabled when I click a certain Button. How can I achieve this?
    If what I am asking is too difficult to achieve can you help me with an idea on how to achieve something similar?
    Thank you

    This can be achieved by using JavaScript Client API get the id's all the fields while clicking the button  and disable your Components,
    Calling Backing bean method or binded component involves server side round-trip, you can easily achieve this using simple java script in
    Client Side..
    Call this method in your Client Listener ..
    function disableFields(actionEvent) {
            var field1= AdfPage.PAGE.findComponent("field1id");
            var field2 = AdfPage.PAGE.findComponent("field2id");
            field1.setDisabled(true);
            fileld2.setDisabled(true);

  • All components not updating when I change the L&F

    I have developed a GUI and want Windows LookAndFeel for it. Please excuse me if I use some terms incorrectly. I'll explain my class structure first -
    1. class MainWindow - Contains the main method and invokes MainFrame
    2. class MainFrame - Creates the basic GUI and all the components and their event-handlers
    3.class MainPanel - Contains the actions to be taken in response to an event in MainFrame
    4. Dialog Boxes : Their are several classes implementing several dialog boxes which I load as needed.
    I have changed the L&F in the MainFrame class after all the MainFrame class components have been loaded. I have also used updateComponentTreeUI( ) to update all components already formed. I found out that not all components are having the Windows L&F when I tried out a JProgressBar. Instead of the green-broken progress indicator (Windows XP style), it was showing the gray-filled indicator (Java style). Then I noticed even the Menu Items are having the default L&F. Can anyone comment. Not giving any code because I am not sure which part of the huge GUI code should I post, i.e. where the problem really lies.

    You just said it doesn't work for a menu. So you
    create a frame with a menu and a menu item. About 10
    lines of code. Then you add two buttons one to switch
    to the Windows LAF the other to the Metal LAF.
    Another 10 lines of code. Now you have your demo
    program.No no, you din't get me. I know the basics regarding L&F. All the components are working fine, but that JProgressBar is not showing the XP view. Forget the JMenuItems, I am not sure the view is Windows L&F or Metal L&F, but I am sure the JProgressBar is not Windows L&F (while the rest of the components in the dialog box are perfect). Could this be due to something that I missed out while implementing the JProgressBar. But the Windows L&F is loaded before the dialog box containing the progress bar comes in. Your answer to my last Swing post helped me a lot. Hope you (or anyone else) can help me with this too

  • Disabling JPanel Components

    Dear ,
    I have the following method that disable all the components in a JPanel;
    It has a JLabel, JTextField, and a JButton.
    When I call this method from the constructor of the parent class; It is only disabling the JLabel, and the JTextField.
    If I extend this class from another class, and call this method; None of the components are disabled.
    public void disablePanel()
            myPanel.setEnabled(false);
            allCom = myPanel.getComponents();
            for (int i = 0 ; i < allCom.length; i++)
                allCom.setEnabled(false);
    Would any one, suggest what might the reason be?
    Best Regards,
    M. Tleis

    Your code disables only the first-level children of myPanel .
    If the JButton is not a first-level child but merely a grandchild (e.g. added to a JPanel that is itself added to the initial myPanel), your loop never iterates to the button.
    I suggest you have a look at camickr's DisabledPanel : http://tips4java.wordpress.com/2009/08/02/disabled-panel/

  • "wlan disable all" command -- will it kill my remote access?

    Hi All,
    I am having an issue with one of my WLC's in a remote part of the world. The issues started after I changed the management IP address. After the change, I can no longer access the GUI. I can get in via telnet, but I have to clear arp on my local PC's IP and immediately telnet to the WLC for it to work, and I only get about 45 seconds of access before it shuts me out. Very strange since my PC is 4,000+ miles away.
    I want to roll back to the old management IP to try and reverse troubleshoot this, but since I don't have GUI access, I have to put the command in on the CLI.  When I enter the command to change it: config interface address management 192.168.159.5 255.255.255.0 192.168.159.1 it says "failed: wlans are using this IP, disable wlans first."  However, when I show the wlans, the staff one shows interface name is "management," which is the interface that has the IP I want to change.
    (Cisco Controller) >show wlan summary
    Number of WLANs.................................. 3
    WLAN ID  WLAN Profile Name / SSID               Status    Interface Name
    1        Scrubbed - Staff / Scrubbed - Staff        Enabled    management
    2        Scrubbed - Mobile / Scrubbed - Mobile  Enabled   fc_external
    3        Scrubbed - Guest / Scrubbed - Guest  Enabled     fc_external
    Can I do wlan disable all and remain connected to the WLC? My telnet access is coming from a VPN in the US and over MPLS to a router at the site in the remote country, so I'm not connected to it via wireless to my knowledge, but that "interface name: management" above has me second guessing this decision.

    I'm not entirely sure to be honest, as I inherited this piece of equipment - it is someone else's work.  I have the following:
    (Cisco Controller) >show interface summary
     Number of Interfaces.......................... 3
    Interface Name                   Port Vlan Id  IP Address      Type    Ap Mgr Guest
    fc_external                      2    untagged         192.168.1.3          Dynamic No     No
    management                       1    untagged     192.168.158.100 Static  Yes    No
    virtual                          N/A  N/A                        1.1.1.1              Static       No     No
    My VPN tunnel originates in the US, where I am sitting to that 158 subnet at the site, and adding access to that 192.168.1.3 that is sitting on the dynamic interface isn't something I can do as that subnet (192.168.1.x) lives elsewhere as well from the data center's perspective. Hopefully that makes sense.  The setup is not ideal currently. I need to change it but for now I'm stuck.

  • Disabling of components.

    I have a panel containing many components in it...say like JTextField, JComboBox, JCheckBox...etc
    I need to disable all the components...Is there any way to disable all the components in the panel at one shot or shd i disable each component like below.
    " textfield.setEnabled(false)"
    Thanks

    Try this:
    Component[] components = myPanel.getComponents();
    for ( int i = 0 ; i < components.length ; i++){
           components.setEnabled(false);
    You'll have to adjust that to your situation, and if the panel has subcontainers they will have to be treated in the same manner.
    That should get you started.
    DB

Maybe you are looking for

  • How do i use 2 i pods w/ one i tunes library ?

    i have a first gen. (fire wire connection) i pod that i have used sucessfully for many yrs.i bought a nano for my wife, installed the software and have been sucessfully loading it w/ music. now when i hookup my i pod, it says do not disconnect and th

  • XML to XSD

    hello if I get an XML (as a file), and I would like to map it to an RFC, I know I can do it with Java/ABAP mapping or XSLT. my Q is if it is possible to get the XML, build a suitable XSD Schema and put it in the Message Mapping source and the XSD wil

  • 1440x900 resolution missing in Bootcamp (MBPr+Retina)

    I just installed Windows 8 RP on my new MacBook Pro with Retina display and realized that the 1440x900 resolution option is completely missing from Windows (and games). I've tried installed NVIDIA's latest 650M beta drivers (304.79), but they refuse

  • 2nd generation iMac G5 is suddenly pixellating

    M 2nd generation iMac G5 is suddenly pixellating to the point of unreadabilty after being on for a couple hours. If I turn it off and let it sit for 10 or 20 minute sit starts ok again. My serial starts with YD531 . Is this likely to be capacitors an

  • Communicate via serial port/ethernet from client app

    Hi Is it possible to communicate between the client serial port and an Apex application? (or from the application to an ethernet device). I need to link an application to a weighing machine and send/receive information via an Apex application. The in