Changing the main frame's center panel

I have a JPanel that I've added to my application's main frame's content pane's center, i.e.
JPanel myPanel = new JPanel ();
mainframe.getContentPane().add (myPanel, BorderLayout.CENTER);
Then, I'd like to change that panel, and I do the following
JPanel myNewPanel = new JPanel();
mainframe.getContentPane().remove(myPanel);
mainframe.getContentPane().add(myNewPanel, BorderLayout.CENTER);
mainframe.pack();
This seems to work except that the call to pack() also resizes my application's window. I'd like the application's window to remain the same size as I change the panel throughout the program. How can I achieve this?
BTW, I'm new to swing and GUI programming, so not sure if my choice of implementation is a good one. Basically, what I want to do is, based on user selection, display the selected item in an "appropriate way". This mean sometimes, I want to use a set of GUI labels while other times I want to use a mix of radio buttons, check boxes, and labels.
Thanks in advance.

Can't you just do frame.getContentPane().revalidate()?No, because using the add(...) method does not remove the original component from the panel. So essentially what you have is two components added to the container with the same bounds. Generally the first component added is the one that gets painted.
So to add a new component to a BorderLayout the code should be something like.
contentPane.add(originalComponent, BorderLayout.CENTER );
contentPane.remove( originalComponent );
contentPane.add(anotherComponent, BorderLayout.CENTER);
contentPane.revalidate();
contentPane.repaint(); // sometimes required

