My Inbox Takes a Long Time to Refresh

My inbox on Mac Mail (desktop / Mavericks) takes a very long time to refresh. Messages that I have archived on iOS or on my other Mac (Mac Air) are still in the inbox and new messages do not appear.
I have rebuild the inbox, refreshed, re-started etc to no avail. There is only a lag on my gmail accounts. I am aware of the "All Messages" issue with Mavericks and my IMAP is set up properly.
Hardware Overview:
  Model Name:          MacBook Pro
  Model Identifier:          MacBookPro5,2
  Processor Name:          Intel Core 2 Duo
  Processor Speed:          3.06 GHz
  Number of Processors:          1
  Total Number of Cores:          2
  L2 Cache:          6 MB
  Memory:          8 GB
  Bus Speed:          1.07 GHz
  Boot ROM Version:          MBP52.008E.B05
  SMC Version (system):          1.42f4
System Software Overview:
  System Version:          OS X 10.9 (13A603)
  Kernel Version:          Darwin 13.0.0
  Boot Volume:          Macintosh HD
  Boot Mode:          Normal
  Secure Virtual Memory:          Enabled
  Time since boot:          2:02

Yes, i'm using the charger that came with it.
My iPad is iPad with retina display
No, i'm not using it while it charges. I turn it off to charge it. The firsts charges were quicker, but now it's take too long to charge.

