Help with Converting Already Imported Songs to Lower Quality

Hello,
I just bought a new 2GB nano, and before I even thought about it, I just dragged and dropped my songs over to it. However, I had forgotten awhile back that I had upped the quality of my library to import at 320 kpbs. This was obvious after the fact because my estimated 500 song nano is saying its full at 294 songs. How do I convert my library to a lower AAC kpbs? I tried changing the import settings in the advanced menu, but the conversion process stops when it hits a song that I purchased from the iTunes Music Store. Any ideas?
Thanks!

Adam, did you change the import settings in ITunes Prefs > Advanced? If you left the settings at 320Kbps, then you've accomplished nothing. If you did change this setting then highlight Library, in the Source list, pull down Edit > View Options and click Bit Rate. Click the OK button then sort your Library by Bit Rate to find the new songs.

Similar Messages

  • Help with converting a Nero file

    I have previously converted a dvd insert designed with Nero into a pdf using adobe acrobat in order to send to someone else.  When I tried to do the same thing today with a new Nero designed insert the conversion wouldn't work.  The message said adobe didn't support the program that created the file.  Any ideas?

    thanks for your response.
    When I create a dvd insert or cd label etc using Nero the file extension is nct - nero cover template.  The printer wants the file as a pdf as he can't open Nero files.  I have version 9.3 of acrobat.
    Date: Mon, 18 Jan 2010 21:43:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: help with converting a Nero file
    Nero is simply a CD/DVD burning application and should have no effect on the type of files that will eventually be on the CD/DVD.
    What type of files are you trying to convert and exactly how are you trying to convert them? Plus, it would help to know the version of Acrobat you are using.
    >

  • Help - iTunes Converting mp3s automatically into VBR - Low Bitrate?

    Hi Forum Members: New kid on the block. I've been very lucky not to have too many problems with iTunes.
    I just placed several mp3s into iTunes via the folders/file selection. For some unknown reason it converted all those mp3s into VBR mp3s with a lower bitrate.
    There is nothing unusual about these mp3s. Their bitrate is mixed at around 196 kbps to 256 kpbs.
    I didn't use Import or ask iTunes to convert?
    Any clues as to what is going on? Or how to fix the problem.
    Thanks, katydidit

    Hello CasperGemini:
    In answer to your first question, no it didn't ask me?
    My Preferences > Advanced Tab > mp3 encoder, good quality, 128 kbps
    With iTunes changing the format to 114 kbps(VBR) at 44.100 KHz is quite close to the 128 kbps, however, it's rather odd that it would do it without asking (as you mentioned).
    My idea was to keep the files at their existing kbps per second and then convert within iTunes using the "right-click" option.
    I've also had problems with iTunes converting on import. If I take files/folder from my computer (not CD - already on system) and bring them into iTunes via the Import method (I've specified the importing size, etc.) it doesn't convert them to the specified encoding, e.g. m4a to mp3?? I end having to convert within iTunes (right-click).

  • Please Help with Converting PDF document to Word Document

    I have downloaded our PDF document to be converted to a word document --- it did not work correctly--we need help with this
    Scott Munsen
    Abbott House -- Mitchell, SD

    Good day Scott,
    I received your document via our File Conversion Issue form.  The root of the problem you're facing is the quality of the scan.  I'm not sure if you were starting with a poor quality hard-copy or simply low DPI settings on your scanner, but the reason the results you received were so different than the PDF was the quality of the input.
    If you're hard copy looks clearer than the PDF file you created, I would suggest increasing the resolution settings on your scanner.
    Please let me know if you have any questions.
    Kind regards,
    David

  • Help with Flash Video Import

    I was hoping to get some help with something that is frustrating me.
    I have an .fla file with two frames. In the first frame I need a movie (.flv). When the movie ends I need to progress to the next frame on the time line.
    I have converted the original .mov to an .flv and imported it into my file as an external viseo w/playback component and no skin. It is now in my library as FLVPlayback and I have given it an instance name of 'goFrame'. Its contentPath is the name of my .flv file (P1010472.flv)
    So I put the FLVPlayback onto my first frame and I put a stop() in the actions for the frame; and I have text on the second frame, also with a stop to see when the frame has advanced.
    I found this code:
    var listenerObject:Object = new Object();
    listenerObject.complete = function(eventObject:Object):Void {
            _root.gotoAndPlay(2);
    myMedia.addEventListener("complete", listenerObject); 
    I was under the impression I put this code in the actions for the frame that has the video component (the first frame)
    I replaced 'myMedia' with 'goFrame' which is the instance name I gave my FLVPlayback but what is the listener object? This is the code I now have on the first frame actions:
    stop();
    var FLVPlayback:Object = new Object();
    FLVPlayback.complete = function(eventObject:Object):Void {
            gotoAndPlay(2);
    goFrame.addEventListener("complete", listenerObject);
    but it doesnt advance at the end of the video, it stop on frame 1 after playing the video.
    I know I must name the 'listenerObject' and the 'myMedia' event listener but I must say I am simply confused what goes where. I may be a bit dense as I have been reading forums that are discussion this type of thing but cannot figure what name goes where in this code or if I am entering it correctly. It simply is not advancing.
    can anyone give me a hint?
    Chris

    use:
    var listenerObject:Object = new Object();
    listenerObject.complete = function(eventObject:Object):Void {
            _root.gotoAndPlay(2);
    goFrame.addEventListener("complete", listenerObject); 

  • Help with script for "Import AD users from CSV with checks first"

    Hi everyone.
    Can anyone tell me if i am on the right track here?
    I want to be able to provide a CSV with users and import into a new AD domain/forest. But i know there already are some AD accounts so i need to run some checks. For now i am checking only on Name and Email.
    The issue i have is is with "write-host "$UserFullName was not found. Creating user.". It outputs this 19 times which is the same amount of times as there are users in AD in this OU.
    Not sure if my method is right. 
    $allImportedUsers=@()
    $allUsersArray=@()
    $searchbase="OU=PL,DC=EUECS,DC=CORP,DC=ARROW,DC=COM"
    $path = "OU=Users,OU=PL,DC=EUECS,DC=CORP,DC=ARROW,DC=COM"
    $allImportedUsers = Import-CSV polandusers_edited.csv
    $allUsersArray = Get-ADObject -LDAPFilter "objectClass=User" -SearchBase $searchbase -Properties * | select *
    $allImportedUsers | ForEach-Object {
    $Firstname = $_.givenname
    $Lastname = $_.surname
    $UserMail = $_.EmailAddress
    $UserFullName = $Firstname+" "+$Lastname
    $importUserSAM = $_.Samaccountname
    $allUsersArray | ForEach-Object {
    $currUserFirstname = $_.givenName
    $currUserLastname = $_.sn
    $currUserMail = $_.mail
    $currUserFullName = $_.name
    $currUserSAM = $_.samaccountname
    $currUserDN = $_.DistinguishedName
    if($currUserFullName -eq $UserFullName) {
    write-host "CSV $UserFullName matched on name"
    $userMatched=1
    if($currUserMail -eq $UserMail -AND $userMatched -ne 1) {
    write-host "CSV $UserFullName matched on email"
    $userMatched=1
    if($userMatched -ne 1) {
    write-host "$UserFullName was not found. Creating user."
    $userMatched=0
    If only i had a cool signature!! ;)

    Move below to outside the inner for-each loop:
    if($userMatched -ne 1) {
    write-host "$UserFullName was not found. Creating user."
    $userMatched=0
    so the bottom should look like
    }if($userMatched -ne 1) {
    write-host "$UserFullName was not found. Creating user."
    $userMatched=0

  • Help With converting px to em...

    So, I thought that I would have a go at converting a site from all px to em to help with accessibility and using browser zoom.  I wish I'd never started!
    This is how I approached it.
         1) Set my font to 100%
         2) Change all font sizes to em
         3) Feel smug
         4) Notice that after a couple of ramps up on the zoom the layout goes pear-shaped
         5) Change all width/height dimensions to em
         6) Change all padding/margin dimensions to em
         7) Feel a little tearful
         8) Realise I don't have a back-up style sheet
         9) Re-draw WWW domination plan
         10) Start to make a little progress
         11) Try out the negative zoom
         12) See that screw my layout - don't understand it
         14) Add some min-width/min-height rules
         12) Feel a little tearful...
         13) Came here to be with friends
    I worked out I think, that using flexible units in a fixed environment is going to cause problems.
    I'm having trouble with layout more than text-size.  I think the only thing that will cause me grief with text-size is with nested element and the way that em is inherited but, the site is quite straight forward, apart from a few floated elements.
    I thnk my main problems are with the layout:  Images, background images and how to approach the whold width/height thing.
    Martin
    PS I won't be at my PC for a while so, if  you respond and I don't come back to you, it's not because I'm not interested.  I'm too ashamed and confused to post a live page!

    Hi Martin
    The one thing that confuses people when converting from px to em units is that they think px is a fixed size and em's are flexible, which unfortunately is not true, and just to confuse things even more Microsoft even treat px's as a relative size, (this is actually correct if you look at the css1 spec).
    The best advice I can offer is to start with the layout when converting to em's and worry about the font etc. later, because as they say a pixel is relative.
    PZ

  • Help with converting FLAC to ALAC while retaining metadata and cover art

    Hi,
    I've decided to embark on the long trek to convert my 18k+ FLAC music library into ALAC. I've decided on ALAC for mainly 2 reasons: iTunes/iPhone/iMac/Sonos compatibility and my desire to keep with a lossless format.
    My library is pretty eclectic; I have quite a bit of classical music along with many other genres. I have spent quite a bit of time maintaining the correct tag information; I do not want to lose any of this info that I've painstakingly added to my library over the years. The tags that I use on my FLAC files are:
    Filename
    Title
    Artist
    Album
    Album Artist
    Disc Number
    Disc Count
    Compilation
    Comment
    Year
    Genre
    Track
    Composer
    Orchestra
    Conductor
    Performer
    Length
    Modified
    Path
    I want to be especially sure that I maintain the data in Composer, Orchestra, Performer and Conductor in my migration to ALAC. I also want to include my CD art in each track (many of which I had to scan since some of my CD's are not available for sale). The CD covers are stored in a "folder.jpg" file in the path of each CD's contents. I would really like the automated conversion process to pick up each "folder.jpg" and embed it in the appropriate tracks.
    I have a license for dbPowerAmp, so I can do the conversion on the Windows side if need be (I have BootCamp set up and use Fusion), but I would prefer to do everything in Mac.
    I am hoping that some of you good folks will offer up comments about the feasibility of this endeavor, and advise me on possible tools to use, paths to take, pitfalls to watch out for, etc.
    Thank you for your time.
    Mike

    I finally got done with the conversion. It took 2 weeks running XLD of 24x7, but at last it's over with.
    I first used iTunes "download missing album art" to start the process. It populated about 50% of my collection, but I found that many of the album art was wrong. For instance, with collections (various artists) it populated the album art from the first track; with others, it put in the wrong album cover for the right CD. These were mostly because iTunes would get a contemporary cover, where my cover was from an older pressing of the disk.
    I purchased a program called TuneUp which has helped with my missing album artwork, and also with correcting typos. But even with using TuneUp, I probably have a couple of weeks worth of work left to do.
    Then comes the renaming of the Classical music tracks.
    Mike

  • Help with Converting an Access query

    Hello:
    First time poster and would appreciate some help in converting this Access query into T-SQL so I can use in a Stored Procedure. I don't need help in resolving the syntax for the variables as parameter in the second query, but stuck in writing the first query
    in T-SQL . I assume I need some type of nested query with a left join to another query in T-SQL. 
    How do I convert this from Access into MS-SQL
    SELECT TBL_MONTH.L_Month, TBL_MONTH.L_MonthName
    FROM TBL_MONTH LEFT JOIN qry_MonthCheck ON TBL_MONTH.L_Month = qry_MonthCheck.L_Month
    WHERE (((qry_MonthCheck.L_Month) Is Null));
    qryMonthCheck in Access is defined as
    SELECT TBL_MONTH.L_Month, TBL_SIGNOFF.SO_YEAR, TBL_SIGNOFF.SO_USER, TBL_SIGNOFF.SO_LOCATION
    FROM TBL_MONTH RIGHT JOIN TBL_SIGNOFF ON TBL_MONTH.L_Month = TBL_SIGNOFF.SO_MONTH
    WHERE (((TBL_SIGNOFF.SO_YEAR)=[forms]![frm_signoff]![cboyear]) AND ((TBL_SIGNOFF.SO_LOCATION)=[Tempvars]![tmpVarUserLOC]));

    It is very much up to personal taste. For tables I use no prefix at all. Or suffix. I prefer plural: categories, products, etc. For junction tables, I drop the plural in the first entity, for instance productcategories. As for the case, many people prefer
    initial uppercase, while I go for lowercase only. But initial uppercase has its points, particularly in documentation. I am a staunch advocate of using case-sensitive collation for metadata. I don't see any point in mixing productcategories, Productcategories,
    ProductCategories etc. That can only cause confusion.
    As for either entities, I don't use views much, and I don't have any prefix for these either. In fact, several views I've been involved used to be tables once upon a time.
    If you want to add a marker to the object name, I recommend using a suffix. It is much easier to find objects in the version control system and other browser, when not everything is cluttered on the same letter. For instance, I typically add _sp at the end
    of stored procedure names.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Help with converting hex to date and time

    Hi!
    I am using snmp4j libraries to walk the mib tree. The system date is getting returned in 11 hexadecimal octets. I require help in converting it to date and time. I looked up the RFC convention of what each octets represent. Require help with conversion.
    Eg: 07:db:06:0a:29:1d:00:2b:05:1e
    Thanks,

    Octets Contents Range
    1-2 year 0..65536
    3 month 1..12
    4 day 1..31
    5 hour 0..23
    6 minutes 0..59
    7 seconds 0..60
    (use 60 for leap-second)
    8 deci-seconds 0..9
    9 direction from UTC '+' / '-'
    10 hours from UTC 0..13
    11 minutes from UTC 0..59
    For example I just took the time an hour ago it came out as
    07:db:06:13:12:11:1a:00:2b:05:1e
    I have to convert this as a date long value to send it.
    Do I have to write an utility of my own to do it?

  • Help with converting array of sentences in to array of words.

    Hi! I'm having a problem with converting an array of sentences (about 50) into 1000 separate words into an word array. No use of tokenizers, classes (pre-made) just clear proggramming.
    Thanks in advance!

    Until you come up with a question, check these out:
    http://java.sun.com/docs/books/tutorial/
    http://java.sun.com/learning/new2java/index.html
    http://javaalmanac.com
    http://www.jguru.com
    http://www.javaranch.com
    Bruce Eckel's Thinking in Java
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java

  • Imported Media Looks Low Quality - Why??

    Hi. I just got Priemiere Elements 7.0, Before I was using Windows Movie Maker under Vista. When I import DVD movie files into that - they look just like on the DVD - really good quality. However I  just imported the same files into Premiere Elements and they look low quality and a bit blocky. What do I need to do to get them looking normal. Thank you very much
    Rich

    Rich,
    What you are seeing in your workflow is twofold. WMP (Windows Media Player) is playing the MPEG-2 file directly, while the Preview in PE is playing a DV-AVI Type II file, which is what PE needs to work with. As you also found, the red line indicates that one needs to do a Render to get better playback. Also, if your Program Monitor is set to "Fit," the quality of playback (remember, this is just an emulation of the playback of the file), it will be slightly degraded. A setting of 100% will get you closer to what you will be seeing in final and should be used to judge the final output - though it is STILL just an emulation.
    Now, the better workflow would be to go back to before that source DVD was created. The source footage will be better, as that DVD has been compressed to MPEG-2 and image data lost forever. You rip the MPEG-2 files to something else, or maybe directly to MPEG-2, then bring into PE, which will convert them into DV-AVI Type II. Though only slightly compressed, it cannot restore the lost data. Then, if you Export back to DVD, you are re-compressing to MPEG-2 once more. The quality of the original source footage will be many times better, if you can go back to it. If not, then you are stuck with the quality hit. The best that one can ever do is to use an editing program that will edit the MPEG-2 files natively, and not re-Transcode anything that has not been altered. However, most of these will offer limited editing functions.
    What you are doing is akin to taking a film negative, and printing it to a "silk finished" 4x6 print, and then scanning that print to bring into Photoshop. It will never be as good, or as sharp, as that original negative. However, sometimes we just cannot go back to the source and have to live with what we've got.
    Good luck,
    Hunt
    PS, I think that Steve addressed your other question. Let us know if you now have all the necessary info.

  • Need help with converting characters to ASCII code

    Hey. Im trying to write a program to make Caesar Ciphers by random numbers. This cipher must also wrap from front to end of ASCII code, so that if, for example, the character being ciphered is Z and its being modified by +3, the result ciphered character is not "]", but "c".
    Im planning on reading the text that the user inputs (using ConsoleIO) into a string and then seperating each character into a character[]. Then, i would like to find the ASCII code of each character and print out the ASCII code character of the old ASCII code + the modifier.
    So far, this is what i have (sorry for the length, i like to space things out so that its easier on the eyes and more organized... X-( ... ):
    public class EvanFinalB {
         static ConsoleIO kbd = new ConsoleIO();
         static String enteredPhrase;
         static int phraseLength;
         public static void main(String[] args)
              System.out.println("Enter a phrase and this program will cipher it into a secret message.");
              System.out.println("/nEnter your phrase here:");
              //read phrase
              enteredPhrase = kbd.toString();
              //find length of entered text
              phraseLength = enteredPhrase.length();
              //declare arrays for the individual characters of the entered text and the ciphered characters
              char[] enteredChar = new char[phraseLength + 1];
              char[] cipheredChar = new char[phraseLength + 1];
              //loop converting of entered text into seperate characters
              for(int x = 1; x <= phraseLength; x++)
                   enteredChar[x] = enteredPhrase.charAt(x);
                   cipheredChar[x] = cipher(enteredChar[x]);//call cipher() method to find new ciphered character
         //wrap from front to end of ASCII code
         static char cipher(char enteredChar)
              //choose random number to cipher message by
              int modifier = (int)(Math.random() * 26) + 1;
              if(enteredChar + modifier > 90)//90 is the ASCII code for "Z" which is the last capital letter
                   cipheredChar = (97 + (modifier - (90 - enteredChar)));//97 is the ASCII code for "a" which is the first lower case letter
              return cipheredChar[1];
    }The program is obviously in its early stages but (i started creating it today actually), if there is a simple method or anything that i can use to find the ASCII value of a character in order to use enteredChar so that 'enteredChar' is equal to the ASCII code of the new ciphered character, please help me out...Thanks
    P.S. If there's an easier way to go about creating a program for Caesar Ciphers, let me know.

    The following code is from my Java textbook Big Java by Cay Horstmann. It is not my code and it's just to guide you in your own cipher.
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.IOException;
       This class encrypts files using the Caesar cipher.
       For decryption, use an encryptor whose key is the
       negative of the encryption key.
    public class CaesarCipher
          Constructs a cipher object with a given key.
          @param aKey the encryption key
       public CaesarCipher(int aKey)
          key = aKey;
          Encrypts the contents of a stream.
          @param in the input stream
          @param out the output stream
       public void encryptStream(InputStream in, OutputStream out)
             throws IOException
          boolean done = false;
          while (!done)
             int next = in.read();
             if (next == -1) done = true;
             else
                byte b = (byte) next;
                byte c = encrypt(b);
                out.write(c);
          Encrypts a byte.
          @param b the byte to encrypt
          @return the encrypted byte
       public byte encrypt(byte b)
          return (byte) (b + key);
       private int key;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.Scanner;
       This program encrypts a file, using the Caesar cipher.
    public class CaesarEncryptor
       public static void main(String[] args)
          Scanner in = new Scanner(System.in);
          try
             System.out.print("Input file: ");
             String inFile = in.next();
             System.out.print("Output file: ");
             String outFile = in.next();
             System.out.print("Encryption key: ");
             int key = in.nextInt();
             InputStream inStream = new FileInputStream(inFile);
             OutputStream outStream = new FileOutputStream(outFile);
             CaesarCipher cipher = new CaesarCipher(key);
             cipher.encryptStream(inStream, outStream);
             inStream.close();
             outStream.close();
          catch (IOException exception)
             System.out.println("Error processing file: " + exception);
    }

  • Help with converting an .aac file to .mp3!

    Is there anyway in iTunes to convert your entire library into a .mp3 file without it creating duplicates? Or is there a way to make it create the duplicates and then select every other song to easly get rid of the older .aac file?
    Thanks for your help!!!

    Would this work for me...? My problem is that I have about 6000 .WAV songs I've put from all my CD collection into my external 400 GB drive library. After a year of using my computer as a jukebox, I also decided to get an Ipod Shuffle, and would like to periodically put MP3 formatted songs on it from my library. So far, I've been 'converting' them in Itunes to mp3 (keeping the wav's of course) then smartlisting (by size) the mp3's into a playlist to put on the Ipod. The problem is that even though the mp3s are small, I don't want to use up disk space on the external drive for those essentially duplicate and only temporarily needed files. I know I can delete them manually after putting them on my Ipod, but that's lots of chances to accidentally delete a wav by mistake or otherwise screw up and waste time.
    I'd really just like to create a separate physical place on my internal drive as the 'destination' and then convert a few hundred (or even all 6000!) of my wavs to mp3 into that directory, then go back to using the external (main, 'wav')library for any new CD's I import. Can this be done without somehow screwing up the main library data file, and will I still be able to consider that my external drive has all the information which goes with the .wav files so that if I copy everything on it I've truly done a backup? (I don't care if I lose the mp3's, as they are only transient en route to the Ipod). I wish I could set Itunes to keep everything on my computer in .wav, and convert automatically to mp3 when loading my Ipod...!
    Any help would be appreciated. Thanks.
    generic   Windows 2000  

  • Please help with converting mpeg 1 movies..

    I have a Hitachi video camera that is not recognised by imovie. It outputs in mpeg1 format. Downloaded MPEG streamclip and tried to convert it, my problem is the video ended up having interlace problems when ther is any movement..
    Can someone tell me what format is best for imovie and the setting for mpeg streamclip?
    I am about to finally give up, and start using my girlfriend's PC...

    I do not know how vital if for you, but if it really is, MPEG2 Works 4 will convert MPEG 1's to MPEG 2's, you could *then transfer the MPEG 2 into iM08* or transcode to something else.
    Unfortunately is not free, but you could go to the website, and **_download a trial version_*, and convert that single file or other few if you need to and then trash it. If you do get it, do the following:
    1.- Go to the "VCD" Tab
    2.- Click on "MPEG 1 > MPEG 2",
    3.- It will ask you for the input file, select your MPEG 1, and then will ask you for the place to save it.
    Once you have the MPEG 2, you need to trick iM08 in order to import it. Pay attention to this, since iM08 supposedly ONLY imports MPEG 2 directly from the camcorder. Do not panic, this is not correct, you can trick it doing the following.
    With a USB flash memory drive, or an external hard drive, create on it a folder named MP_ROOT, inside it create a folder named 101PNV01, now put your mpg-2 files in this folder. Have iMovie open; after creating these files and putting the mpeg2's on it, disconnect the drive from your computer, now, when you re-connect, is like connecting a camera, and with iMovie open already, it will tell you that you have connected a camera etc, etc, now import into iMovie 08.
    I use this to import mpeg 2's.
    Remember to create this at the root level, at the very highest level in your external hard drive or USB. I do not use a USB stick because my files are very large, I use a external hard drive, so if one does not work for you, try the other one, if you have both.
    http://discussions.apple.com/message.jspa?messageID=5823783#5823783
    Check out this thread, it explains this and other possibilities. I do not take credit for this trick, somebody else described it.
    Message was edited by: gusluz
    Message was edited by: gusluz

Maybe you are looking for

  • After up grading to Adobe Reader XI why can't I open any PDF files?

    I am running windows vista and had been using Adobe Reader 8 - when I upgraded,  can not open any PDF files. When I attempt to open a PDF file, I receive the following messages: Update available Please take a few seconds to update Adobe AIR and get t

  • Need Documents on FISL

    Need Documents on FISL extraction, please send to [email protected] Thanks, Teja.

  • BCS Documentation

    Hi BCS Experts, I am BW consultant with accounting background and would like to learn BCS.Could you please send me some good BCS documentation except SAP material. I completed the SAP BCS course excercises. I dont have the confidence to start working

  • Multiple Recordsets and the Oracle OleDB Provider

    We are trying to return multiple recordsets from an Oracle SP through the Oracle oledb provider using VB. First of all, is this possible and is there any example code out there. Having trouble finding some info on this. Thanks

  • Mail on Yosemite: crashes, slow and buggy.

    I have already posted my experiences with Mail on Yosemite on several threads, and now I have decided to open my own thread about it, with the hope that Apple sees how many users are having the same kind of issues, and hopefully will address them in