IMAP - Someone give me hope!

Hi all
I have been using mail 2.0.5 now for sometime and not had any problems. Today, I have been researching a problem with the imap account fails to finish syncing with the server. e.g. the grey timer (ball) next to the inbox does not finish. I'm now have about 1/12 of the pie left to do! My mailbox is only 20Mb! I have even tried removing all plist files and the contents of the Mail folder. But I'm still getting this problem.
Can anyone help.. Or will I have to start using Mozilla Thunderbird?
Cheers
Carl

Carlotta,
Try using Rebuild on your IMAP Inbox -- click on Mailboxes in the Menubar, and then choose Rebuild -- be patient, and do not be alarmed that all messages appear to disappear for a time.
More info, please.

Similar Messages

  • Someone give me hope please...

    Is anyone with a unibody MBP able to zoom in and sharpen within 10 seconds? Can you brush in an adjustment without having the brush follow well behind you? If you couldn't before but can now, what's the secret?

    No, I have gone through these forums and tried everything suggested (faces, places, previews, rebuild thumbnails, 64/32 bit, shift start up, library rebuilds, etc.) It has gotten better as I can now actually edit images. The bugger just consumes all my memory and processor every 5-10 minutes and gets stuck that way. Even when it is running OKish, brushes and zoom sharpening are horrid. It takes 4GB Ram and 185% processor just sitting idle or doing it's building thumbnails thing.
    Photoshop, LR 2, LR3 beta all fly on this machine. I run an internal striped RAID (1TB) with FW 800, memory is memtested, drive defrag'd, and disk utility.

  • Can someone give me ABAP Dialog program /ALV Step by Step hands on examples

    Can someone give me a document for ABAP Dialog programming(module pool) and ALV - but i need Step by Step example ,with sreenshots and explanations.
    In general any ABAP, STEP BY STEP hands on examples - Smartform, Sapscrips, Report, BDC will be highly appreciated.
    I only need hands on examples please - regular Abap courses does not work because they dont have examples.
    Please help ASAP.
    Bob
    Welcome to SCN - but please read the rules of engagement before posting
    Edited by: Rob Burbank on Jun 14, 2009 4:28 PM

    What temporary files are you talking about?

  • I'm not sure how to use this site....but here goes, I have a samsung galaxy and it's fully charged but it will not turn on, can someone give me some solutions as to how I can get it to work?

    I'm not sure how to use this site....but here goes, I have a samsung galaxy and it's fully charged but it won't turn on, can someone give me some solutions I can use to fix this problem???

    Try this website. Yes its sprint but it might help you. http://support.sprint.com/support/article/Troubleshoot_issues_related_to_your_Sa msung_Galaxy_S_II_not_turning_on_completely/WTroubleshootingGuide_542_GKB51165-T rend?INTNAV=SU:DP:OV:TSIS:SamsungGalaxySIi-AsYouGo:TroubleshootIssuesRelatedToYo urSamsungG

  • I have a few compile errors. Can someone give me direction?

    I have some compile areas in the following code and I am not really sure how to correct.
    Can someone give guidance? Thanks
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.Window.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import java.net.*;
    public class FrontEnd_2 extends Applet{
         private static int appType = 0;
         private Frame FrontEnd_2 = null;
         private Choice nameList = new Choice();
         private Label PipeID = new Label("");
         private TextField pipelineName = new TextField();
         private TextField problem = new TextField();
         private TextField location = new TextField();
         private TextField repairCost = new TextField();
         private Button update = new Button("Update");
         private Button clear = new Button("Clear");
         private Button delete = new Button("Delete");
         private Button exit = new Button("Exit");
         private long idList[] = null;
         public static void main(String args[]){
         appType = 1;
         new FrontEnd_2();
         public FrontEnd_2(){
         Panel p = new Panel(new GridLayout(6,3));
         p.add(new Label());
         p.add(nameList);
         p.add(new Label());
         p.add(new Label("PipeId"));
         p.add(new Label());
         p.add(new Label());
         p.add(new Label("Pipeline Name"));
         p.add(pipelineName);
         p.add(update);
         p.add(new Label("Problem"));
         p.add(problem);
         p.add(clear);
         p.add(new Label("Location"));
         p.add(location);
         p.add(delete);
         p.add(new Label("Repair Cost"));
         p.add(repairCost);
         p.add(exit);
         String data = getData("L0");
              StringTokenizer st = new StringTokenizer(stRetVal, ",");
              nameList.add("[select a name]");
              int size = st.countTokens() / 2;
              idList = new long[size+1];
                   for ( int i=1; i<=size; i++ ) {
                        idList[i] = Long.parseLong(st.nextToken());
                        nameList.add(st.nextToken());
         private String getData(String cmd)
         Socket s = null;
         BufferedReader reader = null;
         BufferedWriter writer = null;
         String sRetVal = " ";
         try{
         s = new Socket("66.24.174.32",1234);
         reader = new BufferedReader(new InputStreamReader(s.getInputStream()));
         writer = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
         writer.write(cmd);
         writer.newLine();
         writer.flush();
         writer.close();
         sRetVal = reader.readLine();
         catch(UnknownHostException ue){
         catch(IOException ioe){
    finally
         writer = null;
         reader = null;
         return sRetVal;
         switch(appType){
         case 0:                                                                           // Applet extends panel
         FrontEnd.add(p);
         break;
         case 1:                                                                           // Application
         FrontEnd_2 = new Frame("Pipeline Inputs");
         FrontEnd_2.addWindowListener(this);
         nameList.addItemListener(this);
         exit.addActionListener(this);
         p.add(exit);
         FrontEnd.add(p);
         FrontEnd.setSize(30,60);
         FrontEnd.setVisible(true);
         break;
         public void actionPerformed(ActionEvent ae){
              if(ae.getSource() == exit){
              fileExit();
              else if (ae.getSource() == clear){
              fileClear();
         public void itemStateChanged(ItemEvent e) {
              int index = nameList.getSelectedIndexOf();
              long id = idList[index];
              String data = getData("R" + id);
              StringTokenizer st = StringTokenizer(data, ",");
              PipeID.setText(st.nextToken());
              problem.setText(st.nextToken());
              location.setText(st.nextToken());
              repairCost.setText(st.nextToken()):
         public void windowActivated(WindowEvent we){     }
         public void windowClosed(WindowEvent we){     }
         public void windowClosing(WindowEvent we){ fileExit();}
         public void windowDeactivated(WindowEvent we){     }
         public void windowDeiconified(WindowEvent we){     }
         public void windowIconified(WindowEvent we){     }
         public void windowOpened(WindowEvent we){     }
         private void fileExit(){
         FrontEnd_2.dispose();
         System.exit(0);

    Some of the errors that I got while compiling your program were the following:
    1) You need to declare your methods outside of your constructor
    2) You are declaring sretval in a private method getData and passing it on to StringTokenizer. You should declare it as an instance variable cuz local variables won't go any farther than the method in which they were declared.
    3) You did not implement WindowListener, ActionListener, ItemListener.
    Some tips: Try to use adapters in an anonymous inner class to implement listeners such as WindowAdapter.
    Use some white space between your code. It makes it a heck of a lot easier to read. Use indentation to show nested statements :)
    Here is the fixed code.
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.Window.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import java.net.*;
    public class FrontEnd_2 extends Applet implements WindowListener, ActionListener, ItemListener{
    private static int appType = 0;
    private String sRetVal = " ";
    private Frame FrontEnd_2 = null;
    private Choice nameList = new Choice();
    private Label PipeID = new Label("");
    private TextField pipelineName = new TextField();
    private TextField problem = new TextField();
    private TextField location = new TextField();
    private TextField repairCost = new TextField();
    private Button update = new Button("Update");
    private Button clear = new Button("Clear");
    private Button delete = new Button("Delete");
    private Button exit = new Button("Exit");
    private long idList[] = null;
    * mainline
    public static void main(String args[]){
    appType = 1;
    new FrontEnd_2();
    public FrontEnd_2(){
    Panel p = new Panel(new GridLayout(6,3));
    p.add(new Label());
    p.add(nameList);
    p.add(new Label());
    p.add(new Label("PipeId"));
    p.add(new Label());
    p.add(new Label());
    p.add(new Label("Pipeline Name"));
    p.add(pipelineName);
    p.add(update);
    p.add(new Label("Problem"));
    p.add(problem);
    p.add(clear);
    p.add(new Label("Location"));
    p.add(location);
    p.add(delete);
    p.add(new Label("Repair Cost"));
    p.add(repairCost);
    p.add(exit);
    String data = getData("L0");
    StringTokenizer st = new StringTokenizer(sRetVal, ",");
    nameList.add("[select a name]");
    int size = st.countTokens() / 2;
    long idList = size+1;
    for ( int i=1; i<=size; i++ ) {
    idList = Long.parseLong(st.nextToken());
    nameList.add(st.nextToken());
    switch(appType){
    case 0: // Applet extends panel
    FrontEnd_2.add(p);
    break;
    case 1: // Application
    FrontEnd_2 = new Frame("Pipeline Inputs");
    FrontEnd_2.addWindowListener(this);
    nameList.addItemListener(this);
    exit.addActionListener(this);
    p.add(exit);
    FrontEnd_2.add(p);
    FrontEnd_2.setSize(300,300);
    FrontEnd_2.setVisible(true);
    break;
    }//end constructor
    public void actionPerformed(ActionEvent ae){
    if(ae.getSource() == exit){
    fileExit();
    else if (ae.getSource() == clear){
    fileClear();
    public void itemStateChanged(ItemEvent e) {
    int index = nameList.getSelectedIndex();
    long id = idList[index];
    String data = getData("R" + id);
    StringTokenizer st = new StringTokenizer(data, ",");
    PipeID.setText(st.nextToken());
    problem.setText(st.nextToken());
    location.setText(st.nextToken());
    repairCost.setText(st.nextToken());
    public void windowActivated(WindowEvent we){ }
    public void windowClosed(WindowEvent we){ }
    public void windowClosing(WindowEvent we){ fileExit();}
    public void windowDeactivated(WindowEvent we){ }
    public void windowDeiconified(WindowEvent we){ }
    public void windowIconified(WindowEvent we){ }
    public void windowOpened(WindowEvent we){ }
    private void fileExit(){
    FrontEnd_2.dispose();
    System.exit(0);
    private void fileClear(){
    //do something here
    //start of getData
    private String getData(String cmd){
    Socket s = null;
    BufferedReader reader = null;
    BufferedWriter writer = null;
    try{
    s = new Socket("66.24.174.32",1234);
    reader = new BufferedReader(new InputStreamReader(s.getInputStream()));
    writer = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
    writer.write(cmd);
    writer.newLine();
    writer.flush();
    writer.close();
    sRetVal = reader.readLine();
    }//end try
    catch(UnknownHostException ue){
    catch(IOException ioe){
    finally{
    writer = null;
    reader = null;
    return sRetVal;
    }//end getData

  • What exactly is balance in Oracle Payroll. Can someone give an example pls

    Hi
    I am a newbie to Oracle Payroll. Could some one xplain what exactly is balance in Oracle Payroll. Can someone give an example pls. Is there any link which would be useful to clearly explain this.

    Results of Payroll run get accumulated in the Balances. The accumulation happens according to the dimension like ASGRUN holds the value of current payroll run, ASGYTD holds the cumulative value for the current financial year and gets reset at the beginning of the next financial year, ASGQTD holds the cumulative value for the current quarter and gets reset at the beginning of the next quarter etc.
    You can see the values of the balances for different dimension after running the payroll.
    View -> Assignment Process Results -> Balances.

  • KCLP - can someone give me the big picture?

    In a project I have to review I stumbled into some log files displayed with Tx KCLP. It's some "external data transfer" logs.
    Unfortunately I miss the big picture and I did not find much on KCLP. Can someone give me a hint what's the big picture, e.g. what kind of applications use the KCLP logs.
    Thanks Frank

    I know KCLP is used by CO-PA to import external data via KEFC.
    THe bigger picture is
    - provide an import structure
    - define some transfer rules
    - post the data
    Christian

  • I am new to webdynpro ABAP can someone give the good material ?

    Hi,
    i am new to webdynpro ABAP can someone give the good material ?
    Please tell me  what knowledge do i need to learn webdynpro ABAP?
    Regards,
    Chow.

    Hi Chow,
    SAP Web Dynpro Overview
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/presentations/12-WebDynpro-Overview.ppt
    Web Dynpro General Concepts
    https://admin.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/30ea953b-8e57-2910-4e85-f7be60b00407 [original link is broken]
    Web Dynpro
    http://help.sap.com/saphelp_nw2004s/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm
    Web Dynpro for ABAP: Tutorials for Beginners
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    Web Dynpro Architecture
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/content.htm
    Web Dynpro User Interface Design
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/webcontent/uuid/ce44a14c-0a01-0010-af89-d7dbd944f176 [original link is broken]
    Getting Started with Web Dynpro Java
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/u [original link is broken]
    uid/8921447c-0501-0010-07b4-83bd39ffc7be
    Developing ABAP applications using Web Dynpro Configuration Scenario
    http://www50.sap.com/businessmaps/8729920B31E343F099B71340B15F06DB.htm
    http://www.sapforum.co.kr/TECHDAY07/download/9.%20SAP%20WebDynpro_%EA%B9%80%ED%98%9C%EC%84%AD.pdf
    How-to add a custom Web Dynpro iView to the MSS Employee Profile (ECC 6.0)
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/how-toaddacustomWebDynproiViewtotheMSSEmployeeProfile(
    ECC+6.0)&focusedCommentId=55238
    Developing Java Applications using Web Dynpro Configuration Scenario
    http://www50.sap.com/businessmaps/8F5B533C4CD24A59B11DE1E9BDD13CF1.htm
    Regards,
    J.Joe

  • HT201398 unable to install app,none of these solutions helped me could someone give me new solutions please

    unable to install app,none of these solutions helped me could someone give me new solutions please

    What app?
    What 'solutions'?

  • Hi. my laptop was reformatted recently, and my itunes there erased. i created a new one but the problem is it doesn't sync with my ipod anymore. what is the solution for this? can someone give me a tip? will really appreciate. thanks

    hi. my laptop was reformatted recently, and my itunes there erased. i created a new one but the problem is it doesn't sync with my ipod anymore. what is the solution for this? can someone give me a tip? will really appreciate. thanks

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Everything runs als Root, can someone give me a hand for the system rights?

    yeah I screwed up big times because of this neat unknow_user "Feature" in Leopard.
    First i installed a os 10.4 app under leopard which let the disk utility slow down and the finder crashes if i change the user rights, and then i changed globally the group and user of everything in the application folder and my documents folder with pathfinder for looking if i can solve the problem that way.
    -But now everything runs as Root and even the hd itself has a owner root and as group admin.
    i don't get the difference between system, root, admin, wheel, username for the owner and group. I googled but found nothing clear about this.
    And i also wonder what i should do about the group and the meaning of root, system, admin, wheel, username as a group for a single user system. Where should i give a read, read&write and execute permission for example?
    at the moment everything seems to run mostly root and every program runs on root and i think this is the worst think that can happen and causes some trouble for the programs.
    Can someone give me a short hand and for example tell me if i should set the hd owner to my username and the group to system or admin or whatever and this also for the application and documents/film and other stuff on my user folder?
    that would be great
    I think i have to reinstall leopard, but as long as this unknow_user problem still resist and no patch is available, i see the same thing happen again and again for me, so a little help would be great
    here the ls -l -a from the system and user directory
    drwxrwxr-t 26 root admin 1496 Nov 1 23:41 .
    drwxrwxr-t 26 root admin 1496 Nov 1 23:41 ..
    -rw-rw-r--@ 1 root admin 15364 Nov 5 22:42 .DS_Store
    drwxrwxr-x@ 3 root admin 102 Oct 30 18:40 .Spotlight-V100
    drwxrwxr-x@ 2 root admin 68 Aug 2 12:29 .Trashes
    -rw-r--r-- 1 root admin 0 Oct 30 17:09 .com.apple.timemachine.supported
    drwx------ 2 root admin 952 Nov 5 22:09 .fseventsd
    -rw-rw-r--@ 1 root admin 262144 Oct 10 11:42 .hotfiles.btree
    drwxr-xr-x@ 2 root wheel 68 Aug 2 12:30 .vol
    drwxrwxrwx+ 400 adrian admin 13872 Nov 5 22:00 Applications
    drwxr-xr-x 2 root admin 102 Nov 1 23:01 Data
    -rw-r--r--@ 1 root admin 10240 Oct 25 05:19 Desktop DB
    -rw-r--r--@ 1 root admin 37442 Oct 25 01:39 Desktop DF
    drwxrwxr-x@ 13 root admin 544 Oct 30 19:46 Developer
    drwxr-xr-x 5 adrian adrian 204 Sep 12 14:25 InputManagers
    -rw-r--r--@ 1 adrian adrian 1568128 Nov 1 23:45 Installer Log File
    drwxrwxr-t+ 60 root admin 2108 Nov 1 22:06 Library
    drwxr-xr-x@ 2 root wheel 68 Aug 2 10:08 Network
    drwxr-xr-x 3 root wheel 136 Oct 30 18:01 System
    drwxrwxrwx@ 3 root admin 102 Aug 2 17:21 TheVolumeSettingsFolder
    drwxr-xr-x 5 root admin 238 Nov 2 00:03 Users
    drwxrwxrwt@ 4 root admin 170 Nov 5 20:21 Volumes
    -rw-r--r-- 1 adrian admin 0 Oct 29 22:51 az.log
    drwxr-xr-x@ 2 root wheel 1360 Oct 30 17:57 bin
    drwxrwxr-t@ 2 root admin 68 Jan 13 2006 cores
    dr-xr-xr-x 2 root wheel 512 Nov 2 04:11 dev
    lrwxr-xr-x@ 1 root admin 11 Oct 30 17:57 etc -> private/etc
    dr-xr-xr-x 2 root wheel 1 Nov 2 04:11 home
    lrwxr-xr-x 1 root 502 11 Nov 1 22:40 mach -> mach_kernel
    -r--r--r--@ 1 root admin 615748 Oct 29 18:23 mach.sym
    -rw-r--r--@ 1 root wheel 10243756 Oct 10 06:38 mach_kernel
    -rw-r--r--@ 1 root wheel 10696809 Oct 10 06:38 mach_kernel.ctfsys
    dr-xr-xr-x 3 root wheel 2 Nov 2 04:11 net
    drwxr-xr-x@ 3 root admin 102 Sep 14 17:40 opt
    drwxr-xr-x@ 6 root wheel 204 Oct 29 18:23 private
    drwxr-xr-x@ 2 root wheel 2244 Oct 30 18:01 sbin
    drwxr-xr-x 11 root admin 374 Jun 9 2006 sw
    lrwxr-xr-x@ 1 root admin 11 Oct 30 17:57 tmp -> private/tmp
    drwxr-xr-x@ 13 root wheel 510 Oct 30 19:52 usr
    lrwxr-xr-x@ 1 root admin 11 Oct 30 17:57 var -> private/var
    and for the my user folder:
    drwxr-xr-x+ 22 adrian adrian 1156 Nov 3 02:30 .
    drwxr-xr-x 5 root admin 238 Nov 2 00:03 ..
    -rw-r--r-- 1 adrian adrian 3 Sep 13 22:41 .CFUserTextEncoding
    -rw-r--r--@ 1 adrian adrian 15364 Nov 5 21:50 .DS_Store
    -rw-r--r-- 1 adrian adrian 11 Oct 16 17:17 .PortAuthority2.4.rc
    drwx------ 2 adrian adrian 68 Nov 5 20:58 .Trash
    -rw-r--r-- 1 adrian adrian 0 Aug 16 04:37 .Xauthority
    -rw-r--r-- 1 adrian adrian 2552 Nov 5 22:43 .bash_history
    drwxr-xr-x 4 adrian adrian 136 Aug 17 21:11 .config
    drwxr-xr-x 8 adrian adrian 306 Aug 6 02:22 .dvdcss
    drwxr-xr-x 2 adrian adrian 578 Oct 21 19:32 .fontconfig
    -rw-r--r-- 1 adrian adrian 489724 Aug 30 17:49 .fonts.cache-1
    drwxr-xr-x 2 adrian adrian 68 Sep 14 17:40 .macports
    -rw-r--r-- 1 adrian adrian 1643 Aug 30 19:01 .mime.types
    -rw-r--r-- 1 adrian adrian 47 Oct 12 22:45 .parallels_settings
    -rw-r--r-- 1 adrian adrian 194 Sep 28 02:52 .profile
    drwxr-xr-x 3 adrian adrian 102 Sep 23 00:48 .stella
    drwxr-xr-x 2 adrian adrian 68 Aug 16 20:09 .wapi
    -rw-r--r-- 1 adrian adrian 467 Nov 5 04:21 .webaom
    -rw-r--r-- 1 adrian adrian 570 Aug 16 04:37 .xinitrc
    drwxr-xr-x 3 adrian adrian 170 Aug 5 08:10 Applications
    drwxr-xr-x+ 23 adrian adrian 1190 Nov 5 20:21 Desktop
    drwxrwxrwx+ 35 adrian adrian 2210 Nov 5 22:08 Documents
    drwxr-xr-x+ 14 adrian adrian 3332 Nov 5 20:02 Downloads
    drwxr-xr-x+ 48 adrian adrian 1836 Oct 30 19:11 Library
    drwxr-xr-x+ 9 adrian adrian 748 Nov 2 23:49 Movies
    drwxr-xr-x+ 8 adrian adrian 510 Sep 29 05:44 Music
    drwxr-xr-x 2 root adrian 68 Nov 3 02:30 New Folder
    drwxr-xr-x+ 6 adrian adrian 748 Oct 18 23:26 Pictures
    drwxrwxrwx+ 3 adrian adrian 238 Nov 4 20:34 Public
    drwxr-xr-x+ 3 adrian adrian 204 Aug 14 21:29 Sites
    drwxr-xr-x 3 adrian adrian 340 Oct 31 05:55 CompilationUnix
    -rw-r--r-- 1 adrian adrian 129 Oct 6 16:48 license.jai

    lllaass wrote:
    lizdance40, did you read the original post? The poster's problem is that when he connects the iPod to his computer the iPod does not appear in iTunes. He does not say he has a wifi problem with his iPod.
    lizdance40 wrote:
    You need to do an update on your router's firmware, or get a higher speed router..
    Or replace the router and or modem.  High demand can burn out a router in 2 years.  Typical life is about 4-5 at most.
    The new iPod is more advanced and if your router is slow or inconsistant signal your iPod will stop trying to connect to save your battery.
    of course he dose have a wifi problwm. read the last line of the original post

  • Can someone give a explan what the System Performance indicators mean?

    Can someone give a explan what the System Performance indicators mean?
    Audio & Disk I/O
    Thank you,
    Scott
    G5 Dual 2.0 - 2.5 Gigs Ram   Mac OS X (10.3.9)  

    Hi Scott!
    Audio is your CPU activity, and Disk i/o is the amount of bandwidth you're using when streaming files from the hard drive (audio files and sample streaming).

  • I downloaded DC copy and followed directions on U tube as to how to transfer photos from my pc to my I pad but instruction was not very clear can someone give me a point by point of how to do it.

    Hi - I downloaded DC Copy to use to transfer some photos from my PC to my I pad.  The instructions on U tube by an Apple Tech person were not very clear.
    Can someone please give me a step by step procedure to followo to do this. Thanks

    Welcome to Apple Support Communities
    You can install Windows on Boot Camp or a virtual machine > https://discussions.apple.com/docs/DOC-3321
    If you decide to use a virtual machine, install Parallels, VMware Fusion or VirtualBox. You can install the Windows version you want.
    If you decide to use Boot Camp, you can install a 64-bit Windows 7 or 8. In both cases, you have to use a System Builder or full Windows 7 or 8 version, which you can buy at Amazon or NewEgg. You will need an external disc drive.
    There's no risk in installing Windows on a virtual machine, as it's installed on a virtual hard drive. If you install Windows on Boot Camp, follow Apple's steps to install it > http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf

  • Can someone give me an Activity Monitor checkup?

    I'd love to send a screenshot of all the info in Activity Monitor to someone who really knows what their doing, so they can give it a look over and let me know if there are any weird processes or memory hogs and how I can remove them permanently if necessary or advisable. Any ideas?

    some more good info here and [here|http://discussions.apple.com/thread.jspa?threadID=2488963&tstart=0].

  • Can someone give me step by step directions on how to view temporary files on an ipad2?  Thank you.  Carla

    Can someone please give me step by step directions on how to view temporary files on an iPad 2.. Thank you

    What temporary files are you talking about?

Maybe you are looking for

  • How can I see how many songs in my playlists?

    Is there a way to see the total number of songs in my playlists?

  • TS3572 My 4th gen ipod shuffle will not show up in iTunes

    My 4th gen ipod shuffle will not show up in iTunes, and is not recognized by my computer. I am using a MacBook Pro purchased six months ago, with all software up to date. I am using the most recent version of iTunes,and the original factory connector

  • Case In The Group By cluses

    I Need To Group By Case having sub query is it possible select segment3, ( case when segment3 like '210%' and segment4 in ( select child_m from apps.XXNBE_PAR_PROD) then (select parent_m from apps.XXNBE_PAR_PROD where segment4=child_m) else ' ' end )

  • Re: Can't use Canon DR3060C

    I would swear I saw a SCSI2 to USB adapter at Fry's.  What the heck, let me check online and get back to you. EDIT: TigerDirect and Newegg have them oniine.

  • Office 2010 build-in translate function not work

    Hi there, The Office 2010 translate function is not work on user's desktop, word/outlook/excel, none of them working. It was working before. at that time, I can simply select a word, right click and then select translate, from the right side pane, I