<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7757829973234847574</id><updated>2011-04-21T22:22:37.945-07:00</updated><title type='text'>Computer Overload</title><subtitle type='html'>Stuff About Computers and Web Development</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://computeroverload.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://computeroverload.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jim Hollis</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_-44J1XFjJnc/SE2gASAhMgI/AAAAAAAAAAQ/LroYN_Dk4jY/S220/jimhollis.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7757829973234847574.post-6423465298868026496</id><published>2009-02-05T13:45:00.000-08:00</published><updated>2009-02-05T14:45:08.462-08:00</updated><title type='text'>ASP.NET AJAX Upload Control</title><content type='html'>I know it's been a very long time since I've posted anything but I've been doing a lot of web development lately and have discovered that there is a huge amount of mis-information on the web when it comes to doing certain things with Visual Studio and ASP.NET.  So I'm going to post a few solutions that I've come up with AND TESTED.  Hopefully someone can find the information useful.&lt;br /&gt;&lt;br /&gt;Since Microsoft has Visual Web Developer 2008 available for free, it makes sense to use it. In fact, this free addition is more powerful than Visual Studio 2005 Professional (for web development that is) and...did I mention...it's free. Here's the download link.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/express/vwd/"&gt;http://www.microsoft.com/express/vwd/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You'll also need the AJAX Control Toolkit for this particular feature I'm going to describe. Here's the download link. And, btw...it's free too.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.codeplex.com/AjaxControlToolkit"&gt;http://www.codeplex.com/AjaxControlToolkit&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The first thing you will need to determine is the maximum file size you will allow someone to upload.  The default is 4mb.  If you want anything larger you will have to modify your Web.config file.  Here is an example that will change the upload limit to 100mb. &amp;lt;httpRuntime maxRequestLength=&amp;quot;102400&amp;quot; /&amp;gt; Simply add this line to your Web.config and change the number to the maximum file size you want. Notice that the file size is specified in kb and not mb (100 x 1024 = 102400).&lt;br /&gt;&lt;br /&gt;Ok, now that we've taken care of that, on to the upload control. For purposes of this discussion, I've created a form called upload.aspx. I'm also using a predetermined upload location. You can easily modify the code to allow for the specification or even the creation of the upload folder but I'm not going to get into that. I'm just going to give you the basics for a working upload control. So here's what you'll need:&lt;br /&gt;&lt;br /&gt;A web form (I've called mine upload.aspx)&lt;br /&gt;A Label control to use for displaying an error message&lt;br /&gt;An AJAX ScriptManager control&lt;br /&gt;An AJAX UpdatePanel control&lt;br /&gt;A Progress Bar image (I made my own using Photoshop)&lt;br /&gt;A Label control to use as an update status (Please wait...)&lt;br /&gt;A Label control to use for displaying a success message&lt;br /&gt;&lt;br /&gt;So here's the code...remember you can make the control, variable, and function names whatever you like.&lt;br /&gt;&lt;br /&gt;In the HEAD section of your web form you'll need this code:&lt;br /&gt;&lt;br /&gt;&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;Protected Sub UploadFile(ByVal sender As Object, ByVal e As System.EventArgs)&lt;br /&gt;If myFile.HasFile Then&lt;br /&gt;Dim strFileName As String&lt;br /&gt;strFileName = myFile.FileName&lt;br /&gt;myFile.PostedFile.SaveAs(Server.MapPath(&amp;quot;/whateverfolderyouwant/&amp;quot; + strFileName))&lt;br /&gt;lblMsg.Text = strFileName + &amp;quot; has been uploaded successfully.&amp;quot;&lt;br /&gt;Else&lt;br /&gt;lbl_Error.Text = &amp;quot;** You must first select a file to upload **&amp;quot;&lt;br /&gt;End If&lt;br /&gt;End Sub&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;function showWait()&lt;br /&gt;{&lt;br /&gt;if ($get('myFile').value.length &amp;gt; 0)&lt;br /&gt;{&lt;br /&gt;$get('UpdateProgress1').style.display = 'block';&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;Then in the BODY section where you want the upload control you'll need this code:&lt;br /&gt;&lt;br /&gt;&amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;div&amp;gt;&lt;br /&gt;&amp;lt;asp:Label id=&amp;quot;lbl_Error&amp;quot; runat=&amp;quot;server&amp;quot; ForeColor=&amp;quot;Red&amp;quot; Font-Bold=&amp;quot;True&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;&amp;lt;asp:ScriptManager ID=&amp;quot;ScriptManager1&amp;quot; runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;br /&gt;&amp;lt;asp:UpdatePanel ID=&amp;quot;UpdatePanel1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;Triggers&amp;gt;&lt;br /&gt;        &amp;lt;asp:PostBackTrigger ControlID=&amp;quot;btnUpload&amp;quot; /&amp;gt;&lt;br /&gt;    &amp;lt;/Triggers&amp;gt;&lt;br /&gt;    &amp;lt;ContentTemplate&amp;gt;&lt;br /&gt;        &amp;lt;br /&amp;gt;&lt;br /&gt;        &amp;lt;asp:Label ID=&amp;quot;Label2&amp;quot; runat=&amp;quot;server&amp;quot; Font-Bold=&amp;quot;True&amp;quot; Text=&amp;quot;Upload a file to the website&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;       &amp;lt;asp:FileUpload ID=&amp;quot;myFile&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;        &amp;lt;asp:Button ID=&amp;quot;btnUpload&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Upload&amp;quot; OnClick=&amp;quot;UploadFile&amp;quot; OnClientClick=&amp;quot;showWait();&amp;quot; /&amp;gt; &lt;br /&gt;        &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;       &amp;lt;asp:Label ID=&amp;quot;lblMsg&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;            &lt;br /&gt;       &amp;lt;asp:UpdateProgress ID=&amp;quot;UpdateProgress1&amp;quot; runat=&amp;quot;server&amp;quot; &lt;br /&gt;            AssociatedUpdatePanelID=&amp;quot;UpdatePanel1&amp;quot;&amp;gt;&lt;br /&gt;            &amp;lt;ProgressTemplate&amp;gt;&lt;br /&gt;                &amp;lt;img src=&amp;quot;images/progressbar.gif&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;                &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;asp:Label ID=&amp;quot;lblWait&amp;quot; runat=&amp;quot;server&amp;quot; BackColor=&amp;quot;#0A416B&amp;quot; &lt;br /&gt;                    Font-Bold=&amp;quot;True&amp;quot; ForeColor=&amp;quot;White&amp;quot; &lt;br /&gt;                    Text=&amp;quot; Please wait ... uploading file &amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;            &amp;lt;/ProgressTemplate&amp;gt;&lt;br /&gt;        &amp;lt;/asp:UpdateProgress&amp;gt;&lt;br /&gt;    &amp;lt;/ContentTemplate&amp;gt;&lt;br /&gt;&amp;lt;/asp:UpdatePanel&amp;gt;    &lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;br /&gt;&lt;br /&gt;Again, don't forget that you can call your controls, labels, and functions whatever you want.  You can also format the fields any way you need in order to match the site you're working on.  Oh...almost forgot...here's the progress bar image I created that will display while the file is uploading.  Just right-click and save-as if you want to use mine or make your own if you don't like my dark blue progress bar.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_-44J1XFjJnc/SYtoNfp_aEI/AAAAAAAAACI/qIvB96waWOE/s1600-h/progressbar.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 213px; height: 15px;" src="http://2.bp.blogspot.com/_-44J1XFjJnc/SYtoNfp_aEI/AAAAAAAAACI/qIvB96waWOE/s320/progressbar.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5299443967576729666" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7757829973234847574-6423465298868026496?l=computeroverload.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computeroverload.blogspot.com/feeds/6423465298868026496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7757829973234847574&amp;postID=6423465298868026496' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/6423465298868026496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/6423465298868026496'/><link rel='alternate' type='text/html' href='http://computeroverload.blogspot.com/2009/02/aspnet-ajax-upload-control.html' title='ASP.NET AJAX Upload Control'/><author><name>Jim Hollis</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_-44J1XFjJnc/SE2gASAhMgI/AAAAAAAAAAQ/LroYN_Dk4jY/S220/jimhollis.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_-44J1XFjJnc/SYtoNfp_aEI/AAAAAAAAACI/qIvB96waWOE/s72-c/progressbar.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7757829973234847574.post-7029705299974504321</id><published>2008-06-11T14:44:00.000-07:00</published><updated>2008-07-07T12:51:59.222-07:00</updated><title type='text'>Save Your Stuff</title><content type='html'>I'm sure a lot of you are just like me and have an absolute ton of documents, music, and pictures stored on your computer. I have 21gb of digital pictures - that's 18,311 photos and 36.5gb of music - that's 13,258 songs.&lt;br /&gt;&lt;br /&gt;Trust me...when your hard drive crashes those things are going to be nearly impossible to re-create or recover. Notice I said WHEN not IF your hard drive crashes. Experience is a great teacher and one thing I've learned is that a hard drive failure doesn't have to cost you all your data. There are a couple of simple, relatively inexpensive things you can do to protect against data loss.&lt;br /&gt;&lt;br /&gt;First, separate your operating system from your data by adding a second hard drive. I can't count the number of computers that have been brought to me totally infested with viruses and/or spyware. Most are so bad that the only choice is to give it the big "format c:" and start from scratch. Unfortunately, that means whatever is on that drive is going the way of the dodo bird never to be seen again. Now if all the users data was on a separate drive, reloading the OS and programs fixes the virus/spyware problem with no data loss.&lt;br /&gt;&lt;br /&gt;I know what you're thinking...and yes you can do this to a system you already have. Yes, it is easier to get this set up when you either build or buy a new computer but is also very doable with an existing system. Most people use the default Windows location of My Documents to store all their documents, pictures, and music. This is very easily moved by right-clicking the My Documents folder, selecting properties, then clicking the move button and specifying the new location (i.e. the new hard drive). Those that don't use the default locations are familiar enough with using Windows Explorer to move the data to the new drive.&lt;br /&gt;&lt;br /&gt;An internal hard drive will only run you somewhere around $80. Of course you'll need to either know how or find someone that can install the drive in your computer.&lt;br /&gt;&lt;br /&gt;Second and in addition to the first item, protect your data with an external hard drive. This is really an affordable way to backup your data. You can get a Western Digital 500gb USB external hard drive for around $120. I have one that I use all the time and it is well worth the investment. Just a word of caution though. Do be careful with the drive when it is powered on. A friend of mine accidentally kicked his over while it was on and it killed the drive. The drive includes backup software or you can use Windows Backup to automate your backups if you don't want to rely on you remembering to periodically copy the stuff over.&lt;br /&gt;&lt;br /&gt;Yeah...I know you can use DVDs but when your trying to copy off nearly 60gb of data and a DVD only holds 4.7gb, that's 13 DVDs plus all the work splitting everything up so it will fit. To me it's just not worth the headache.&lt;br /&gt;&lt;br /&gt;With nearly everything being saved to your computer it doesn't make sense to leave things to chance and just hope your computer never crashes. So I hope I've inspired you - well, inspired is probably way too strong - but maybe I've at least got you a little bit interested in making sure you save your stuff.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7757829973234847574-7029705299974504321?l=computeroverload.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computeroverload.blogspot.com/feeds/7029705299974504321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7757829973234847574&amp;postID=7029705299974504321' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/7029705299974504321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/7029705299974504321'/><link rel='alternate' type='text/html' href='http://computeroverload.blogspot.com/2008/06/save-your-stuff.html' title='Save Your Stuff'/><author><name>Jim Hollis</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_-44J1XFjJnc/SE2gASAhMgI/AAAAAAAAAAQ/LroYN_Dk4jY/S220/jimhollis.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7757829973234847574.post-3398017674963935151</id><published>2008-06-11T10:03:00.000-07:00</published><updated>2008-06-11T13:38:28.535-07:00</updated><title type='text'>Cassette To MP3</title><content type='html'>We are now, of course, living in a digital age. Believe it or not, I still remember when records were popular (actually I still have some) and cassettes were the big thing in music. Now in the new digital world, CDs are the norm with media players quickly taking over. Now if you're like me and still have a ton of cassettes around and would like to have all that music on your MP3 player, you can make it happen without buying CDs or spending a fortune on music downloads. Here's how...&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;List of what you'll need&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Your cassettes&lt;/strong&gt; - these need to play well since what you hear is what you get.  Remember the old saying, "garbage in garbage out."  If you've got an old cassette that drags and cuts in and out, don't even try.  Toss it and get a CD.  Amazon or Ebay will have most anything and I've purchased from both many times - no worries there. &lt;/li&gt;&lt;li&gt;&lt;strong&gt;A cassette player&lt;/strong&gt; with RCA outputs&lt;/li&gt;&lt;li&gt;&lt;strong&gt;An RCA to 1/8" stereo cable&lt;/strong&gt; - available at Radio Shack for about $8&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Software&lt;/strong&gt; capable of capturing the input and saving it in MP3 format - I recommend &lt;a href="http://audacity.sourceforge.net/"&gt;Audacity&lt;/a&gt; (it works great and is free) which is what I will demonstrate in this article. Follow the installation instructions on their website to get the software installed. Don't forget to follow the steps necessary to enable saving files as MP3s.&lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;&lt;u&gt;Steps to make an MP3 file from a cassette&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Connect the RCA to 1/8" stereo cable to both the cassette player output and your computer's Line-In sound port.&lt;br /&gt;&lt;p align="left"&gt;&lt;a href="http://bp1.blogger.com/_-44J1XFjJnc/SFAi3zyEeaI/AAAAAAAAAAk/pTdUDAfO8Ak/s1600-h/TapeDeckRCA.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210703111056030114" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp1.blogger.com/_-44J1XFjJnc/SFAi3zyEeaI/AAAAAAAAAAk/pTdUDAfO8Ak/s200/TapeDeckRCA.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;a href="http://bp1.blogger.com/_-44J1XFjJnc/SFAjIYyKkbI/AAAAAAAAAAs/U26h1rW4iD8/s1600-h/lineincomp.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210703395866448306" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp1.blogger.com/_-44J1XFjJnc/SFAjIYyKkbI/AAAAAAAAAAs/U26h1rW4iD8/s200/lineincomp.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open the Audacity software, set the recording source to Line In, and push the Record button&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp0.blogger.com/_-44J1XFjJnc/SFAkgOvOjcI/AAAAAAAAAA0/rPJoFOeIPT8/s1600-h/audacity1.jpg"&gt;&lt;/a&gt;&lt;a href="http://bp0.blogger.com/_-44J1XFjJnc/SFAkszXPQbI/AAAAAAAAAA8/nd9-qSe0LOE/s1600-h/audacity1.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210705120988185010" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp0.blogger.com/_-44J1XFjJnc/SFAkszXPQbI/AAAAAAAAAA8/nd9-qSe0LOE/s320/audacity1.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Push Play on your cassette player (you are now recording the cassette to the computer)&lt;br /&gt;&lt;br /&gt;When the song is done, push Stop on your cassette player and then stop in Audacity&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp2.blogger.com/_-44J1XFjJnc/SFAmITSnYeI/AAAAAAAAABE/kxRM7-P5nuI/s1600-h/audacity2.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210706692926824930" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp2.blogger.com/_-44J1XFjJnc/SFAmITSnYeI/AAAAAAAAABE/kxRM7-P5nuI/s320/audacity2.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can then trim out the leading and ending silence in the song by simply highlighting the area you want to remove and then pressing Delete on your keyboard.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp1.blogger.com/_-44J1XFjJnc/SFAnzawiyiI/AAAAAAAAABM/NgPfoseK2Xg/s1600-h/audacity3.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210708533177403938" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp1.blogger.com/_-44J1XFjJnc/SFAnzawiyiI/AAAAAAAAABM/NgPfoseK2Xg/s320/audacity3.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you've never used Audacity, don't be afraid to play around. There are a number of effects you can apply to your recorded track. Select Effect from the menu and you'll see the list. Remember UNDO is a users best friend!!&lt;br /&gt;&lt;br /&gt;When you are ready to save your file, select File and then Export As MP3. You will then be prompted to give your song a file name and specify the save location. This is up to you but I would suggest putting it where the rest of your music is located. Once you decided on that, click Save.&lt;br /&gt;&lt;br /&gt;You will then be prompted to fill in the ID3 tag info. This is really an important step if you are anything like me and want the correct info (album art, artist, title, etc.) to show up when you play the file. Once you've filled in all the ID3 info, click OK to save your newly created MP3 file.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp1.blogger.com/_-44J1XFjJnc/SFAsDqBVYpI/AAAAAAAAABU/Bm2Bw6HaBrk/s1600-h/audacity4.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5210713210198778514" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp1.blogger.com/_-44J1XFjJnc/SFAsDqBVYpI/AAAAAAAAABU/Bm2Bw6HaBrk/s320/audacity4.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And...that's all there is to it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7757829973234847574-3398017674963935151?l=computeroverload.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computeroverload.blogspot.com/feeds/3398017674963935151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7757829973234847574&amp;postID=3398017674963935151' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/3398017674963935151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7757829973234847574/posts/default/3398017674963935151'/><link rel='alternate' type='text/html' href='http://computeroverload.blogspot.com/2008/06/cassette-to-mp3.html' title='Cassette To MP3'/><author><name>Jim Hollis</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_-44J1XFjJnc/SE2gASAhMgI/AAAAAAAAAAQ/LroYN_Dk4jY/S220/jimhollis.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_-44J1XFjJnc/SFAi3zyEeaI/AAAAAAAAAAk/pTdUDAfO8Ak/s72-c/TapeDeckRCA.jpg' height='72' width='72'/><thr:total>1</thr:total></entry></feed>
