Ver7 grrr...

I can no longer import CD's. iTune does not recognise the CD automatically even after manually finding I then get an CDDB error which wont label the CD.
My fix for those of you who can't be bothered any longer to deal with these issues is Windows Media Player. Latest version for XP works great and automatically tracks and sorts library as well as rips CD in no time flat.
Then link your iTunes to WMP library.

A quick call to Apple support, and the solution is discovered.
In the Mail preferences, under the "Accounts" tab, there is a list of mail accounts that is associated with Apple Mail.
Clicking on each of these options displays the settings associated with each account. Under the "Mailbox Behaviours" sub-tabs, there is an option for the trash section that says:
Move deleted messages to a separate folder
Mine was unchecked.
This option mislead me -- I thought that this was a scheduled option to move old messages, especially because the option directly beneath it is "erase deleted messages when:".
I think that option should instead read:
Move deleted messages to the "Trash" folder
or whatever the person has renamed "Trash" to.

Similar Messages

  • Excel Get ActiveX References​.vi and closing references -- grrr

    I'm new to ActiveX stuff, but eager to learn! 
    The "grrr" in my Subject line is a reference to how I feel about LabVIEW's documentation from time to time.  I'm a dinosaur who came from text-based programming, and did a fair amount of C coding, so sometimes with LabVIEW I'm left with this awful feeling in the pit of my stomach like, "Good grief!  How much memory must LabVIEW be hogging up in the background when I use this vi?" or "What happens to those variables (wires) in that subVI when it completes but doesn't close?  What are their statuses when I come back in the next time?" or "What if I put a lot of elements into that array the first time and then started from element zero the second time and just put in a few?  What has happened with the memroy that was allocated when there were a lot of elements?"
    Today I'm stewing about this "Excel Get ActiveX References.vi," and what happens to the "ActiveX references" it generates each time I call the subVI in which "Excel Get ActiveX References.vi" lives.  I think that at least one of the "ActiveX references" it generates when I call it is of the type Excel._Application.  Then there appears to be an Excel._Workbook, and others.  You see, I've used "Excel Easy Report.vi" to put some data into an Excel spreadsheet, and I want to tell Excel to do a "Save" on the open spreadsheet.  I think ActiveX is the (a) right way to do that, so I'm wading into the ActiveX fray...  But this "Excel Get ActiveX References.vi" says in its help file, "Do not close ActiveX references opened with the Excel Get ActiveX References VI. References must remain open until the report is closed. Otherwise the error 3001 will occur."  Well, these Excel workbooks that get created by my VI could well stay open until after my LabVIEW VI terminates!
    So (finally), here are some of my quesitons:
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existance.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    Well, thanks for reading my novel.  I don't know what can be done with LabVIEW documentation to make it more satisfying to folks like me, but perhaps someone can weigh in on all my ActiveX questions here.
    Thank you in advance,
    Steve Brady
    Solved!
    Go to Solution.

    You need to close EVERY ActiveX reference you open.  If you don't you'll end up with some Excel processes running even after LabVIEW exits.  You can see them in Task Manager.
    I, personally, don't like the LabVIEW Report Generation Tool Kit for working with Excel.  I don't think it's flexible enough.  I have a growing library of VIs that I've written that open, manipulate, and close Excel.  Some references I pass from VI to VI and some I close right after I use them.  It all depends on what I'm doing.  If I want to enter read or write data from/to a certain range I'll get the range reference, read or write the data, then close it right away because I have no use for it any more.  On the other hand, when I open Excel or a Workbook I keep the reference until I'm done, which could be later in the program.
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existence.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    1)  No, LabVIEW will NOT close those references.  You need to make sure that happens.
    2)  You can save the references in a functional global or use a class but if you're not going to save them close them as soon as you're done with them.
    3)  Your user should not be able to close your LabVIEW application without it going through the shutdown routine you've created for your program.  The ABORT button should never be exposed to the user and you should capture and discard the panel close event so your program ALWAYS shuts down is an orderly fashion.  If you don't you will have fragments of Excel hanging around in your operating system and will have to kill those processes using Task Manager.  That should only be a problem during development, not once deployed.
    I used to program in C and Assembly many moons ago.  You should have seen my first LabVIEW code.  I go back and look at it just so I can see how far I've come in the last 12 years.  I feel your pain.
    Kelly Bersch
    Certified LabVIEW Developer
    Kudos are always welcome

  • ITunes has deleted all my music except for the genre I was listening to yesterday.  It has also deleted my purchased movies and all my podcasts and playlists.  Grrr

    iTunes has deleted all my music except for the genre I was listening to yesterday.  It has also deleted my purchased movies and all my podcasts and playlists.  Grrr.  Is there a way to find it all again???

    Hey there MotherMarthaMayhem,
    Welcome to Apple Support Communities.
    This article provides information and troubleshooting tips that may help you find the media that recently went missing from iTunes on your MacBook Pro.
    iTunes: Finding lost media and downloads - Apple Support
    Cheers,
    -Jason

  • Installation now not working, grrr

    OMG I am sooooo frustrated! I am using a 5th gen ipod (30g) and for one night I was able to download songs into my ipod. Then it prompted me to update, and I did like most of you did, and now Itunes, nor windows recognises my Ipod.
    I was able to use the Ipod running on my friends computer, with a fresh install, but not my own. I have deleted itunes, updater, and quicktime and reinstalled about 10 times. Sometimes I even get errors trying to use the installation cd. Now, the installationn goes thru but it only will install the updater, not itunes or quicktime grrr...
    I am normally a patient person, but this has worn me out. I have tried everything mentioned here and support just about. I am wondering since my Ipod is less than a week old, if I should return it and then I will have a fresh cd, or will Best Buy even accept the return since there are songs on it still and it's not in 'perfect condition' as when I bought it.
    Btw..I can't even restore my ipod. I open up the updater, plug in my ipod and the selections are greyed out.
    Very Unhappy and frustrated Ipod owner :((
    Thanks in advance to anyone that can help me!
    Ipod video 30g Windows XP Pro
    Windows XP Pro
      Windows XP Pro  

    Thanks David,
    CURDATE() hit the spot,
    you're a star!
    thanks
    E

  • Why wont google chrome let me play you tube videos as all I get is a black scfeen with no control iocons??? ps help I've  but made n o diff. tried clearing cashe's  and browsing data but made no diff grrr

    why wont google chrome let me play you tube videos as all I get is a black scfeen with no control iocons??? ps help I've  but made n o diff. tried clearing cashe's  and browsing data but made no diff grrr

        Check  whether you are currently  in  YouTube HTML 5 trial?
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box for
       "You are currently in the HTML5 trial".

  • Dealer Portal and IE ver7

    Hi SAP Gurus,
    I'm using SAP ECC 5.0. as my per understanding Dealer Portal only work for IE ver6 only
    if i run dealer portal using IE ver7 the error occurs.
    is there any solution that can i use in order to solve this issued?

    Hi Kurosaki,
                     How are you, we have same requirement in our project....we are also implementing Dealer Portal.....but i don't know it's business package or what.....i request to you could you please help me.....
    How to implement Dealer Portal......if it is Business Package....where can i download( could you please tell me the path of that Dealer Portal Business Package). If you have any document step by step procedure please send to my id : [email protected]
    This is Very Urgent.
    Thanks in Advance,
    Abhi.

  • How can I delete my photos on my Iphone 5 that was sync from my computer? It seems that photos that have been sync from computer is unable to delete on Iphone. Grrr IT *****!

    How can I delete my photos on my Iphone 5 that was sync from my computer? It seems that photos that have been sync from computer is unable to delete on Iphone. Grrr IT *****!

    Photos than came from computer will need to be uncheck on computer then do a sync to delete.
    You can only delete photos from your Camera Roll directly.

  • WRT54G ver7.0

    Hello!
    I have a WRT54G ver7.0 wireless router. My only problem is that i simply can't set up VPN to work. I tried everything possible with no luck. What worked with a wrt54gc, is not working now. After searching after this issue i realized, that i'm not alone with this. I know there are modded firmwares for the other versions of this router, that can fix the issue, but what's the case with v7? It's incompatible with nearly all of the 3rd party firmwares. Is there any known fixes, or compatible modded drivers? If not, will at least linksys fix it with a new firmware in the near future?
    Solved!
    Go to Solution.

    Cannot believe this! v7.00.7 beta firmware solved the issue!! Thanks god

  • P35 Neo2-FIR boot problem (GRRR - no video)

    Hi.
    A have a problem with my Neo2-FIR. But first my system's specs:
    MSI P35 Neo2-FIR (PCB 1.2, BIOS 1.9 or 1.A - the first one supporting my CPU. I don't remember and there's no video, so I can't check it)
    Intel E8400 E0 stepping (SLB9J) cooled by Thermalright Ultima-90.
    2x2GB DDR2 A-Data 800MHz 4-4-4-12 2T
    PowerColor HD4850 PCS+ (512 MB)
    Enermax Pro82+ 385 W (Click for more)
    WD AACS 640 GB (irrelevant)
    It has been working well since fall 2008. Suddenly, I turn on the PC to see "No input signal" on my monitor..
    Diagnostic LEDs report GRRR (from top to bottom), which translates into "Initializing video interface. This will start detecting CPU clock , checking type of video onboard. Then detect and initialize the video adapter". No signals form the speaker.
    The full sequence after an restart is GRRR (for a split second) -> RRGR (Mem. detection test) -> RRGG (Decompressing BIOS image to RAM) -> RGGR (Processor initialization) -> GRRR.
    After hardware changes (like different RAM configuration - in this case detecting RAM), it can freeze on some other stage. But an restart helps, and clearing CMOS before start up prevents this. Normally it's the above sequence.
    What I've tried:
    - Tested all the voltages with an Voltmeter. They're fine. The PSU was always rock solid.
    - Detached everything that's not crucial (HDD, DVD, fans etc)
    - Checked all the connectors.
    - Cleared the CMOS (with the button, by removing the battery etc.). It worked, because the dual boot issue was reintroduced.
    - Booting with the video card in the second (yellow) PCI-e slot.
    - Booting with an old, PCI videocard. (Same symptoms as with the new one). I've also tried booting without and video card - it was the same, but there was an beep from the speaker.
    - Booting with one RAM stick, in various configurations.
    - Reseating the CPU (it looks fine, so does the socket BTW).
    - Reseating the motherboard in the case (to make sure there are no shorts). No shorts on Ultima's backplate.
    - probably some other stuff that I don't remember
    - (edit) various FSB jumper configurations.
    Of course the video card was checked on an different PC and it works fine. I can't check the CPU, but it's rather unlikely that it is its fault.
    What I haven't tried is an blind BIOS update. A bit risky. Is it worth trying?
    Any ideas? I probably have to RMA the board, but maybe someone knows the answer or had an similar problem.
    I've also had some problems with CRC errors with the HDD. Windows reported problems with writing on it (don't remember the error codes). It was moths ago and replacing the SATA connector and changing the port helped.
    There were some (rare!) BSoDs, mostly caused by Realtek drivers. RAM was tested with Memtest86+, it was fine. Anyway nothing special and most probably nothing related to the current problem.
    Regards,
    Dr.

    Hi,
    Thanks for your help.
    They've actually sent me the P35 Platinum Combo mainboard. It the same as normal Platinum, but supports both DDR 2 and DDR3. I don't mind really, though I also don't need it It does have a slightly different PCB and a different BIOS (at least it has it's own number, everything else looks the same).
    I have a problem though with the BIOS. It's impossible to set the proper CPU voltage. On Neo2-FIR the minimal voltage was equal to CPU VID (1.1 V). There were some problems with EIST (when it was enabled, the minimal voltage was higher - 1.25 V I think. I've just disabled it).
    On this mainboard, with exactly the same CPU, I'm unable to set the voltage below 1.25 V and the CPU overheats  It works, but gets really hot. EIST was disabled on default. Rather annoying, this is supposed to be a quite build, which won't be possible with an overvolted CPU
    The BIOS is the newest version, but I'll double check.
    I'll probably create a topic about this issue after some more research and testing (when I'll find time for it ). Though I'm afraid it's a bug that cannot be resolved. Apart from that everything looks fine.

  • Grrr, why does package tracking stop at Anchorage?

    Grumble....
    iPad is expected to arrive Friday 14...Tracking seems to have stopped when the
    package reached Anchorage AK....
    Seems like the same thing happened several years ago when I ordered a MBP.
    Of course it might be the case that the package is being sent by burro from Alaska,...
    Grrr,,,,
    Jerry

    Yours and mine are sitting in Anchorage together.
    Mr. Prather, according to my online shipping status, your order was canceled due to flooding. It's sitting in 4 feet of water at the Nashville terminal.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

  • Exporting all art boards from a document with only one art board adds -01 to filename in cs4!!! GRRR

    Hi all,
    I love the new multiple art boards feature but where is the logic when you only have one art board? It gets re-named with an -01.
    picture.png becomes picture-01.png
    This is really frustrating because the old crop marks system is gone and oh well it is just frustrating.
    Any ideas?
    Thanks,
    Tim

    He cheryl,
    Thanks for your reply, but then i can't use the art board to crop the image... there is always transparent space around the artwork.
    Tim

  • MSI K7N2 Delta-ILSR (MS-6570) BSOD problems grrr

    I recently purchased this board and although it is an awesome product, I'm having a problem with BSOD's when I play a game for a certain period of time
    Specs:
    MSI K7N2 Delta-ILSR  (7.6 BIOS)
    AMD Athlon XP 2800+ Barton
    512MB (2x256MB) Samsung PC-2700 DDR memory (2.5-3-3-6 1T)
    MSI 128MB GeForce4 Ti 4200 (4X AGP)
    NVIDIA nForce on-board sound
    Western Digital 80GB drive w/ 8MB cache
    MSI X48 CD/CD-RW/DVD combo drive
    Windows XP Professional SP1
    PSU:
    Turbolink 420watt (came with case)
    +3.3V is 28A
    +5V is 40A
    +12V is 18A
    So what happens is I get a STOP error during the game that shows the kmixer.sys driver as the culprit. Sometimes it's accompanied by PAGE_FAULT_IN_NON_PAGED_AREA too. I read somewhere that kmixer.sys has to do with windows audio and that it's a 3rd party driver issue or a memory issue. I'm using the latest NVIDIA 3.13 nForce platform drivers. I ran Memtest lastnight for 12 hours straight and 0 errors. I'm thinking the memory may not be compatible with the board nor dual channel, is this possible? I have also tried several different drivers for both video and chipset including MSI's own and I still get the kmixer.sys BSOD when playing games. My previous motherboard was an MSI KT3 Ultra2-R (MS-6380E) which I had no issues with. Any help would be greatly appreciated. Thank you in advance.
    --Update--
    I just tried to play a game with audio disabled and it crashed this time with DRIVER_IRQL_NOT_LESS_OR_EQUAL with nv4_mini.sys as the problem. My IRQ table shows some sharing, but device manager shows no conflicts.

    Ok I tried running the DTM-CB3 module which is nForce2 approved at 3-4-4-11 2T timings and experienced the same result even at 2.6 and 2.7v. I tried both in dual-channel and same thing happened. However, I downloaded a program called Prime95 and ran the CPU torture test and the system returned a fatal error within the first few minutes. CPU Temp was at 57 C and the warning beep (set to 60C though) sounded intermittentley which is strange. I let it cool down then ran the torture test again and about 5min. later the system either seized completely or the program crashed. IE has also crashed randomly on me. I did this several times, before trying a different FSB/DRAM ratio. So I left the system at 200 FSB and used a 6:5 ratio so my memory was running at DDR333 and processor was a 3200+. I ran Prime95 again and the system locked up just as it did the other times.  So after I did this a few times with consistent results. I went back and set the FSB to 166 and tried a 5:6 ratio so the memory was DDR400 and processor was the normal 2800+. I ran it again and to my suprise it passed all the tests and after an hour of this, I tried a game and that was perfectly fine as well. I checked the temps and CPU was only 45 C this time. So I'm thinking the processor can't handle anything above 50C or it's just plain overheating. I ordered a Thermaltake Silent Boost HSF today which is tested up to 3400+ so this should fix my problem. If not, then I'm going to replace the memory with a 512MB Geil PC3200 golden dragon dual-channel kit.

  • Memory issues...grrr

    welcome fellow msi owners.  this is my first experience with this mobo and so far its not been a great one.  i can't seem to run dual channel on this board if my life depended on it.  i've tried every possible combo and even tried each seperate stick and the only 2 sticks that work are dimms 2 and 4 (purple).  the green dimm slots, 1 and 3 hate me.  everytime i put memory in green dimms my comp doesn't post.  i've checked memory on memtest86 and no errors so i dont think its the memory.  upgraded bios to v1.9.  so whats the deal?  can i solve this issue or is off to RMA?
    link to board..
    http://www.msicomputer.com/product/p_spec....atinum&class=mb
    this is my system specs
    K8N Neo4 Platinum
    AMD 64 3000+ Venice
    Sapphire x800pro
    Patriot 2x512mb @ 2-3-2-5
    80gb SATA150 Seagate Barracuda
    xClio 450 PSU

    Quote from: JayBee on 16-September-05, 15:21:33
    Will one stick alone in dimm slot #1 work?   If slots #1 and #3, either alone or together do not work with anything, sounds like slots one and three are dead and mobo is ripe for rma.  (Don't think it's the memory controller on the cpu, but 1 & 3 are the same channel I believe.)   
    you know whats up.  ya, i tried just 1 stick in dimms 1.  then 1 stick in dimm 3 and no bueno.  it's for sure rma quality

  • Can some one tell me how to get this imessage (i think thats what it is they are in blue) off my flippin phone because they are going to other ppl as well as ppl intended and i keep recieving msgs from randoms grrr please help

    i recently went from a iphone 3 to a 4 and when i send messages they are going to other ppl as well as the ppl they are intended for this did happen once with the iphone 3 but now its all the time i have been in settings but it's not high lighted so dont know how to get the **** thing off so i can just send normal msgs, please advise 

    i didnt have any on but i disabled it then enabled lol dunno how but i have done it i think thanks for your help there is tooooo many settings on the phone for me i was ok with the 3GS just flicking through settings again and my face time as dissapeared lol any ideas

  • How do restore the podcasts, audiobooks, etc., in the itunes 12 sidebar? I can only see one at a time. grrr.

    I've updated to iTunes 12.0.1.26, and the sidebar library list has disappeared. It looks like all I can see is one item at a time in the list. Either Music OR Podcasts OR Audiobooks, but not all of them as a list. This is so frustrating. I don't want to see one thing at a time, I want to see everything I have.
    Is there any way to restore it to the previous view?

    Thanks for taking a stab at it: that didn't prove to be the problem. That option in the settings for tabbed browsing was not checked.
    I may be a bit behind the times: I am used to tabbed browsing showing all the tabs it possibly can, instead of just the last one. Sometimes it won't even show the last tab: I can have 15 tabs open, and not see a single tab. I've been confused by this into closing a window with lots of tabs open, because it looks like a single page-window.
    My main problem with the tab-bar flashing to the end of the row is that it means a great deal more mouse-clicking around to browse.
    I haven't tried installing the latest beta. Maybe that would fix the problem.
    Toddo