Similar Messages

  • Wicd takes a long time to refresh

    Ok, I am not entirely sure what will be relevant to this inquiry, so I will wait a post to put up the needed logs or config files.
    Right now, dbus, hal, wicd and wicd-client all load. The iwlagn module loads. The trouble is that Wicd started taking a long time (~3-5 minutes) to refresh the first time I open the client's gui. If I am in an area that snags a signal I have used before it loads it just fine usually before I can even get firefox to wake up and get it's fat a$$ moving when I first boot the comp.
    The trouble starts when I am in a new wifi area, like school, where the signals are for networks not on Wicd's list. I have to open the gui to select the right one, but it just sits there blank for a long time. Once it refreshes the first time, it refreshes again in just ~20 seconds.
    When I kill wicd-client and start it from terminal, all it says is ***refreshing***.
    Any and all help would be greatly appreciated, and while it is an inconvenience, it's not crippling.

    hi,
    If you discover significant high frontend time, check whether the formatting is the reason. If so, either switch it off or reduce the result lines.
    As formatting information is not transferred, the time consumed in the frontend can be reduced.
    But the workbook you are executing may obviously take much time.
    Message was edited by: AVR - Intelli

  • Report takes  long time to refresh

    Hi Experts ,
    I have an issue ,when I have only used one workshet  to upload as the original workbook has about 25 worksheet tabs and is too large to upload.The report takes 20 minutes to refresh I was rebuilding the report when I noticed that when I added the formulas to the bottom to the original report the report started to take longer to run.When the bottom section of the report is not included the report refreshed in about  2 minutes.
    In the file that completes faster,there are no formulas after line 353
    In the file that takes long time o refresh,the start on line 357.When the bottom section of the report is not included the report refreshed in about 2 minutes.Any sugession.Thanku.
    Regards
    R@vi

    hi,
    If you discover significant high frontend time, check whether the formatting is the reason. If so, either switch it off or reduce the result lines.
    As formatting information is not transferred, the time consumed in the frontend can be reduced.
    But the workbook you are executing may obviously take much time.
    Message was edited by: AVR - Intelli

  • Firefox takes very long time to open and often crashes for some websites

    i have used firefox 3.6 with windows xp, vista and now windows 7. there is same problem i am facing at all after well usage of week. firefox takes very long time to open approx. 1 minute at first click. after refreshing computer when i click again, it becomes ready to use but meanwhile you re working firefox opens in another window perhaps for the first click. what is this please? i have reinstalled firefox but it is not fixing problem
    == Troubleshooting information ==
    how can firefox be ready for use at first click?

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • HT1222 I would like to be able to delete more then just one email at a time. I get a lot of mail that needs deleted and takes a long time to do. Would like to do 10 email deletes at a time on my iPad. Can you help me.

    I would like to be able to delete more then just one email at a time. I get a lot of mail that needs deleted and takes a long time to do. Would like to do 10 email deletes at a time on my iPad. Can you help me.

    open inbox
    tap Edit on top right of list.
    tap each email to check it off.  Then tap trash.   then 'trash selected mesages"
    done

  • Displaying PathGeometry into canvas take too long time

    Hi every one,
    I am working on spatial data with an application WPF and I would like to draw a map from data queries.
    I got my data and I am able to draw them on a canvas with scroll bar and zoom.
    My problem is when I want to zoom or scroll the canvas take a long time before draw the map.
    The big problem is there :
    Dim poly As New Polygon
    poly.Stroke = Brushes.Red
    poly.Fill = Brushes.Orange
    poly.StrokeThickness = 5
    Dim colPoint As New PointCollection
    For i = 1 To geo.STNumPoints
    Dim ls As New LineSegment()
    colPoint.Add(New Point(geo.STPointN(i).STX.Value - extentA, geo.STPointN(i).STY.Value - extentB))
    Next
    colPoint.Add(New Point(geo.STPointN(1).STX.Value - extentA, geo.STPointN(1).STY.Value - extentB))
    poly.Points = colPoint
    masterCanvas.Children.Add(poly)
    so the canvas is "masterCanvas" and i add each Polygon one by one. I would like if it is possible to gather all polygon into one "image" and then when it will refresh the canvas it will draw only one thing. 
    Regards.

    Hi,
    I found that you have posted it in the forum Acamar suggested.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/e2d50b4e-0d76-4a3c-b229-521b648b54b3/displaying-pathgeometry-into-canvas-take-too-long-time?forum=wpf#e2d50b4e-0d76-4a3c-b229-521b648b54b3
    Please just focus on that thread, and you could mark if any reply which is helpful as answer.
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have a new mac book air and every time i start up the computer it loads all my emails, somewhere around 10,000.  Even though I delete them, which take a long time, they keep coming back?  How do I delete all my old emails?  thank you

    I have a problem with my Macbook air which keeps reloading all my old emails to my inbox.  Even thought i delete them, which takes a long time, over 10,000...they keep coming back?  How do I delete old messages?  Thank you

    check your account settings, possibly under advanced settings.
    look for an option to check "remove messages from server" or similar.

  • Saved files take a long time to appear on Server or Desktop

    We have a network of nearly 40 macs, Panther Server, mostly panther clients but the newer machines are on 10.4.
    All of the newer machines exhibit the problem in that files saved to the server or to the desktop take a long time to appear.
    It appears to be a refresh issue, as on the server other clients can see the file straight away and locally the files can be seen on the desktop via the terminal.
    Force quitting the finder forces the files to appear but this is not a solution.
    The clients which have the problem all run 10.4 and the Server is 10.3. The 10.3 clients do not exhibit the same issues.

    I have also seen this issue at one of my larger clients (50+ workstations).
    The issues seems isolated to 10.4.5 or higher. Our workstations with 10.4.2 did not exhibit this problem. It is not an issue with hardware (we have seen this on an iBook G3 and various G5 tower models). Nor does it appear to be server-related: we have seen the issue saving locally with no servers mounted. We have seen the issue when saving from Adobe CS apps, MS Office apps, and from system apps (like TextEdit). Deleting com.apple.finder.plist from the user's home Library and then relaunching the Finder gets relief for a short time but the problem returns soon after. plutil reports the file is OK. The volume directory is fine, the permissions check out, and caches have been purged, to no avail.
    Like you, summersault, I am able to see the saved file on the command line, and when my users Force Quit the Finder, the file appears. Other workarounds, like the Nudge contextual menu, do not work.
    I have submitted the error via apple.com/feedback and would encourage you to do the same.
    Anxiously awaiting 10.4.7...
    -B
      Mac OS X (10.4.6)  

  • Problem description: My  macbook pro since this afteon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click-  EtreCheck

    My computer
    Problem description:
    My  macbook pro since this afternoon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click…
    EtreCheck version: 2.1.8 (121)
    Report generated 31 de março de 2015 18:29:15 BRT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 250
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 0:25:47
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (320,07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (47.94 GB free) - 51 errors
                Core Storage: disk0s2 319.21 GB Online
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    UNKNOWN Hidden (missing value)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Stickies    Application  (/Applications/Stickies.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
        npsf_cef: Version: sf 3.3.1.1 [Click for support]
        Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
        DivX HiQ
        DivX Plus Web Player HTML5 <video>
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 270.90 GB
        Destinations:
            Time Machine Backups [Local]
            Total size: 999.86 GB
            Total number of backups: 60
            Oldest backup: 2012-07-15 01:16:54 +0000
            Last backup: 2015-03-29 19:28:06 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 318.84 GB X 3)
    Top Processes by CPU: ℹ️
            97%    rapportd
             3%    WindowServer
             1%    mds
             0%    fseventsd
             0%    distnoted
    Top Processes by Memory: ℹ️
        155 MB    Safari
        120 MB    Finder
        86 MB    rapportd
        86 MB    WindowServer
        69 MB    mds_stores
    Virtual Memory Information: ℹ️
        12.56 GB    Free RAM
        2.53 GB    Active RAM
        428 MB    Inactive RAM
        1.66 GB    Wired RAM
        1.04 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 31, 2015, 06:00:15 PM    Self test - passed
        Mar 31, 2015, 01:13:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-131305_[redacted].crash
        Mar 31, 2015, 01:05:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-130542_[redacted].crash
        Mar 31, 2015, 12:24:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-122433_[redacted].crash
        Mar 30, 2015, 05:45:38 PM    /Library/Logs/DiagnosticReports/Skype_2015-03-30-174538_[redacted].cpu_resource .diag [Click for details]
        Mar 30, 2015, 01:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Last.fm Scrobbler_2015-03-30-135207_[redacted].crash
        Mar 29, 2015, 05:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-03-29-175505_[redacted].crash
        Mar 29, 2015, 01:06:38 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130638_[redacted].hang
        Mar 29, 2015, 01:02:47 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130247_[redacted].hang

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • It takes a long time to open an app and sometimes it will just crash, any idea how to fix it?

    My four year old Macbook Pro couldn't start yesterday and after going through solutions and all, it worked. But now it's freaking laggy and whenever I want to open an app, it takes a long time or the app will just crash. Any idea how to fix it? I really need the speed and everything back.

    noeleeeen,
    so you have an external hard disk, onto which you deleted/moved files from your internal hard disk, so that you now have 143 GB or so free on your internal hard disk — is that correct? Is the external disk purely for backups (e.g. a Time Machine destination), or does it function as a supplement to your internal disk?
    Was it entirely your personal data files (documents, photos, movies, music, &c.) which you’d deleted or moved to the external disk, or did you also delete/move apps, libraries, &c. over there?
    I’m not familiar with Echofon Lite, so I can’t comment on it, but an Apple-supplied app like the App Store shouldn’t crash.
    Have you tried running Disk Utility yet, to see if its verification process gives your disks its seal of approval?

  • Firefox takes a long time to close since a recent update and hogs memory.

    Since one of the recent updates that started using plugin containers, Firefox takes a long time to close. If I try to go back it, it tells me it is still running. I liik in Task Manager and about seven plug-in container. exe's are running and I have turned off or disabled mostplugins and addons, even Quicktime. Firefox uses an obscene amount of RAM on my XP machine and has made it sluggish. I use XP SP3. This started after you added the plugin containers in one of the recent updates earlier in the year. For the features it offers me or doesn't offer me, rather, it uses way too much RAM and is too sluggish. And takes a very long time to close out when I close the browser. It uses about twice as much RAM as it used to.

    Use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar.
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    See "Firefox hangs when you quit it":
    *https://support.mozilla.org/kb/Firefox+hangs
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/Troubleshooting+plugins

  • Macbook takes a long time to recognize power soure

    Hello,
    I have a MacBook running 10.6.8 that is exhibiting some strange behavior in regards to the power source.  When I plug the power cord in it takes a while, sometimes as long as 3 minutes to recognize that it the computer is no longer running on battery anymore.  Similarly it takes a long time to realize it's no longer running via a power cord when I remove the power cord from the machine.  In all cases it eventually catches up and makes the proper switch, but I'm a bit concerned as this behavior is relatively new.  I've tried swapping out power cords and it doesn't make any difference.  I only have one user on the machine but could create a test account and try to see if this behavior is account specific if someone things that is worthwhile.  Another thing to note, I believe the battery level indicator is correct, because often when it catches up after I've inserted the power cord the percent full jumps a couple of digits, as if it'd been charging for a while.  Does anyone have any thoughts or ideas that I could try to remedy this?  So far, I've really only tried repairing disk permissions as I've never seen an issue like this before.  Thanks.
    -NifflerX

    How long is "forever"?
    Create a new user account. Log out of the original and into the new one, then put the machine to sleep. Any changes?
    ~Lyssa

  • Firefox takes a long time to load, even with add-ons and auto-update disabled

    When opening firefox it takes a long time (1 minute +) to load. The computer does not display any indication that firefox is loading (often leading to 2, 3 or 4 instances of Firefox trying to start due to my impatience).
    My OS is Windows Vista 32 bit
    Firefox is v4.0.1

    Can you check your Windows Firewall settings? It's possible that it's routing Firefox requests differently. At least one other Firefox user has reported that his Windows Firewall was set to block Firefox 3.6.

  • Import of Apex Application to another instance takes a long time

    Hi,
    I have developed an apex application which is of size -24 MB .While importing the appl to another instance it takes a long time (few hours). The imported appl is working fine so far.
    What should be the ideal time for the import of this size appl ?
    Is it the usual due to the size of the app or some thing is wrong with the app ?
    Any one can please throw some light on this, as I am unable to figure out if it the appl issue or the DB issue.
    Thanks in advance!

    The application is getting imported and running, so you do not really have a problem in hand.
    24M is big, but not all that big to run for hours.
    The time taken depends on the resources available on the server where you are trying to import. If the load on that server is high then the resources will be shared between all the processes run on it, and the import process will run longer.
    Monitor disk and CPU usage, it will provide you some clues. Try importing at offpeak time and it should run faster if there is a server resource issue.
    Regards,

  • My iPad air 2 takes a LONG time time to charge

    So I recently got a IPad Air 2 and I have used the 10w charger which it came with but it takes a LONG time to charge. In around 1 hour is only goes up around 10% and the charger gets quite hot. Also sometimes it displayed the message,"Not charging," up in the corner where the battery symbol is. Now I got the 12w wall plug charger and it's abit faster and the charger gets hot but not as hot as the other one just warm. I haven't had the message,"Not charging," yet.
    Has anyone had the same issue or can help because I don't think It is a battery issue as the iPad air 2 is brand new and I only got it 2 days ago.

    Mine is a new IPAD Air and I have about 50 apps - the device has been trying to download/sync my apps overnight and it is nowhere near done......I have been trying to do it through Itunes leaving it with the IMAC (syncing computer) overnight but it is nowhere near done......
    The IMAC uses a wireless connection for Itunes, etc.....
    As of now the IPAD Air is showing that it is downloading but I wonde whether I should shut it down and restart?
    The downloads have been going on for about 12 hours.....

Maybe you are looking for

  • HT1918 My credit card was replaced and it won't let me change my CC info

    I had to have my credit card replaced and my itunes account won't let me change my payment info for my debit card. When I finish typing all the numbers in, selecting the expiration date, and the security number I have tried to click done and it says

  • I just ordered my Mac Air & how to obtain my Snow lepard

    Hi I am new to Mac computers [This my first ever Mac] I find on the apple site about the new release of the OS-Snow Lepard. I have ordered my Mac Air on the 27th of August-two days ago and awaiting delivery. Will I have the new OS or Have I got to pa

  • Smartforms next page- indefenite loop

    Hi, I am changing the std layout smartform for pick list. I want to display next page for more line items. I have devloped next page and given tht, but its going for indefenite loop. how do i get the correct output? its very urgent plz help Thanks

  • The yellow box around the pages when using Word Processing

    I am somewhat new to the Mac, work with "Pages" to do newsletters. The first time I chose to use the Word Processing. Next I tried Pages layout. It was when clicked on "View thumbnails" in Word Processing newsletter that I noticed the yellow box all

  • File Security on Windows 10

    I'm finding to file security on Windows 10 unbearable. I am unable to write to Program Files or Program Files32. How do you turn it off? How does one turn the UAF off? Renee "MODERN PROGRAMMING is deficient in elementary ways BECAUSE of problems INTR