Similar Messages

  • Configuration frame pop out of the main frame - how to do (architecture) ?

    Hi,
    I have a main frame that upon it I have a config button I did.
    This button pop open another frame in which the user config some variables which I need to use in the main frame actions.
    What is the right way to do it? -
    1. in the main frame constructor to create a config frame and save it as a data member in the main frame with setVisibility false, and when the user press the 'config' button I'll change the visibility to true
    (and then if I want to take data from the config frame I'll take it from there)
    2. To save only the config data in data members (this is a small window - 3 or 4 variables) and every time the 'config' button is pressed I'll build a config frame and in its' constructor I'll send the variables I saved in the main frame
    and they will be shown in there (and ofcourse when the config frame will be closed I'll save the new variables in the data members and dispose the config frame)
    Thanks,
    Michael

    I have a little problem.
    I build my own class that extends JDialog (with check boxes, text areas etc.)
    Then I Created a JOptionPane with OK_CANCEL buttons set it as my dialog content pane.
    Now I see the the pane buttons at the top and all my components at the buttom, and its now good.
    So Instead of JDialog i extends my class to JPanel and then called
    'JOptionPane.showOptionDialog' , and set my panel as the message.
    Now it looks good but i have another problem -
    I want to do a validity check before the dialog is being closed.
    Before I did with 'addPropertyChangeListener' method on my JOptionPane, but now I dont have an OptionPane because the 'showOptionDialog' is static.
    So for conclusion -
    How can I build a dialog thats:
    1. Look like I want (text areas, check boxes, lables ...)
    2. Has OK\Cancel button
    3. Lets me do validity check after the ok was pressed (and if I want - wont close the dialog)
    4. Return me values from the dialog (the text in the text area, the selection of the check box etc.)

  • Button to frame | button going back to the main frame (please help)

    these are the codes, by clicking the "FCFS" button it will generate another frame and from that frame another button will be pressed "accept" and it will go to another frame....
    my problem is that i nid to put codes on the "back" button to go back to the main frame were it started... please help me... thnks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Oscon extends JFrame
         private JButton fcfsB, priorityB, sjfB, rrB, exitB, creditsB;
         private fcfsButtonHandler fbHandler;
         private priorityButtonHandler pbHandler;
         private sjfButtonHandler sbHandler;
         private rrButtonHandler rbHandler;
         private exitButtonHandler ebHandler;
         private creditsButtonHandler cbHandler;     
         public Oscon()// main frame
              fcfsB = new JButton ("FCFS");
              fbHandler = new fcfsButtonHandler();
              fcfsB.addActionListener(fbHandler);
              priorityB = new JButton ("PRIORITY");
              pbHandler = new priorityButtonHandler();
              priorityB.addActionListener(pbHandler);
              sjfB = new JButton ("SJF");
              sbHandler = new sjfButtonHandler();
              sjfB.addActionListener(sbHandler);
              rrB = new JButton ("RR");
              rbHandler = new rrButtonHandler();
              rrB.addActionListener(rbHandler);
              exitB = new JButton ("EXIT");
              ebHandler = new exitButtonHandler();
              exitB.addActionListener(ebHandler);
              creditsB = new JButton ("CREDITS");
              cbHandler = new creditsButtonHandler();
              creditsB.addActionListener(cbHandler);
              setTitle("CPU SCHEDULING");
              Container pane =getContentPane ();     
              pane.setLayout(new GridLayout(2,3));
              pane.add(fcfsB);
              pane.add(priorityB);
              pane.add(sjfB);
              pane.add(rrB);
              pane.add(exitB);
              pane.add(creditsB);
              setSize(500,100);
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class fcfsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   JFrame frame = new JFrame("FCFCS setting");
         final JLabel FCFSProcessL, FCFSp1L,FCFSp2L,FCFSp3L,FCFSp4L, FCFSbt;
              final JTextField FCFSp1TF,FCFSp2TF,FCFSp3TF,FCFSp4TF;
                        FCFSProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        FCFSp1L     = new JLabel("P1:", SwingConstants.CENTER);
                        FCFSp2L     = new JLabel("P2:", SwingConstants.CENTER);
                        FCFSp3L     = new JLabel("P3:", SwingConstants.CENTER);
                        FCFSp4L     = new JLabel("P4:", SwingConstants.CENTER);
                        FCFSbt      = new JLabel("BT:", SwingConstants.CENTER);
                        FCFSp1TF= new JTextField (10);
                        FCFSp2TF= new JTextField (10);
                        FCFSp3TF= new JTextField (10);
                        FCFSp4TF= new JTextField (10);
                        JButton     FCFSokB = new JButton ("Accept");
                        FCFSokB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  JFrame frame2 = new JFrame("FCFCS");
                                  frame2.setSize(500,500);
                                  frame2.setVisible(true);
                                  frame2.setDefaultCloseOperation(EXIT_ON_CLOSE);
                                  JButton     FCFSclearB = new JButton ("clear");
                                  FCFSclearB.addActionListener(new ActionListener() {   
                                  public void actionPerformed(ActionEvent e)
                                  FCFSp1TF.setText("");
                                  FCFSp2TF.setText("");
                                  FCFSp3TF.setText("");
                                  FCFSp4TF.setText("");
                        JButton     FCFSBackB = new JButton ("Back");
                        FCFSBackB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  setTitle("CPU SCHEDULING");
                                  frame.setLayout(new GridLayout(7,2));
                                  frame.add(FCFSProcessL);
                                  frame.add(FCFSbt);
                                  frame.add(FCFSp1L);
                                  frame.add(FCFSp1TF);
                                  frame.add(FCFSp2L);
                                  frame.add(FCFSp2TF);
                                  frame.add(FCFSp3L);
                                  frame.add(FCFSp3TF);
                                  frame.add(FCFSp4L);
                                  frame.add(FCFSp4TF);
                                  frame.add(FCFSokB);
                                  frame.add(FCFSclearB);
                                  frame.add(FCFSBackB);
                                  frame.setSize(200,250);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class priorityButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
         public class sjfButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class rrButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class exitButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class creditsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
              public static void main (String [] args)
              Oscon O = new Oscon();
    }

    please help me revise my program, im almost done, i just nid to set the progress bar that it will run according to the waiting time, or set the progress bar to run in order.. these are the variable names of the progress bar(current1, then current2, then current3 then current4).
    i looked it up on the site and i cant really understand it... i just did the part where i included the progress bar to the interface. ijust want the 4 progress bars to run after clicking the accept button.... Please help me!!! its for my project and i didnt slept last night just working on this... i just nid help sir... thnks...
    these are the codes i made:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JProgressBar;
    public class CPUSched
              public CPUSched()
              JFrame frame = new JFrame();
                   JProgressBar current1, current2, current3, current4;
                   Thread runner;
                   int num = 0;
              final JLabel ProcessL, p1L,p2L,p3L,p4L, bt, prioL, tqL, wtL, awtL, awtLA;
                   final JTextField p1TF,p2TF,p3TF,p4TF, prio1TF, prio2TF,prio3TF,prio4TF, tqTF ;
                   final JLabel      blank1, blank2, blank3, blank4, blank5, blank6, blank7, blank8, blank9, blank10, blank11,
                                       blank12, blank13, blank14, blank15;
                   final JLabel     blank16, blank17, blank18, blank19, blank20, blank21, blank22, blank23, blank24, blank25,
                                       blank26, blank27, blank28, blank29, blank30;
                   current1 = new JProgressBar(0, 2000);
                   current1.setValue(0);
         current1.setStringPainted(true);
                   current2 = new JProgressBar(0, 2000);
                   current2.setValue(0);
         current2.setStringPainted(true);
                   current3= new JProgressBar(0, 2000);
                   current3.setValue(0);
         current3.setStringPainted(true);
                   current4 = new JProgressBar(0, 2000);
                   current4.setValue(0);
         current4.setStringPainted(true);
                        ProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        p1L     = new JLabel("P1:", SwingConstants.CENTER);
                        p2L     = new JLabel("P2:", SwingConstants.CENTER);
                        p3L     = new JLabel("P3:", SwingConstants.CENTER);
                        p4L     = new JLabel("P4:", SwingConstants.CENTER);
                        bt      = new JLabel("Burst Time:", SwingConstants.CENTER);
                        prioL= new JLabel("Priority (1-4):", SwingConstants.CENTER);
                        tqL= new JLabel("Time Quantum:", SwingConstants.CENTER);
                        wtL= new JLabel("Waiting time:", SwingConstants.CENTER);
                        awtL= new JLabel("Average Waiting time:");
                        awtLA= new JLabel("");
                        blank1= new JLabel("");
                        blank2= new JLabel("");
                        blank3= new JLabel("" ,SwingConstants.CENTER);
                        blank4= new JLabel("");
                        blank5= new JLabel("", SwingConstants.CENTER);
                        blank6= new JLabel("");
                        blank7= new JLabel("");
                        blank8= new JLabel("" ,SwingConstants.CENTER);
                        blank9= new JLabel("");
                        blank10= new JLabel("");
                        blank11= new JLabel("", SwingConstants.CENTER);
                        blank12= new JLabel("");
                        blank13= new JLabel("");
                        blank14= new JLabel("");
                        blank15= new JLabel("");
                        blank16= new JLabel("");
                        blank17= new JLabel("");
                        blank18= new JLabel("");
                        blank19= new JLabel("");
                        blank20= new JLabel("");
                        blank21= new JLabel("");
                        blank22= new JLabel("");
                        blank23= new JLabel("");
                        blank24= new JLabel("");
                        blank25= new JLabel("");
                        blank26= new JLabel("");
                        blank27= new JLabel("");
                        blank28= new JLabel("");
                        blank29= new JLabel("");
                        blank30= new JLabel("");
                        p1TF= new JTextField (2);
                        p2TF= new JTextField (2);
                        p3TF= new JTextField (2);
                        p4TF= new JTextField (2);
                        prio1TF= new JTextField (2);
                        prio2TF= new JTextField (2);
                        prio3TF= new JTextField (2);
                        prio4TF= new JTextField (2);
                        tqTF= new JTextField (2);
                             prio1TF.setEditable(false);
                             prio2TF.setEditable(false);
                             prio3TF.setEditable(false);
                             prio4TF.setEditable(false);
                             tqTF.setEditable(false);
                        JButton     okB = new JButton ("Accept");
                        okB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                             double iw=0, wtp1, wtp2, wtp3, wtp4;
                             double bt1, bt2, bt3, bt4;
                             double averageWT, sumWT;
                             bt1=Double.parseDouble(p1TF.getText());
                             bt2=Double.parseDouble(p2TF.getText());
                             bt3=Double.parseDouble(p3TF.getText());
                             bt4=Double.parseDouble(p4TF.getText());
                             wtp1 = iw;
                             wtp2 = wtp1+bt1;
                             wtp3 = wtp2+bt2;
                             wtp4 = wtp3+bt3;
                             sumWT = wtp1+wtp2+wtp3+wtp4;
                             averageWT = sumWT/4;
                             awtLA.setText(""+averageWT);
                             blank3.setText(""+wtp1);
                             blank5.setText(""+wtp2);
                             blank8.setText(""+wtp3);
                             blank11.setText(""+wtp4);
                        JButton     clearB = new JButton ("Clear");
                        clearB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  p1TF.setText("");
                                  p2TF.setText("");
                                  p3TF.setText("");
                                  p4TF.setText("");
                             awtLA.setText("");
                             blank3.setText("");
                             blank5.setText("");
                             blank8.setText("");
                             blank11.setText("");
                             frame.setTitle("First Come First Serve");
                                  frame.setLayout(new GridLayout(6,6));
                                  frame.add(ProcessL);
                                  frame.add(blank1);
                                  frame.add(wtL);
                                  frame.add(bt);
                                  frame.add(prioL);
                                  frame.add(tqL);
                                  frame.add(p1L);
                                  frame.add(current1);
                                  frame.add(blank3);                              
                                  frame.add(p1TF);
                                  frame.add(prio1TF);
                                  frame.add(tqTF);
                                  frame.add(p2L);
                                  frame.add(current2);
                                  frame.add(blank5);
                                  frame.add(p2TF);
                                  frame.add(prio2TF);
                                  frame.add(blank6);
                                  frame.add(p3L);
                                  frame.add(current3);
                                  frame.add(blank8);
                                  frame.add(p3TF);
                                  frame.add(prio3TF);
                                  frame.add(blank9);
                                  frame.add(p4L);
                                  frame.add(current4);
                                  frame.add(blank11);
                                  frame.add(p4TF);
                                  frame.add(prio4TF);
                                  frame.add(blank12);
                                  frame.add(blank13);
                                  frame.add(blank14);
                                  frame.add(okB);
                                  frame.add(clearB);
                                  frame.add(awtL);
                                  frame.add(awtLA);
                                  frame.setSize(800,200);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public static void main (String [] args)
              CPUSched O = new CPUSched();
    }

  • Drag JTabbedPane out of the main Frame and set scroll bars for the tabs

    hi ,
    Iam working on a Swing application . In it i have Six Tabs added to a single JTabbedPane. all the tabs are different class files . is it possible to drag any of the tabs out of the frame.
    how to add scroll bars for the tabs individually. i have tried adding JScrollPane to the main frame and add the JTabbedPane to the Scrollpane . the scroll bar was not visible and i have tried adding
    all the six tabs to the individual JScrollPanes and add the six scrollpanes to the TabbedPane .
    only the scroll arrows are visible , when i minimised or resized the application the scrollbars were not appearing .
    could any one help me to solve the above two problems.

    just trying.....
    public void mouseDragged(MouseMotionEvent e){
    // this event should be activated only when the Drag goes out of scope of the parent JFrame which i dont know how
    Component c=JTab.getComponentAt(JTab.getSelectedIndex());
    JFrameobj.getContentPane().add(c,"Center");
    }

  • How do I change the main external editor from PS CC to PS 6?

    I put a trial version of PS CC on my computer and Lightroom 4 has changed the main external editor to the CC trial version. I don't want this to happen and I don't want PS6 to be an "Additional External Editor." I want the main editor to be PS6 at all times but I cannot seem to change this.
    Is this possible or is the only solution to get rid of the trial version of PS CC? If I trash the trial version of PS will Lightroom 4 automatically "find" PS6 again.
    Thanks

    Thanks Gener7, but that did not work.
    I also tried opening Bridge’s Preferences> File Type Associations and clicking the Reset to Default Applications button.  Then see Photoshop CC 2014 listed next to all basic image formats.  but did not work
    Also tried this: but did not work
    --Open Bridge. 
    --Use the Keywords panel menu command Export to save your keywords (not in the Bridge or Photoshop folders or their support folders).
    --Quit Bridge.
    --Hold down the Command-Option-Shift keys.
    --Launch Bridge.
    --When the small dialog box appears, release the three modifier keys and elect to replace the Preferences and purge the cache.

  • How do I change the main iCloud account on my iPad?

    I need to change the main iCloud account on my iPad. I'm merging family MobileMe accounts' contacts, and need to set up multiple devices with the main iCloud family account so we will all share photos, contacts, calendars, etc, but have separate email via personal subaccounts. Trouble is I entered a sub account as the main account on one of the iPads and I can't find a way to change it.

    I have the same question for a slightly different reason.
    I just got an iPhone6 and set it up from an iPhone4 backup. I never really used that phone for iCloud, When iCloud first launched, I used an old earthlink email but I've since updated to a gmail address on my account.and use iCloud a lot on my iPad and laptop. But the new phone wants me to log in under the old earthlink account. I don't have that password and attempts to reset it have not worked. How can I switch the log in address so I can use the correct working address?

  • How do I change the main iCloud account on my iPhone?

    How do I change the main iCloud account on my iPhone?

    I activated an iPad for a work associate; somehow, MY Apple ID account is assigned to his iPad's iCloud backup.  His iPad is using up all MY iCloud space... he IS set up in App Store with his own Apple ID.
    On my own iPad (just to check out what settings/options were), i went to "Settings/iCloud: and tapped "Delete Acct".  BUT, then I got a message that all Photo Stream and documents stored in iCloud would be deleted from this iPad...   so, two questions...
    is there ANY way for him to retrieve the documents he saved in MY iCloud account (there's 9.1g worth of HIS backup in my account!! ... i purchased extra space before i realized it was being eaten up by him and not mine).
    Because he'd be logging  back in under his OWN ID which had never backed up his device before......so, he'll  lose everything, right?
    Really need someone who KNOWS apple iOS/Cloud workings to answer this one please ... much (at least some, lol) of his data is work-related.... at 9gig, can't be all work!! must be a lot of movies, photo's and music i'd guess.  as this is a WORK-issued device, so be it if he has to re-load all that................ 

  • How to change the picture frame size in Lightroom 5 Book

    I would like to control the actual picture frame size when making a Book in Lightroom 5. Or else know the sizes of the different picture frames provided by choosing the different page layouts. That way I can either change the picture frame dimensions to accomodate each photo or change the image size to fit in the offered picture frame. I find that using the software as is winds up cropping the images in unwanted ways. Modifying the picture frame would be my preferred alternative. Appreciate any ideas

    Hi again Tony,
                I have been using Adobe Photoshop 7, Photoshop Elements, Perfect Photo Suite, Photo Studio, etc., changing Image size, placing a picture on a page and then, do a simple last minute size adjustment by using the arrows to stretch or shrink it in place. Things would be a lot simpler if I could do the same thing with the cells in Lightroom 5. Cell pad adjustments do not fill the bill.
    I think we’ve pretty much concluded this exchange. Thanks again for your effort.
        david
    ay [email protected]
    Sent: Wednesday, March 12, 2014 11:27 PM
    To: dgbrow
    Subject: How to change the picture frame size in Lightroom 5 Book
    Re: How to change the picture frame size in Lightroom 5 Book
    created by Tony Jay <http://forums.adobe.com/people/Tony+Jay>  in Photoshop Lightroom - View the full discussion <http://forums.adobe.com/message/6205206#6205206

  • How to modify the icon of the main frame in JavaHelp?

    I can modify the title of the main frame, but can I modify the icon of the main frame? Thanks a million.

    hi,
    look at the Frame's method setIconImage(Image anImage);
    ;)

  • How to keep Progress bar in front of the main frame?

    Hi all,
    How can i keep the progress bar in front of the main frame all the time while the proggress bar is visible?

    Perhaps the question is not clear.
    I want the progress bar to remain in front of the parent frame as long as it is visible on screen.that is when i click on the parent frame,progress bar should not go behind the frame.
    Can ne1 plz help?
    Regards,
    Mansi

  • What are the steps to change the "main" plan administrator

    The main plan administrator is a former employee.  What are the steps to change the "main" admin to another admin?

    Hi StevenFel,
    Welcome to Adobe Forum,
    I understand that you are refering to CC Team purchased for 2 seats under the Adobe ID provided here.
    Please refer to http://helpx.adobe.com/creative-cloud/help/manage-creative-cloud-teams-membership.html#Man age Plan Administrators
    Please let us know if it resolved the issue.
    Regards,
    Rajshree

  • How do I change the export frame rate?

    How do I change the export frame rate?

    my video came out super twitchy when i exported it and was told i need to change to export frame rate.
    here is an 8 sec  clip of what i am talking about. 
    http://www.youtube.com/watch?v=cuQ5VduBUK
    where is quick time conversion
    sorry im kind of a noob
    still trying to figure everything out

  • Can we change the date of cost center

    Can we change the date of cost center with we have already created????????

    Hi Shivika
    Changing a date can mean many things.. Example - You created a CC from 01.01.2014 to 31.12.2015
    If you want to have the Validity from 01.01.2013 now, create the CC from 01.01.2013 to 31,.12.2013 from KS01
    If you want to extend the validity till 31.12.9999, again do the same.. KS01 -> Create from 01.01.2016 to 31.12.9999
    If you want to shorten the validity i.e. say, You want the CC to be valid from 01.01.2015 instead of 2014, then you can delete the CC from KS04 for 2014 provided no data is posted (plan or actual)
    Br., Ajay M

  • How to change the main work center and  work center of each operation when generating work order by maintenance plan

    Dear experts,
    I face a problem that system get main work center from equipment master data as a default main work center in maintenance plan when creating maintenance plan. however, if main work center in equipment is changed later, the change will not synchronize to related maintenance plan. if work order is generated from maintenance plan, main work order in order is defaulted from maintenance plan instead of updated work center in equipment.
    another problem is that, for those orders generated by maintenance plan, the work centers in  operations is defaulted from task list in maintenance plan. in most case, work center in task list is dummy. Actually the work is done by work center in equipment master data.
    My expectation is how to auto replace the main work center and work center of operations in work order with the one in equipment master data if order is generated by maintenance plan? is there any standard configuration or enhancement/BADi that can help with this requirement?
    thanks!
    Wesley

    Wesley,
    Sorry - development is the only way.
    Another option is to create a batch program that runs before your IP30 run(s) and updates any maintenance items and task lists with the correct work centres.
    PeteA

  • How can i change the last frame in a trailer i have converted.  everything else is fine but the wording is wrong on the final "credits" and don't know how to edit after converting it to a project.  Thanks to All.

    looking to edit the final frame which is the the "credits" section.  I have already  converted the trailer.  Is it too late to correct some nserts in the credits?
    Thanks to all.

    If by "converted" you mean that you've converted the trailer to a normal project using the menu option File>Convert to Project, then YES it is still possible to edit the Credits Title.
    In the converted project, double-click on the blue Title bar that sits above the background clip. In the Viewer, double-click on the text you wish to change (or highlight text by dragging over it). Now you can replace the highlighted text by typing in the new text. You can also change fonts and font colours.
    It's always good practice to duplicate the Trailer before converting it. To do this, while in Project Library view, click on the Trailer name in the Library then select File>Duplicate Project. A copy will appear in the Library with the same name as the Trailer, but with the number 1 appended. You can rename this copy as desired. Now, convert the duplicate to a standard project and continue with your editing as required. You now have the original Trailer in template form (which can be further edited), and can duplicate it again if required.
    John
    EDIT: Regarding my first sentence - just noticed that you did mention "converting it to a project" in you topic header. Sorry!
    Message was edited by: John Cogdell

Maybe you are looking for

  • Reformatting my Vista PC, will I lose my iPhone/iTunes back up?

    Hi, I have an iPhone 3G sync'd to my PC. (Running Vista.) I want to reformat this PC and put a fresh Vista install on it. This will presumably wipe my backup data that iTunes saves. Can anyone advise me on how my phone will behave when I reconnect it

  • Placing a large number of files into separate pages

    Hello, Let's say I have 50 pages in an InDesign document and also 50 different eps files in a folder. Can InDesign place these 50 eps files on each page? Thank you.

  • FIM R2 - best practice handling large AD groups

    On attempting to create large security group (with 35k users) in AD, i get "dropped connection from the domain controller. The MS AD guy we have attached here tells me that there are some limitations on LDAP and even some known issues with writing 5k

  • Time Management effect of other sub-modules

    Hi All, Can anyone please tell me how will be the functionlity of SAP HCM will be effected if we have implemented SAP HR without Time Management. I want to know the adverse effect of not implementing TM. Regards

  • Colorize a project in Final Cut

    Hi, I have a broacast project and I want to Know How Can I colorize it in Final Cut, if it is possible to do it. any help I'll appreciated. thanks!!