How much is the N81 8GB in Australia,plz help

is it 400dollars or 300 plz tell me quickly

Check with online Australian retailers to see the latest prices. This is a support forum, not a price check site.

Similar Messages

  • How much is the skype number in australia?

    I am new to Skype and want to find out how much is it in australia?
    Do I need to buy one if I only use Skpye to make calls and not receive calls?

    No, you don't need any Skype number for this.

  • How to nullify the NullPointerException in my code. plz help  Very Urgent!!

    hi,
    I registered the crystl32.ocx properly and the previous errors were gone.
    thank you for your suggestions.
    and right now I have an error as shown below.
    Exception in thread "main" java.lang.NullPointerException
    at crystal.CrystalReport.aboutBox(CrystalReport.java:4466)
    at javaapplication10.CrystalClient.main(CrystalClient.java:25)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 1 second)
    how to overcome this.

    Thanks a lot mike.
    I have attached some part of the source code here.
    package crystal;
    import com.linar.jintegra.*;
    * COM Class 'CrystalReport'. Generated 11/10/2006 4:16:13 PM
    * from 'C:\WINDOWS\system32\Crystl32.ocx'<P>
    * Generated using com2java Version 2.6 Copyright (c) Intrinsyc Software International, Inc.
    * See  <A HREF="http://j-integra.intrinsyc.com/">http://j-integra.intrinsyc.com/</A><P>
    * Description '<B>Crystal Report Control</B>'
    * Generator Options:
    *   AwtForOcxs = True
    *   PromptForTypeLibraries = False
    *   RetryOnReject = False
    *   IDispatchOnly = False
    *   GenBeanInfo = False
    *   LowerCaseMemberNames = True
    *   TreatInStarAsIn = False
    *   ArraysAsObjects = False
    *   OmitRestrictedMethods = False
    *   ClashPrefix = zz_
    *   ImplementConflictingInterfaces = False
    *   DontRenameSameMethods = False
    *   RenameConflictingInterfaceMethods = False
    *   ReuseMethods = False
    * Command Line Only Options:
    *   MakeClsidsPublic = False
    *   DontOverwrite = False
    public class CrystalReport extends com.linar.jintegra.Ocx implements com.linar.jintegra.RemoteObjRef, crystal.CrystalCtrl {
      private static final String CLSID = "00025601-0000-0000-c000-000000000046";
      protected String getJintegraVersion() { return "2.6"; }
      // Interface delegates
      private crystal.CrystalCtrlProxy d_CrystalCtrlProxy = null;
      /** Access this COM class's crystal.CrystalCtrl interface */
      public crystal.CrystalCtrl getAsCrystalCtrl() { return d_CrystalCtrlProxy; }
      /** Compare this object with another */
      public boolean equals(Object o) {
         if(java.beans.Beans.isDesignTime()) return super.equals(o);
         else return getJintegraDispatch() == null ? false : getJintegraDispatch().equals(o);
      /** J-Integra for COM internal method */
      public com.linar.jintegra.Dispatch getJintegraDispatch() {  return d_CrystalCtrlProxy; }
       * addCrystalReportEventsListener.  Listen to events generated by this class.
       * @param    theListener An object that implements the crystal.CrystalReportEvents interface.
       * @exception java.io.IOException If there are communications problems.
      public void addCrystalReportEventsListener(crystal.CrystalReportEvents theListener) throws java.io.IOException {
        if(d_CrystalCtrlProxy == null) {
          queuedListeners.addElement(new Object[] { "00025603-0000-0000-c000-000000000046", theListener });
        } else {
          d_CrystalCtrlProxy.addListener("00025603-0000-0000-c000-000000000046", theListener, this);
       * removeCrystalReportEventsListener.  Stop listening to events generated by this class.
       * @param    theListener An object that implements the crystal.CrystalReportEvents interface.
       * @exception java.io.IOException If there are communications problems.
      public void removeCrystalReportEventsListener(crystal.CrystalReportEvents theListener) throws java.io.IOException {
        d_CrystalCtrlProxy.removeListener("00025603-0000-0000-c000-000000000046", theListener);
       * Constructs a CrystalReport.
      public CrystalReport() {
        super(CLSID);
        try {
          if (super.getObjRef() == null) {
            return;
          d_CrystalCtrlProxy = new crystal.CrystalCtrlProxy(super.getObjRef());
        } catch(java.io.IOException ioe) {
          throw new RuntimeException("Unexpected: " + ioe);
       * Constructs a CrystalReport.
      public CrystalReport(Object o) {
        super(CLSID, o);
        try {
          if (super.getObjRef() == null) {
            return;
          d_CrystalCtrlProxy = new crystal.CrystalCtrlProxy(super.getObjRef());
        } catch(java.io.IOException ioe) {
          throw new RuntimeException("Unexpected: " + ioe);
      private java.util.Vector queuedListeners = new java.util.Vector();
      public void addNotify() {
        super.addNotify();
        try {
          if (super.getObjRef() == null) {
            return;
          if (d_CrystalCtrlProxy != null) {
            return;
          d_CrystalCtrlProxy = new crystal.CrystalCtrlProxy(super.getObjRef());
          zz_doQueuedSets("d_CrystalCtrlProxy", d_CrystalCtrlProxy);
          for(java.util.Enumeration e = queuedListeners.elements(); e.hasMoreElements(); ) {
            Object[] l = (Object[])e.nextElement();
            d_CrystalCtrlProxy.addListener(l[0] + "", l[1], this);
          queuedListeners.setSize(0);
        } catch(java.io.IOException ioe) {
          throw new RuntimeException("Unexpected: " + ioe);
       * Release a CrystalReport.
      public void release() {
        com.linar.jintegra.Cleaner.release(d_CrystalCtrlProxy);
       * getPropertyByName. Get the value of a property dynamically at run-time, based on its name
       * @return    The value of the property.
       * @param     name The name of the property to get.
       * @exception java.lang.NoSuchFieldException If the property does not exit.
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public Object getPropertyByName(String name) throws NoSuchFieldException, java.io.IOException, com.linar.jintegra.AutomationException {
        try {
          return d_CrystalCtrlProxy.getPropertyByName(name);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
        } catch(NoSuchFieldException noSuchFieldException) {
          noSuchFieldException.fillInStackTrace();
          throw noSuchFieldException;
       * getPropertyByName. Get the value of a property dynamically at run-time, based on its name and a parameter
       * @return    The value of the property.
       * @param     name The name of the property to get.
       * @param     rhs A parameter used when getting the proxy.
       * @exception java.lang.NoSuchFieldException If the property does not exit.
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public Object getPropertyByName(String name, Object rhs) throws NoSuchFieldException, java.io.IOException, com.linar.jintegra.AutomationException {
        try {
          return d_CrystalCtrlProxy.getPropertyByName(name, rhs);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
        } catch(NoSuchFieldException noSuchFieldException) {
          noSuchFieldException.fillInStackTrace();
          throw noSuchFieldException;
       * invokeMethodByName. Invoke a method dynamically at run-time
       * @return    The value returned by the method (null if none).
       * @param     name The name of the method to be invoked.
       * @param     parameters One element for each parameter. Use primitive type wrappers.
       *            to pass primitive types (eg Integer to pass an int).
       * @exception java.lang.NoSuchMethodException If the method does not exit.
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public Object invokeMethodByName(String name, Object[] parameters) throws NoSuchMethodException, java.io.IOException, com.linar.jintegra.AutomationException {
        return d_CrystalCtrlProxy.invokeMethodByName(name, parameters);
       * invokeMethodByName. Invoke a method dynamically at run-time
       * @return    The value returned by the method (null if none).
       * @param     name The name of the method to be invoked.
       * @exception java.lang.NoSuchMethodException If the method does not exit.
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public Object invokeMethodByName(String name) throws NoSuchMethodException, java.io.IOException, com.linar.jintegra.AutomationException {
        return d_CrystalCtrlProxy.invokeMethodByName(name, new Object[]{});
       * getReportFileName. The filename of the report to be printed
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public String getReportFileName  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          String[] retVal = new String[1];
          zz_get("ReportFileName", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getReportFileName();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setReportFileName. The filename of the report to be printed
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setReportFileName  (
                  String px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setReportFileName", (String)px);
          return;
        try {
          d_CrystalCtrlProxy.setReportFileName(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getWindowLeft. The coordinate of the left side of the print window, relative to its parent window
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public short getWindowLeft  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          short[] retVal = new short[1];
          zz_get("WindowLeft", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getWindowLeft();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowLeft. The coordinate of the left side of the print window, relative to its parent window
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowLeft  (
                  short px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowLeft", (short)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowLeft(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getWindowTop. The coordinate of the top of the print window, relative to its parent window
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public short getWindowTop  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          short[] retVal = new short[1];
          zz_get("WindowTop", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getWindowTop();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowTop. The coordinate of the top of the print window, relative to its parent window
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowTop  (
                  short px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowTop", (short)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowTop(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getWindowWidth. The width of the print window
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public short getWindowWidth  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          short[] retVal = new short[1];
          zz_get("WindowWidth", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getWindowWidth();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowWidth. The width of the print window
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowWidth  (
                  short px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowWidth", (short)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowWidth(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getWindowHeight. The height of the print window
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public short getWindowHeight  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          short[] retVal = new short[1];
          zz_get("WindowHeight", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getWindowHeight();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowHeight. The height of the print window
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowHeight  (
                  short px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowHeight", (short)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowHeight(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getWindowTitle. The title of the print window
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public String getWindowTitle  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          String[] retVal = new String[1];
          zz_get("WindowTitle", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getWindowTitle();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowTitle. The title of the print window
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowTitle  (
                  String px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowTitle", (String)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowTitle(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * isWindowControlBox. If set to TRUE, the print window will have a control box
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public boolean isWindowControlBox  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          boolean[] retVal = new boolean[1];
          zz_get("WindowControlBox", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.isWindowControlBox();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowControlBox. If set to TRUE, the print window will have a control box
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowControlBox  (
                  boolean px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowControlBox", (boolean)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowControlBox(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * isWindowMaxButton. If set to TRUE, the print window will have a maximize button
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public boolean isWindowMaxButton  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          boolean[] retVal = new boolean[1];
          zz_get("WindowMaxButton", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.isWindowMaxButton();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowMaxButton. If set to TRUE, the print window will have a maximize button
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowMaxButton  (
                  boolean px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowMaxButton", (boolean)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowMaxButton(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * isWindowMinButton. If set to TRUE, the print window will have a minimize button
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public boolean isWindowMinButton  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          boolean[] retVal = new boolean[1];
          zz_get("WindowMinButton", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.isWindowMinButton();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setWindowMinButton. If set to TRUE, the print window will have a minimize button
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setWindowMinButton  (
                  boolean px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setWindowMinButton", (boolean)px);
          return;
        try {
          d_CrystalCtrlProxy.setWindowMinButton(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * getPrintFileName. The filename for output when printing to file
       * @return    The px
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public String getPrintFileName  () throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          String[] retVal = new String[1];
          zz_get("PrintFileName", retVal);
          return retVal[0];
        try {
          return d_CrystalCtrlProxy.getPrintFileName();
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
       * setPrintFileName. The filename for output when printing to file
       * @param     px The px (in)
       * @exception java.io.IOException If there are communications problems.
       * @exception com.linar.jintegra.AutomationException If the remote server throws an exception.
      public void setPrintFileName  (
                  String px) throws java.io.IOException, com.linar.jintegra.AutomationException {
        if(d_CrystalCtrlProxy == null) {
          zz_queueSet("d_CrystalCtrlProxy", "setPrintFileName", (String)px);
          return;
        try {
          d_CrystalCtrlProxy.setPrintFileName(px);
        } catch(com.linar.jintegra.AutomationException automationException) {
          automationException.fillInStackTrace();
          throw automationException;
      }

  • In Australia, how much would the gap cost to exchange an iPhone 4S 16g with an iPhone 4S 32g?

    In Australia, how much would the gap cost to upgrade an iPhone 4S 16g with an iPhone 4S 32g? I really need more space, I didn't know that 1,000+ photos would take up this much room!

    Apple does not do trade in
    You would have to sell your iPhone  and buy a new model
    Apple Prices no carrier lock see here on Apple Store AU
    http://store.apple.com/au
    Or speak to your carrier if you on contract to see whether  you are eligible for a carrier upgrade

  • My dad has an imac G5 from 2005, and I'm wondering if we can bring it to the Apple store and replace it with one of the newer models. How much would the G5 be worth and how much money would we have to put on top of it to buy the newer model?

    How much is the G5 worth? The one from 2005.

    The Apple Store will offer to recycle it for free, you are better off selling it on ebay or elsewhere, I have seen decent looking ones go from $80-$250 here in Australia.
    You are looking at $1000 + to get a new one

  • My white iPad 2 fell off my table and has a slight crack on the screen, how much is the glass to replace it?

    How much is to get fixed in australia from apple?

    Google to find what the cost would be. That's how I found this information here in the U.S. I would assume that the cost would be similar - $200-$250 in the States.
    http://www.iresq.com/ipad-repair/ipad-2-repair-replacement-service-parts.html

  • How much music can an 8gb ipod touch hold?

    How much music does an 8gb ipod touch hold? I have 200 songs and the capacity is already full and going over.

    About 1,500 in 128-Kbps AAC format
    What forma/compresssion are your songs? The 128 ACC format is more compressed than "normal" songs.

  • How much is the maximum support for memory for hp dv6 6b68ex?

    i recently bought the HP dv6 6b68ex. i want to add more ram since only 6gb is installed
    i would like to ask if how much is the maximum support for ram for my laptop
    thanks

    Hi,
    Ok, I've found it now. Based on the following information, max RAM is 8Gb:
       http://h20195.www2.hp.com/v2/GetPDF.aspx/c03063996​.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How much is the final prize for the software of logic pro 9 ?

    hello how much is the final prize for the app logic pro ???

    The price you pay does depend on where you live. In Australia, we pay $209.99 (equivalent to US$219.25). But the price will be somewhere close to US$200.

  • How much is the iPod 5 8 gb

    How much is the iPod touch 5? (8 gb)

    Yeah I think only 32GB and 64GB will be offered, unless they need more money...LOL. 8GB is tiny for the touch! I bet the iOS 6 will be nearly 3GB alone!! Oh well.
    32GB = $299
    64GB = $399
    Look at the Apple Store online for more info!! http://www.apple.com/ipod/

  • How much is the ipod nano camera version worth? its 'as new'

    how much is the ipod nano camera version worth? its 'as new'

           8gb or 16gb. If its in great condition, and nevrer opened i would say about $130 for the 16gb and $100 for the 8gb. Look on craigslist for the best deals!

  • On a new imac how much of the HDD is already used with the OS,iLife,apps..

    Looking to buy my 1st ever iMac, the one Im going to get is the base one, with 250Gb HDD (I may upgrade to 320Gb for UK £29 though)
    My question is how much of the HDD is already used by OS X and everything on it? I understand there is some free trial stuff onthat can be installed eg MS Office, iWork etc I would want these removed as wouldnt want them so how much is left before you start adding your own stuff
    I also want to install Win XP on it so need to know what to do, 250Gb in todays computing is very stingy I think, so I need an idea
    cheers

    Here's are some disk usage information from my 20" white C2D. The numbers
    are running totals that include periodic software updates and some of my own
    stuff -- but that would be less than 0.5 GB of the final total.
    OS-X with "no optional packages" is a very usable system; it includes 'core'
    applications such as Safari, iTunes, Quicktime. It does not include any of the
    iLife apps or the iWork/MS_Office test-drive bloatwares.
    The large increase in disk usage for a minimum Leopard system is partly due
    to the inclusion of more apps in the 'core' OS package. Some things that were
    optional in Tiger have become part of the "minimum" Leopard install.
    The Xcode software development tools are a standard part of every OS-X
    distribution, but since most customers have no use for them, they're not
    included in the factory-installed disk image. If you don't plan to install
    them, subtract 3.4 GB from the final tally.
    Factory pre-installed Tiger 10.4.8 & bundled software .................. 16.4 GB
    Erase & Install Tiger 10.4.8 with NO optional packages .................. 2.9 GB
    SoftwareUpdate to 10.4.10, with NO optional packages .................. 3.1 GB
    Erase & Install Leopard 10.5.0 with NO optional packages ............... 6.6 GB
    SoftwareUpdate (11/11, immediately after Leopard install) ............. 6.7 GB
    Install Xcode SW development tools from Leopard DVD ................. 10.1 GB
    Install & SoftwareUpdate iLife'08 (except iWeb & GarageBand) ....... 12.3 GB
    SoftwareUpdate to Leopard 10.5.1.................................................. 12.5 GB
    IMO, 250 GB is FAR more than you'll ever need for installable software plus
    a sizeable collection of music/photos. OTOH, no amount of disk space will
    ever be enough for an avid music/photo/video junkie, and everyone should
    have an external backup drive. So, stick with the standard internal drive and
    buy more external storage.
    ...a billion here, a billion there -- and pretty soon you're talkin' 'bout alot of money,
    Looby

  • I am now currently studying in Switzerland. I would like to buy a macbook pro in USA so may I ask how much for the shipping fees?

    I am now currently studying in Switzerland and I would like to buy a macbook pro in USA. So may I ask how much for the shipping fees? Thanks a lot

    I'm not so sure if it's possible that Apple ships internationally. Why not just look into getting one in your country that you live in?

  • My iPhone 6 plus screen was crashed, how much is the cost if I want to repair it at Apple? FYI: I didn't bought Applecare

    My iPhone 6 plus screen was crashed, how much is the cost if I want to repair it at Apple? FYI: I didn't bought Applecare+. I bought my iPhone 6 plus 3 months ago in Singapore.

    $129 US. https://www.apple.com/support/iphone/repair/screen-damage/ For local pricing call your nearest Apple store. If you live somewhere other than Singapore you'll have to send the phone to someone you trust in Singapore and have them take the phone in to have it repaired. iPhone's do not have an international warranty and can only be serviced in the country they were purchased.

  • I dropped my iphone vertically on the ground. The screen is normal when it is locked. but when unlocked, it is broken down from the clock. Can it be fixed and is it under the warranty conditions? If not how much is the price to change the screen?Thanks

    I dropped my iphone vertically on the ground.The screen works when it is locked.When unlocked, it's broken down from the clock.Can it be fixed and is it under warranty conditions?If not how much is the price to change the screen?Thanks

    User damage is not covered by warranty unless you have Applecare +
    assuming you do not,  the out of warranty exchange price for an iPhone 4 is $149,exchange at an Apple Store genius bar
    iPhone 4 are not repaired they are exchanged

Maybe you are looking for

  • Can't have more than 256 tracks in an album?

    I have an audiobook in my library that I ripped from audio CDs. I've told iTunes that the whole thing is one long album. (Actually, I wrote a script to create the ID3 tags...) But, I've noticed that iTunes happily imported files 1 through 255. But fr

  • My finder is not working in the dock

    My finder is not working in the dock with one click have to click and then go to find just started to do this also safari stopped  and I quit safari and it started to work again. I restarted my computer several times no help.

  • Virtual Cube

    Hi, I'm trying to implement Virtual cube for standard DSO 0FIGL_O02. I customized 'RS_BCT_FIGL_DATA_GET_VC1' function module for 0FIGL_O02 infoprovider. Everything is activated properly, but still I'm facing issues in display data like : 'An exceptio

  • Anyone have an iPad 2 where the light bleed isnt an issue?

    I am wanting to see if anyone is getting iPad 2's that don't have the light bleed problem

  • Unable to start in osx

    I have instaled windows 7 on new mini mac with external DVD drive using bbotcamp. Mini mac will now only start in Windows, holding option key does nothing. Any ideas would be appreciated. Thanks