What key to press to reboot into main screen?

Sorry I don't know how to call that screen but I know when I restart I need to hold onto a key and I'll be lead into that screen, I want to delete my Windows XP partition in there. Can someone please tell me what key I should be holding when I'm restarting? Thank you.

If you are asking how to switch between Windows and OS X then restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the desired startup volume and click on the down arrow button. You cannot delete the Boot Camp partition from the boot manager screen. To delete the Boot Camp partition you must use the Boot Camp Assistant in your Utilities folder.

Similar Messages

  • My MacBook Pro's screen just started randomly going blank, sometimes white sometimes black, and I won't be able to do anything no matter what key I press unless I restart it via the power button and even then I have a few minutes before it happens again

    MacBook Pro's screen randomly goes blank (white sometimes dark), wont be able to do anything no matter what key i press unless i turn it off and on via the power button. When i do that I normally have just a few minutes before it happens again. Bought this back in december just started happening a few days ago. Only thing out of the ordinary I've done is install that microsoft silverlight or whatever it is netflix asked me to install to watch the videos but I uninstalled that quickly hoping it would fix my problem but it hasn't so please help me out if you know what to do

    Try a SMC reset:
    http://support.apple.com/kb/ht3964
    Ciao.

  • What Keys to press to get Windows 7 Task Manager on MacBook Pro ?

    What Keys to press to get Windows 7 Task Manager on MacBook Pro ?

    Thanks for the help. I got the Task Manager thru the taskbar,  but I was and still am trying to it by key entry because that is what I am used to.  My MBP has a delete key, unlike other keystroke attempt that I have
    tried where a delete key isn't on a Mac.  I also am a retired enggggineeeer so there's bound to be confusion because I am left-handed too.
    Thanks again !!!!
    Macbook Pro, Mac OS X (10.6.7), 15", 2.4 GHZ Core Duo 5 CPU, 4 GB RAM, 200 GB Hard Disk;                                                                                                                                           iPhone 4

  • Screen meshing into main screen

    Hi All,
    I have an issue in Swing Application Screen .I have main screen and pop up screen when user closes the pop up screen it merges into main screen . it occurs only to specific users at random time .
    Technologies used Swing .
    I need a solution if there is any other way to close the screen.
    PF Source Code below :
    package test;
    public class CustomerBrowser extends UIDialog implements CustomerBrowserInf {  
    private static final long serialVersionUID = 1L;
    public CustomerBrowser(UIDialog pDialog) {  
    super(pDialog, true);
    ibtnOK = null;
    ibtnCancel = null;
    ipnlCustomerBrowser = null;
    iscrRecords = null;
    ilblSearchCustomer = null;
    itxtSearchCustomer = null;
    itblCustomerBrowser = null;
    iFrame = null;
    iCustomerQtbl = null;
    iCustomerNo = null;
    iSearchValue = "";
    iRecordsPerPage = 0;
    iRecordsOnPage = 0;
    iPageNumber = 0;
    public UIButton getbtnCancel() {  
    if (ibtnCancel == null) {  
    ibtnCancel = new UIButton();
    ibtnCancel.setName("btnCancel");
    ibtnCancel.setText("Cancel");
    ibtnCancel.setBounds(570, 230, 80, 25);
    ibtnCancel.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    onCancel();
    ibtnCancel.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnCancel;
    public UIButton getbtnOK() {  
    if (ibtnOK == null) {  
    ibtnOK = new UIButton();
    ibtnOK.setName("btnOK");
    ibtnOK.setText("Select");
    ibtnOK.setBounds(570, 200, 80, 25);
    ibtnOK.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    onOK();
    ibtnOK.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnOK;
    public UIButton getbtnNext() {  
    if (ibtnNext == null) {  
    ibtnNext = new UIButton();
    ibtnNext.setName("btnNext");
    ibtnNext.setText(">>");
    ibtnNext.setBounds(480, 275, 80, 25);
    ibtnNext.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    if (iRecordsOnPage >= iRecordsPerPage)
    iPageNumber++;
    onNext();
    ibtnNext.requestFocusInWindow();
    ibtnNext.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    if (pKeyEvent.getKeyCode() == 9) {  
    ibtnNext.requestFocusInWindow();
    if (pKeyEvent.getKeyCode() == 37) {  
    getbtnPrevious().requestFocus();
    if (pKeyEvent.getKeyCode() == 39) {  
    getbtnNext().requestFocus();
    doEvents(pKeyEvent);
    return ibtnNext;
    public UIButton getbtnPrevious() {  
    if (ibtnPrevious == null) {  
    ibtnPrevious = new UIButton();
    ibtnPrevious.setName("btnPrevious");
    ibtnPrevious.setText("<<");
    ibtnPrevious.setBounds(395, 275, 80, 25);
    ibtnPrevious.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    if (iPageNumber > 0)
    iPageNumber--;
    onNext();
    ibtnPrevious.requestFocus();
    ibtnPrevious.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnPrevious;
    public UIDialog getFrameOwner() {  
    return iFrame;
    public UILabel getlblCustomer() {  
    if (ilblSearchCustomer == null) {  
    ilblSearchCustomer = new UILabel();
    ilblSearchCustomer.setName("lblSearchCustomer");
    ilblSearchCustomer.setText("Customer Number" + ":");
    ilblSearchCustomer.setBounds(490, 12, 160, 20);
    return ilblSearchCustomer;
    public UILabel getlblCustomerKey() {  
    if (ilblCustomerKey == null) {  
    ilblCustomerKey = new UILabel();
    ilblCustomerKey.setName("lblCustomerSearchKey");
    ilblCustomerKey.setText("Customer Search Key" + ":");
    ilblCustomerKey.setBounds(10, 12, 160, 20);
    return ilblCustomerKey;
    public UILabel getlblCustomerName() {  
    if (ilblCustomerName == null) {  
    ilblCustomerName = new UILabel();
    ilblCustomerName.setName("lblSearchCustomer");
    ilblCustomerName.setText("Customer Name" + ":");
    ilblCustomerName.setBounds(170, 12, 160, 20);
    return ilblCustomerName;
    public UILabel getlblTelephone() {  
    if (ilblTelephone == null) {  
    ilblTelephone = new UILabel();
    ilblTelephone.setName("lblTelephone");
    ilblTelephone.setText("Telephone" + ":");
    ilblTelephone.setBounds(330, 12, 160, 20);
    return ilblTelephone;
    public UIPanel getpnlHeaderCustomerBrowser() {  
    if (ipnlHeaderCustomerBrowser == null) {  
    ipnlHeaderCustomerBrowser = new UIPanel();
    ipnlHeaderCustomerBrowser.setName("pnlCustomerBrowser");
    ipnlHeaderCustomerBrowser.setLayout(null);
    ipnlHeaderCustomerBrowser.setVisible(true);
    ipnlHeaderCustomerBrowser.setPreferredSize(new Dimension(
    Integer.MAX_VALUE, 75));
    getpnlHeaderCustomerBrowser().add(getlblCustomer(),
    getlblCustomer().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomer(),
    gettxtCustomer().getName());
    getpnlHeaderCustomerBrowser().add(getlblCustomerName(),
    getlblCustomerName().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomerName(),
    gettxtCustomerName().getName());
    getpnlHeaderCustomerBrowser().add(getlblCustomerKey(),
    getlblCustomerKey().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomerKey(),
    gettxtCustomerKey().getName());
    getpnlHeaderCustomerBrowser().add(getlblTelephone(),
    getlblTelephone().getName());
    getpnlHeaderCustomerBrowser().add(gettxtTelephone(),
    gettxtTelephone().getName());
    return ipnlHeaderCustomerBrowser;
    public UIPanel getpnlTableCustomerBrowser() {  
    if (ipnlTableCustomerBrowser == null) {  
    ipnlTableCustomerBrowser = new UIPanel();
    ipnlTableCustomerBrowser.setName("pnlCustomerBrowser");
    ipnlTableCustomerBrowser.setLayout(new BorderLayout());
    ipnlTableCustomerBrowser.setVisible(true);
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    ipnlTableCustomerBrowser.setPreferredSize(new Dimension(
    new Dimension(Integer.MAX_VALUE, 189)));
    //System.out.println(screenSize.width);
    getpnlTableCustomerBrowser().add(getscrRecords(),
    BorderLayout.CENTER);
    getpnlTableCustomerBrowser().add(getpnlEastCustomerBrowser(),
    BorderLayout.EAST);
    getpnlTableCustomerBrowser().add(getpnlFooterCustomerBrowser(),
    BorderLayout.SOUTH);
    return ipnlTableCustomerBrowser;
    public UIPanel getpnlFooterCustomerBrowser() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Kanna -
    Check the table V_T588I, Screen headr, tr class A and headr modifier and accordingly
    Check table T588J, assign you field for same header. Also check line and column, Most of the times Columns will be overlapped so before generating table T588J make it single test and see your field result.
    For Example-
    Table - V_T588I
    Screen header, Tr Class, Headr Modifer
    00,                             A,                14
    Table - T588J
    Headr Modifier,     Line,    Column,   IT,              Field Name,       Field Type
    14 ,                          3,        57,          0001,         ABKRS,              DAT
    Hope this helps and am sure will resolve it by moving column numbers.
    - Ashish
    Edited by: Ashish on Aug 21, 2011 5:07 PM
    Edited by: Ashish on Aug 21, 2011 5:11 PM

  • Calling the subscreen into main screen

    Hi Guru's,
          I am having a main screen, which holds 2 radio buttons.
          If I select one radio button it has to call one table control, if I select 2nd radio button it has to call different table control.
          For this I have created two subscreens, each one holds a table control.
    based on the selection of radio button I have to call these subscreens in to the main screen.
       Please help me how to call the subscreen into main screen.

    There is no help text for this dump                                         
    Either the text was inadvertently deleted or the release of                 
    the kernel differs from the release of the database                         
    Refer to the Note system for further information on            this dump.                                                                               
    000160           %_archive TYPE arc_params,                                     
    000170         END   OF COMMON PART.                                            
    000180   *                                                                      
    000190   FIELD-SYMBOLS: <%_1>   %_PREDEFINED.                                   
    000200                                                                          
    000210   DATA: %_repid     TYPE syst-repid   %_PREDEFINED,                      
    000220         %_viaselscr TYPE x VALUE '04' %_PREDEFINED.                      
    000230                                                                          
    000240   SYSTEM-EXIT.                                                           
    000250   PERFORM (sy-xform) IN PROGRAM (sy-xprog).                              
    000260                                                                          
    000270   * Nach Laden des Dynpros                                               
    000280   MODULE %_ctl_init OUTPUT.                                              
    000290     %_repid = sy-repid.                                                  
    000300     PERFORM %_ctl_init IN PROGRAM sapmssyd USING %_repid IF FOUND.       
         >   ENDMODULE.                                                             
    000320                                                                          
    000330   * Um DCO                                                               
    000340   MODULE %_ctl_output OUTPUT.                                            
    000350     %_repid = sy-repid.                                                  
    000360     PERFORM %_ctl_output IN PROGRAM sapmssyd USING %_repid IF FOUND.     
    000370   ENDMODULE.                                                             
    000380                                                                          
    000390   * Um DCI                                                               
    000400   MODULE %_ctl_input INPUT.                                              
    000410     %_repid = sy-repid.                                                  
    000420     PERFORM %_ctl_input IN PROGRAM sapmssyd USING %_repid IF FOUND.      
    000430   ENDMODULE.                                                             
    000440                                                                          
    000450   * Erstes Modul in PAI                                                  
    000460   MODULE %_ctl_pai INPUT.                                                
    000470     %_repid = sy-repid.                                                  
    000480     PERFORM %_ctl_pai IN PROGRAM sapmssyd USING %_repid IF FOUND.        
    000490   ENDMODULE.

  • K1 keeping showing "Lenovo screen and Powered by Tegra". Won't go into main screen

    Hi,
    I just got my K1 2 days. Was working fine but all of a sudden when i try to power on today, it keeps showing me the Lenovo and Powered by Tegra Screen. It won't go into the main screen. I'm very sure i have enough power on the K1. Tried powering off and on many times but still no luck. 
    Anyone with any advise please? I did not upgrade any firmware or settings. Just installed a couple of children apps. Thanks.

    Sounds lke your bootloader has become corrupt. With the system off, what happens if you press and hold the power button and volume up buttons at the same time for several seconds? Can't say for sure if this will help.
    Thanks,
    Ricochet
    The K1_Was Just A Broken Promise Lenovo

  • Determining what key is pressed in keyEvent

    I have a method which checks whether or not a digit has been entered into a text field (as I do not want alpha characters) but the way I have written it does not currently allow for backspace, does anyone know how to do this?
    Cheers

    And here is a link to a section in the Swing tutorial that explains what a document is and provide sample code:
    http://java.sun.com/docs/books/tutorial/uiswing/components/textfield.html#validation

  • Macbook Pro's screen goes black after going to sleep and won't turn on no matter what key I press

    Hi there, I just got a new Macbook Pro, it's literally six days old. I just got some new memory installed on it and now the screen frequently stays black after it has gone to sleep for several minutes. No key will reawaken my laptop, though the small light indicating power at the bottom right hand corner of the laptop still glows, making me think the laptop is still on. Is this normal? Is there any way to remedy this?

    Read the user manual to make sure you installed the ram correctly.  Put the old ram back in.  Same issue?
    If you were not the person that installed the ram, return the computer.
    Call Apple Care. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired. 

  • HT1343 What keys to press to close open applications in dock all at once

    Can someone tell me the shortkey keys to close all open items in my dock at once.

    Upper left corner.
    As far as I know, there is no shortcut, besides shuting down, to quit all apps.
    You can hold the option key and click on a window and it will in effect hide all other open windows, but this is different.
    You can hold the command key and Tab to see the heads-up view of open apps. Here you can mouse or tab and hit Q for quit.

  • What key sequences are the shortcut for a screen capture?

    I'm trying to screen capture something from the internet.   What are the shortcut keys for a screen capture?    Thanks.

    Command + Shift + 3 captures the whole screen.
    Command + Shift + 4 gives you a pointer, with which you can click and drag to select the portion of the screen you want to capture.
    Command + Shift + 4, and then pressing the space bar will just capture a single window.

  • Cannot bring program window into main screen... don't know why?!?!?

    hi all... any help would be greatly appreciated on the below:
    I am using a music program (torq by m-audio) and did not have any problems with it. Last night, when I tried to open the application, it is bouncing in the dock when it is loading. after it loads, the program name is showing on the top left corner of the screen. However, the actual program window/browser was not showing up. I thought there was an issue with the program so I restarted computer several times, and also reinstalled program several times, to no avail. After hitting some random buttons, I had hit F9 to bring up all windows running in the background AND I COULD SEE THE PROGRAM RUNNING. However, when I try clicking on it, it slides to the right of the screen and disappears. Can someone help me out as I cannot seem to figure out what the problem is... I have also tried changing the screen resolution and for it to detect displays in case it somehow thought i had another monitor hooked up. Its driving me nuts!!! Thanks in advance!

    It sounds like you might have had Spaces enabled and the program got assigned to a particular Space.
    I've seen problems reported by people who turn off Spaces so that they can't see the extra desktops, but a program still launches to the "unseen" desktop.
    If this is the case, you could turn Spaces back on to see if you can see your application on one of the desktops. If so, change the Spaces preferences for the program to make it only come up on desktop #1, then remove the program from the Spaces list of programs, then turn off Spaces again.

  • My iMac started and locked onto a white screen. Rebooted and all was well. How do you do a safe start i.e. what key do you press?

    My iMac started and locked onto a white screen. Rebooted and all was well. How do you do a safe start i.e. what key do you press?

    It should according to http://support.apple.com/kb/ht1455. Review that and try again.

  • When I tried to access into safari the ipod kicked me out back to the main screen, what is the problem? what i need to do? Help me please...!!!

    When I tried to access into safari the ipod kicked me out back to the main screen, what is the problem? what i need to do? Help me please...!!!

    Try:
    - Reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Going to Settings>Safari and deleting cache, history and cookies.

  • What is the shortcut to maximize window (full screen) which is normally done by pressing " -- " like key on the right top corner in macbook pro ?

    What is the shortcut to maximize window (full screen) which is normally done by pressing "<-->" like key on the right top corner in macbook pro ?

    There's no <--> key on ANYones keyboard. (Great answer Shootist )
    The other part of his answer is only applicable to certain windows (browsers specifically) as there is NO system wide maximize command in the manner you are asking.
    Apple's "maximize" function (green +) simply maximizes the window to the content, not the screen.
    For other keyboard shortcuts (and of course they may be outdated) try: this

  • What key do I press so I can get a basic boot, like safe boot in windows?

    What key press do I make, booting Lion, to get a basic boot up? Like "safe mode" in windows.

    Read Safe Mode .

Maybe you are looking for

  • How to maintain the chart of accounts with the GL account number

    Hi to the entire group, can some let me know the process to maintain the chart of account with the GL account number.i am facing a problem when executing the interface in the batch job - it displays the message -- G/L account 2160371820 is not define

  • Is there a way to lock up Mail so that anyone who launches it can't read my emails?

    I tried going into Accounts and then deleting the password there but old emails are still visible.  I tried using System Preferences to uncheck my Mail account but anyone who knows Macs can just go back in there and recheck it. Is there a "lock" type

  • Digital copy of my signature onto documents?

    hi there, i'm looking for a programme for the MAC whereby i can have an electronic version of my personal signature that can be "copied/scanned" on to documents - so as to appear as if i have signed a document and scanned it. Anyone point me in a goo

  • Mac OS X Server under attack...

    We have an Xserve that has been hacked, and that someone has managed to install a rogue ftp server on. We shut it down, but someone is trying to get it back up again, and I don't know how to stop them. Any help would be appreciated. Below is as much

  • ML won't connect to NAS drive for Time Machine Backup

    I've just upgraded  from Lion to Mountain Lion. I'm using an Iomega Cloud Edition Home NAS drive. This worked 'fine' under Lion (occasional need to redo backup after failed verify). Now: - Automatic backups fail - TM can't find the drive over the net