Resize panels in a frame

Hi, I tried searching through the forums, but am obviously using the wrong search words.
I have a JFrame with a JPanel in it. The JPanel is using the following layout:
new BoxLayout (parentPanel, BoxLayout.LINE_AXIS)
Then I added two JPanels to the parentPanel.
But then I would like to click and drag the separator between the two panels to change the size of the two JPanels.
Any hints?
Thanks,
Novice

As it turns out I should have been looking at the JSplitPane class.
Novice

Similar Messages

  • Make a square Panel inside a Frame (awt)

    Hi all. I have a Frame that contains an panel.
    The Frame has BorderLayout and panel is positioned Center in it, occuping all the space. However I want the Panel to be perfectly square.
    The Panel MUST have LayoutManager(null).
    If I call setSize(100,100) on Frame, the Frame incorporates the height to include the Windowsbar on top, and then the Panel won't be square.
    If I call SetSize(100,100) on Panel, the Frame don't display anything else than the Windowbar.
    How can I solve this? Am I missing something important?

    One more question please noah....
    My applet i dependent on the square panel like I said. However it is important that the applets Frame can be resized, but its panel must still be sqaure.
    My code goes as follows:
    class Spanel extends Frame{
        panel.setBackground(Color.red);
        panel.setLayout(null);
        panel.setSize(200,200);
        add("Center",panel);
        pack();
        show();
    this.addComponentListener(new java.awt.event.ComponentAdapter() {
          public void componentResized(ComponentEvent e) {
            int x = calculateFrameSize(e);
            panel.setSize(x,x);
            pack();
            show();
    calculateFrameSize() {
    // only returns the lowest number of
    //getWidth() and getHeight()
    }This code however will go in an infinite loop, calling
    COmponentResized over and over.
    How can I avoid the loop?

  • Hello everybody, Problem with Two panel in a Frame

    This is my first mail in this forum.I'm trying to learn java myself & have a problem in adding more than one panel in a JFrame.
    i should be able to add one panel which occupies 3/4 of a frame and another panel occupies the rest.
    Thanx in advance for anyone who helps me in sorting out this problem.

    You can use for example the GridLayout
    In your JFrame constructor, add lines below, it will add 2 colored panel in your frame
    Container container = getContentPane();
    container.setLayout(new GridLayout(1,2)); // 1 row, 2 cols
    JPanel panel1 = new JPanel();
    panel1.setBackground(Color.red);
    container.add(panel1);
    JPanel panel2 = new JPanel();
    panel2.setBackground(Color.green);
    container.add(panel2);

  • Adding a panel to a frame

    Hi! All,
    I'm new to java and i have a little problem here. I have created a frame and i want to put two panels inside it. well, i managed to put the first one, but i'm having problems with the second one. I want this second one to be added when I click on a button.
    The button that I will click is the new JButton i have defined. it is called draw. I really do not know what the problem is. I will apprecite any help. Below is my code.
    // My Code.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.*;
    public class Main extends JFrame {
    //all components I'll need
    public JButton draw;
    public JButton addFormula;
    public JButton modelCheck;
    /** Creates a new instance of Main */
    public Main () {
    super("Graphical Model Checker for Knowledge");
    //content pane is the main panel where i'll put everything
    JPanel contentPane = new JPanel();
    draw = new JButton("Draw");
    draw.addActionListener(
    new ActionListener() {         
    public void actionPerformed(ActionEvent event) {
    if(event.getActionComman().equals"Draw")) {               
    JPanel drawing = new JPanel();
    drawing.setBackground(Color.BLUE);
    drawing.setSize(100, 100);
    drawing.setLayout(new FlowLayout
    FlowLayout.CENTER));
    add("North", drawing);
    drawing.setVisible(true);
    contentPane.add(draw);
    addFormula = new JButton("Add Formula");
    contentPane.add(addFormula);
    modelCheck = new JButton("Model Check");
    contentPane.add(modelCheck);
    Canvas canvas = new Canvas();
    canvas.setSize(40, 40);
    canvas.setBackground(Color.white);
    contentPane.add(canvas);
    repaint();
    //add panel to the frame
    add("South", contentPane);
    //colours for window
    contentPane.setBackground(Color.yellow);
    //set layout manager
    contentPane.setLayout(new FlowLayout(FlowLayout.LEFT));
    addWindowListener(new CloseWindow());
    pack();
    setVisible(true);
    String [] fileItems = {"Open", "Save", "Rename"};
    String [] editItems = {"Copy", "Cut", "Paste"};
    //instantiate a menu bar object
    JMenuBar bar = new JMenuBar();
    JMenu file = new JMenu("File");
    for (int index=0; index != fileItems.length; index++)
    file.add(fileItems[index]);
    bar.add(file);
    setJMenuBar(bar);
    JMenu edit = new JMenu("Edit Graph");
    for (int index=0; index != editItems.length; index++)
    edit.add(editItems[index]);
    bar.add(edit);
    setJMenuBar(bar);
    public static void main(String args []) {
    JFrame window = new Main();
    }

    Don't forget to use the "Code Formatting Tags",
    see http://forum.java.sun.com/help.jspa?sec=formatting,
    so the posted code retains its original formatting.
    add("North", drawing); The "North" means nothing when adding a component to a panel using a FlowLayout. You should just be using:
    add( drawing );After you add the component to the container you need to use:
    frame.validate();

  • Display 3 Panels in one frame.....

    Hi
    I need to display 3 different panels in one frame.
    The first panel will contain a JXTreeTable [North]
    The second Panel will contain a Tree [Center]
    The third Panel will contain a JXTreeTable [South]
    I am unable to get this working as the components to be displayed
    are not being placed properly.
    The JXTreeTable is being displayed only at the NORTH.
    Is it better to create 3 different panels or create just one panel with GridLayout(as I have done)
    Have I overlooked something in the code below?
    Thnx
    This is my code:
    public class PositionCostingView {
         public PositionCostingView(){
              initComponents();
         private void initComponents(){
              final JFrame frame = new JFrame("Position Costing");
              frame.setPreferredSize(new Dimension(450, 300));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // First,testing my model
              TreeTableModel model = new OpTreeTableModel();
              JXTreeTable treeTable = new JXTreeTable(model);
              // Add the TreeTable to a Scroll Pane.
              JScrollPane scrollPane = new JScrollPane(treeTable);
              JPanel players = new JPanel(new GridLayout(3, 0));
              players.add(scrollPane);
              players.add(MyTree);
              players.add(scrollPane);
              JPanel content = new JPanel();
              content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));
              content.add(players);
              frame.getContentPane().add(content);
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              new PositionCostingView();

    Please ignore my code on top.I am trying something else.....
    No offence meant please.

  • Sizing two panels in a frame

    Hi,
    i would like to set the size of two panels which are next to each other in a frame.
    The left one should be about 5 times wider than the one on the right.
    splitPane.setPreferredSize(new Dimension(1000,500));This one is not working.
    Thx:
    james

    SplitPane is my right panel in the frame, this should
    be 5x wider than the right panel, It should be 5x wider than itself?
    So it is nothing to do with Splitpane, the problem is
    that 1 add the splitpane and the buttonPanel to
    mainPanel, and these 2 panels are which are added are
    the same wide!You should have posted a Short,Self Contained, Compilable and Executable, Example Program.

  • Make Resize Panel Remember My Settings

    Hi,
    I'm on Photoshop CS5.1 on Windows.
    Is there any way to make the resize panel remember what settings I told it to use?
    In 99.99% of cases, I want to use pixes as units, locked aspect ratio, and left corner as reference... Yet, any time I set those and then go to resize another object, the settings get reverted to center reference point, percents, and unlocked aspect ratio.
    It's incredibly annoying to have such poor defaults without sticky settings... Is there any way around it?
    Let me know.
    Thanks,
    Z

    Turn on the rulers (Ctrl r) right click inside the ruler and choose unit.  It will keep that unit until you change it again.  As far as I know, there is no way to change the Free Transform reference point default from center.

  • Resizable panels in a JApplet, sort of like a Frame

    I have a dialog box that has a tree on the left and images/text displayed on the right. I have the tree and text placed on two different panels. I want the panels to be resizeable, in the way an HTML frame is resizable. This way the user can shorten the tree panel, which in turn widens the text/image panel...or vice versa. Problem is that I have no clue where to begin!
    Any/All help is apprecaited!

    Yup! JSplitPane will work quite nicely. <sarcasm>I greatly appreciate everyone's help!</sarcasm>

  • Panels resizable contained in a frame resizable

    Hello to all,
    I have the following question, how is it possible to make resizable the panels contained in the frame when frame's resized by the user?
    I had already a look at the swing tutorial but I didn't find the solution :( (may be I didn't understand )
    Can anybody help me?
    I attach here bellow my code
    Thansk in advance
    Mandy
    ublic class SecondClass  extends JFrame{     
         JTextArea cfgArea;
         JTextArea relArea;
         JTextArea resultArea;
         JComboBox searchModeCB;
         public SecondClass(){
             JFrame frame = new JFrame("title");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.setResizable(true);
             JPanel mainPanel = new JPanel();
             mainPanel.setBackground(Color.cyan);
             mainPanel.setSize(600,400);
             mainPanel.setLayout(null);
             JPanel  cfgPane = new JPanel ();
             cfgPane.setLayout(null);
             cfgPane.setBackground(Color.red);
             cfgPane.setBounds(10,10,370,280);
             mainPanel.add(cfgPane);
             cfgArea = new JTextArea();
             cfgArea.setBorder(BorderFactory.createEtchedBorder());
             cfgArea.setDragEnabled(true);
             cfgArea.setTransferHandler(new CustomedTransferHandler());
             cfgArea.setDropMode(DropMode.INSERT);
             JScrollPane cfgScrollPane = new JScrollPane(cfgArea);
             cfgScrollPane.setBounds(10, 20, 350, 200);
             cfgPane.add(cfgScrollPane);
             JButton clearCfgButton = new JButton("Clear");
             clearCfgButton.setBounds(70, 230, 70, 20);
             cfgPane.add(clearCfgButton);
             JButton addCfgButton = new JButton("Add");
             addCfgButton.setBounds(200, 230, 60, 20);
             cfgPane.add(addCfgButton);
             mainPanel.add(cfgPane);
             JPanel relPane =  new JPanel();
             relPane.setLayout(null);
             relPane.setBackground(Color.blue);
             relPane.setBounds(10,300,370,280);
             mainPanel.add(relPane);
             relArea = new JTextArea();
             relArea.setBorder(BorderFactory.createEtchedBorder());
             relArea.setDragEnabled(true);
             relArea.setTransferHandler(new CustomedTransferHandler());
             relArea.setDropMode(DropMode.INSERT);
             JScrollPane relScrollPane = new JScrollPane(relArea);
             relScrollPane.setBounds(10, 20, 350, 200);
             relPane.add(relScrollPane);
             JButton clearRelButton = new JButton("Clear");
             clearRelButton.setBounds(20, 230, 70, 20);
             relPane.add(clearRelButton);
             JButton addRelButton = new JButton("Add");
             addRelButton.setBounds(110, 230, 60, 20);
             relPane.add(addRelButton);
             String[] items = {"Something"};
             searchModeCB = new JComboBox(items);
             searchModeCB.setBounds(180, 230, 180, 20);
             searchModeCB.setSelectedItem("Something");
             relPane.add(searchModeCB);
             JButton okRelButton = new JButton("Ok");
             okRelButton.setBounds(300, 255, 60, 20);
             relPane.add(okRelButton);
             JPanel resultPane = new JPanel();
             resultPane.setLayout(null);
             relPane.setBackground(Color.yellow);
             resultPane.setBounds(390,10,580,570);
             resultArea = new JTextArea();
             resultArea.setBorder(BorderFactory.createEtchedBorder());
            mainPanel.add(resultPane);
             JScrollPane resultScrollPane = new JScrollPane(resultArea);
             resultScrollPane.setBounds(10, 20, 560, 490);
             resultPane.add(resultScrollPane);
             JButton clearResButton = new JButton("Clear");
             clearResButton.setBounds(120, 520, 80, 20);
             resultPane.add(clearResButton);
             JButton saveResultButton = new JButton("Save");
             saveResultButton.setBounds(380, 520, 80, 20);
             resultPane.add(saveResultButton);
             JButton exitButton = new JButton("Exit");
             exitButton.setBounds(495, 550, 80, 15);
             resultPane.add(exitButton);
             frame.add(mainPanel);
             frame.setLocation(200,200);
             int width = 980;
             int height = 650;
             frame.setSize(width, height);
             frame.setVisible(true);
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SecondClass main = new SecondClass();
    }

    ok did some modifications.
    Now it works as I want
         public SecondClass(){
             JFrame frame = new JFrame("title");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.setResizable(true);
             JPanel  mainPanel = new JPanel ();
             mainPanel.setSize(600,400);
             mainPanel.setLayout(new GridLayout(0,2));
             JPanel sxPanel = new JPanel();
             sxPanel.setBackground(Color.blue);
             sxPanel.setLayout(new GridLayout(2,0));
             mainPanel.add(sxPanel);
             JPanel dxPanel = new JPanel();
             dxPanel.setLayout(new BorderLayout());
             mainPanel.add(dxPanel);
             // Create cfgArea
              JPanel  cfgPane = new JPanel ();
              cfgPane.setLayout(new BorderLayout());
             sxPanel.add(cfgPane);
             cfgPane.add(new JLabel("  "),BorderLayout.NORTH);
             cfgPane.add(new JLabel("  "),BorderLayout.EAST);
             cfgPane.add(new JLabel("  "),BorderLayout.WEST);
             cfgArea = new JTextArea();
             cfgArea.setBorder(BorderFactory.createEtchedBorder());
             cfgArea.setDragEnabled(true);
             cfgArea.setTransferHandler(new CustomedTransferHandler());
             cfgArea.setDropMode(DropMode.INSERT);
             JScrollPane cfgScrollPane = new JScrollPane(cfgArea);
             cfgPane.add(cfgScrollPane,BorderLayout.CENTER);
             JPanel southCfgPanel = new JPanel();
             cfgPane.add(southCfgPanel, BorderLayout.SOUTH);
             JButton clearCfgButton = new JButton("Clear");
             southCfgPanel.add(clearCfgButton);
             JButton addCfgButton = new JButton("Add");
             southCfgPanel.add(addCfgButton);
             //end og cfg Area
             // Create relArea     
             JPanel relPane =  new JPanel();
             relPane.setLayout(new BorderLayout());
             sxPanel.add(relPane);
             relPane.add(new JLabel("  "),BorderLayout.NORTH);
             relPane.add(new JLabel("  "),BorderLayout.EAST);
             relPane.add(new JLabel("  "),BorderLayout.WEST);
             relArea = new JTextArea();
             relArea.setBorder(BorderFactory.createEtchedBorder());
             relArea.setDragEnabled(true);
             relArea.setTransferHandler(new CustomedTransferHandler());
             relArea.setDropMode(DropMode.INSERT);
             JScrollPane relScrollPane = new JScrollPane(relArea);
             relPane.add(relScrollPane,BorderLayout.CENTER);
             JPanel southRelPanel = new JPanel();
             relPane.add(southRelPanel, BorderLayout.SOUTH);
             JButton clearRelButton = new JButton("Clear");
             southRelPanel.add(clearRelButton);
             JButton addRelButton = new JButton("Add");
             southRelPanel.add(addRelButton);
             String[] items = {"Something"};
             searchModeCB = new JComboBox(items);
             searchModeCB.setSelectedItem("Something");
             southRelPanel.add(searchModeCB);
             JButton okRelButton = new JButton("Ok");
             southRelPanel.add(okRelButton);
            //RESULT PANEL
             JPanel resultPane = new JPanel();
             resultPane.setLayout(new BorderLayout());
             dxPanel.add(new JLabel("  "),BorderLayout.NORTH);
             dxPanel.add(new JLabel("  "),BorderLayout.EAST);
             dxPanel.add(new JLabel("  "),BorderLayout.WEST);
             dxPanel.add(resultPane,BorderLayout.CENTER);
             resultArea = new JTextArea();
             resultArea.setBorder(BorderFactory.createEtchedBorder());
             resultPane.add(resultArea,BorderLayout.CENTER);
             JScrollPane resultScrollPane = new JScrollPane(resultArea);
             resultPane.add(resultScrollPane);
             JPanel southPanel = new JPanel();
             resultPane.add(southPanel, BorderLayout.SOUTH);
             JButton clearResButton = new JButton("Clear");
             southPanel.add(clearResButton);
             JButton saveResultButton = new JButton("Save");
             southPanel.add(saveResultButton);
             JButton exitButton = new JButton("Exit");
             southPanel.add(exitButton);
             frame.add(mainPanel);
             frame.setLocation(200,200);
             // Show the frame
             int width = 980;
             int height = 650;
             frame.setSize(width, height);
             frame.setVisible(true);
         }

  • User-resizable JPanel within my frame?

    Hi all,
    I've got a JFrame which contains a bunch of content in FlowLayout. One of the components in my frame is a JPanel that has the potential to display a lot of content -- it's reading a webpage obtained from the user. The panel has a scroll-bar, of course, but if there is a lot of content the user would prefer to see a bigger panel.
    Does anyone know of anyway to have an embedded JPanel use draggable borders so that they can re-size the panel at will? Naturally, everything in the panel and out of the panel should respect the new dimensions, and so components surrounding the panel in flowlayout, for example, should react accordingly.
    Is this possible?
    Thanks!
    Tim

    I could do that if I made my entire content pane a series of split panes, but I don't think that wouldn't really be a reusable solution (if I misunderstand what you meant, apologies).
    What I'm hoping for is something that's a property of the JPanel component itself. That way I can insert this expandable JPanel anywhere and everything else ought to respect its resizing. If such a thing is impossible, then some solution that mimics that would be fine.
    Any thoughts?

  • Passing data from a panel to a frame / disposing of a frame from in a panel

    Hello, I have recently created a program where all windows are made of seperate frames, now, to make the whole thing a bit more appealing and professional looking, i'd like to make 1 main frame, and load my content panels into this 1 frame. Problem i'm having with this is passing data from the loaded in panel to the main frame, so the main frame can hide one panel to load another with data inserted in the first panel. OR another solution to my problem would be a way to dispose of a frame, but from within the seperate panel class. I have searched the www for a solution, but haven't found one so far, so, any suggestions or references to some info about this kind of issue? Any pointer is greatly appreciated

    kennethdm wrote:
    EDIT: I took a look at the cardlayout, and, although i see its relevance to my question, it still leaves me with the question how exactly i will pass data the user inputs into the first panel, to the second panel. The second panel is built by the info which is provided in the first panel.Stop thinking of them as Panels and start thinking of them as OOP objects that have data that must be shared. It's often a matter of using getters and setters and sometimes requiring a sprinkling of the Observer design pattern.

  • Convert image file names to labels and resizing images according to frame. Possible??

    Hi all,
    I have posted this question hastily in the main mac forum but then i realized it is a scripting question so I repost here.
    Q1: I have a client with 700+ images who has named the images with numbers and the caption:
    eg: 1.II.34. Walking down the road towards the building.tiff
    This is the name of the image file itself
    Is there a way to import the name of the file (possibly without the extension) and place it as a caption under the image without copying and pasting? A script maybe?
    I tried the labelgraphics script. Unfortunately it returned the extension as well. I was given a solution but did not work for me since it deleted everything after the first dot on the name. This was:
    in labelgraphics on line 105, change
    myLabel = myLink.name
    to
    myLabel = myLink.name.split('.')[0]
    So how can we tackle this so it deletes everything after the LAST dot?
    Q2: The image files I am given are all huge tiff files. I use the full 100% of the images but in my document they have to be much smaller . They are usually scaled down to 25-35% of the original file. So I end up with huge, unneeded documents.
    Is there a script that would work together with photoshop maybe?
    It would need to read the frames dimensions the image is in, open the linked file inside photoshop, resize it with a specified interpolation to maybe 110% of the frame's dimensions, set the resolution (if not set) to 300 dpi save the image as a copy (or with a suffix or prefix), leave photoshop open (for the next image to be processed), relink to the new image and go to the next image
    I know it sounds a lot but I was amazed by the issues people handle in this forum and thought I would give it a try
    Thank you in advance
    Michael

    Peter thank you so much. It works like a charm.
    As for Q2, I spent some time doing research and came up with a couple of scripts that sound like they could do the trick.
    a) Image Transform or Rasterize
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1509 022#
    b) Resample Project Images to 100%
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1612 518#
    Still, since I am such an ignorant I do not know which one would be the proper one.
    Any suggestions would be highly appreciated.
    Thank you once more
    Michael

  • Strange problem loading panels in a Frame

    Hi,
    My Frame has a splitpane which has 2 Jpanels with in it. When I run my application using JWS, the frame and the splitpane show up but with nothing in it. All the class files that I'm using are all in the same package and they are all in the jar file. I do not get any null pointer exceptions too. I looked at couple of examples (Rachel's etc) and theres nothing different that I'm doing. I've been pulling my hair for past couple of days figuring out this stuff, if any one has any clue, please .... let me know. Thank You
    Viplavi

    Does it work as a stand-alone app?
    It may help you to post the code where you add the panels to the splitpane and where you display the gui etc...
    Gavin

  • Changing a panel in a frame at runtime

    I have a frame setup with buttons on the BorderLayout.WEST area. Now for each clicked event those buttons generate I want to add a panel to the SOUTH area depending on which button was pressed.
    I have all the action listeners setup, and when a button is clicked the following code is executed
    getContentPane().add(new buttonPanel(),BorderLayout.SOUTH)
    The code seems to be executing but nothing will show up in my JFrame.....
    The buttonPanel object works and if I add to the SOUTH section during design time it will show up ok. But I need to be able to change this panel to buttonPanel2() whenever the user clicks the appropriate button...

    okay that worked, the correct panels will come up, but when I click on one of the buttons that was just created, one of the previous buttons will come onto the foreground. Do I need to destroy the previous panel?
    and if so, how do i do that generically? So that I can destroy any object in the BorderLayout.SOUTH region.

  • Swaping Panels in a frame?

    Hey, I have a frame that has a GridLayout of (1,2) so it can jold 2 Panels of equal size, when I press a button i need the 2 Panels in there to go away so I can put new ones in. This is my code to add Panels:
    public void addPanels()
             frame.getContentPane().setLayout(new GridLayout(1,2));
             frame.getContentPane().add(myLeftPanel);
             frame.getContentPane().add(myRightPanel);
         }And I have this one to switch Frames
         public void swapPanels(JPanel leftPanel, JPanel rightPanel)
             myLeftPanel = leftPanel;
             myRightPanel = rightPanel;
             addPanels();
         }I tried the remove(Component comp) meathod and it didn't work and I'v also tried the removeAll() but that didn't work either looks like it removed more then just the Panels because a can't add new ones. Any ideas?

    You don't really need to set the content pane's layout each time. Set it once and it is always set. In your addPanels method, you need to call getContentPane().removeAll() then add each panel as you are currently doing then call getConentPane().revalidate().
    public void addPanels() {
      Container contentPane = frame.getContentPane();
      contentPane.removeAll();
      contentPane.add(myLeftPanel);
      contentPane.add(myRightPanel);
      contentPane.revalidate();
    }

Maybe you are looking for

  • Downloading all attachments at one time

    I actually am having two issues.  First, when I purchased the Razr Maxx and the verizon rep at the store set up my email account (hotmail) on the phone.  We opened up an email that had about 5 attachments and as soon as I opened the email itself, the

  • New modem affecting iChat?

    Hi, I've recently installed a new modem (Thomson ST780WL) - it's one of them VOIP ones. I'm in The Netherlands and I used to be able to iChat to a friend in the UK who has an Orange Livebox, but since I've had the new modem I get the "insufficient ba

  • Can't  Sync Apps

    I wiped and loaded my computer with Windows 7 RC, but now I can't get my iPhone apps to sync. At first I copied my iTunes library from Windows Vista to Windows 7 and tried to sync, but it wouldn't allow my music/apps. It said I needed to authorize th

  • I'm trying to download Adobe Air. Getting Error that I need newer version, but keep getting same error. Any help here?

    Each time I try to download Adobe Air, I keep getting an error pop-up stating that I need to go to adobe to get a newer version.  Each time I attempt to do this, I receive the same error.  I'm able to get to the point where Adobe Air Installer icon a

  • My list of Xcelsius 2008 Problems (so far)...

    Post Author: jezbraker CA Forum: Xcelsius and Live Office Been using it for a couple of weeks now with a view to moving our solution over to this to make use of the OFFSET function which should get around the performance issues we have faced in 4.5.B