Maybe you are looking for

  • N97 v20 - Calls Still Droping in Gsm / 3G Fringe a...

    N97 v20 - Calls Still Droping in Gsm / 3G Fringe areas - this is so annoying that I have had to set my network moe to ''Gsm only'' I have this problem with other phones too 1e 6500c Any ideas anyone George De Criminalised 0570817: RM-505_EMEA_EURO_QW

  • Cannot reproduce an album.

    Hello, I had a problem which I couldn't reproduce a whole album, Dark Horse, Nickelback. So I decided to remove it from iTunes and add it back again, but I cannot add it back! I can reproduce it using another music player tho. But I want to add it ba

  • TS1702 Help w apps

    Does anyone have probs downloading free apps or any? When i try to get a free app a box pops up for my password and i type it in then i gotta type it in again then another window pops up wantin my credit card info and it baffles me especially since i

  • Backup Failed (error -24988 and -903)

    Hello All, MaxDb 7.6.03.03 on Windows 2003 Server (32 bit). I've an instance that run fine since several years now, which is backed up using a simple script: @echo off echo ============================= >> d:maxdbscripts ackup.log echo. | date | find

  • No of records dont match.

    I loaded a cube - Buss Content Cube & Buss Cnt extractor - RSA 3 shows 297 & PSA shows 1704 ...its all Standard content.. I have checked Update TD even if no Master as MD is all crap n has lot of errors on ECC...is that an issue ..it shudn't be atlea