<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.paradisesgarage.com:443/mcweb2/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Tech Support</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/34.aspx</link><description>Having problems with your computer or game? Discuss it here! We may even help you fix your computer!</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>upload few files and have them rename with rand() php coding</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/3533.aspx</link><pubDate>Tue, 07 Dec 2010 17:52:25 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:3533</guid><dc:creator>SnakZ</dc:creator><slash:comments>3</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/3533.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=3533</wfw:commentRss><description>&lt;p&gt;Ok para u always been the come to guy for things like this so how about u ? lol and any one who think they may know how to code this together &lt;/p&gt;
&lt;p&gt;I have 2 sites here that does what i need them to do but i dont know how to put the 2 codes together&amp;nbsp;&lt;img class="inlineimg" title="Frown" border="0" src="http://phpbuilder.com/board/images/smilies/frown.gif" alt="" /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;i got it to upload all files and used rand() to give the files a # but it ends up giving them all the same # lol so they&amp;nbsp;overwrite&amp;nbsp;them selfs lol&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This site shows how to upload mltiple fiels with php.&lt;br /&gt;&lt;a target="_blank" href="http://www.ehow.com/how_6345068_upload-multiple-files-php.html" rel="nofollow"&gt;http://www.ehow.com/how_6345068_uplo...files-php.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This site shows how to rename only 1 file uploaded with rand()&lt;br /&gt;&lt;a target="_blank" href="http://php.about.com/od/advancedphp/ss/rename_upload.htm" rel="nofollow"&gt;http://php.about.com/od/advancedphp/...ame_upload.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;i pray this is not to hard to do and if any one gets bored after words can you show how to block a file type from being&lt;br /&gt;uploaded ? like php/exe types&lt;br /&gt;&lt;br /&gt;PS)i would call my self a php newbe lol and ty you for your time and help&lt;br /&gt;&lt;br /&gt;Code from&amp;nbsp;&lt;a target="_blank" href="http://php.about.com/od/advancedphp/ss/rename_upload.htm" rel="nofollow"&gt;http://php.about.com/od/advancedphp/...ame_upload.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
&lt;div&gt;
&lt;div class="smallfont"&gt;&lt;blockquote style="overflow-x: scroll;"&gt;&lt;pre style="margin: 0px;"&gt;&lt;/div&gt;
&lt;pre dir="ltr" class="alt2"&gt;&amp;lt;form enctype=&amp;quot;multipart/form-data&amp;quot; action=&amp;quot;upload.php&amp;quot; method=&amp;quot;POST&amp;quot;&amp;gt; 
Please choose a file: &amp;lt;input name=&amp;quot;uploaded&amp;quot; type=&amp;quot;file&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt; 
&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;Upload&amp;quot; /&amp;gt; 
&amp;lt;/form&amp;gt; 


//This function separates the extension from the rest of the file name and returns it  
function findexts ($filename) 
{ $filename = strtolower($filename) ; 
$exts = split(&amp;quot;[/\\.]&amp;quot;, $filename) ; 
$n = count($exts)-1; $exts = $exts[$n]; 
return $exts; 
} 

//This applies the function to our file  
$ext = findexts ($_FILES[&amp;#39;uploaded&amp;#39;][&amp;#39;name&amp;#39;]) ;

//This line assigns a random number to a variable. You could also use a timestamp here if you prefer.  
$ran = rand () ; 
//This takes the random number (or timestamp) you generated and adds a . on the end, so it is ready of the file extension to be appended. 
$ran2 = $ran.&amp;quot;.&amp;quot;; 
//This assigns the subdirectory you want to save into... make sure it exists! 
$target = &amp;quot;images/&amp;quot;;
//This combines the directory, the random file name, and the extension 
$target = $target . $ran2.$ext; 
if(move_uploaded_file($_FILES[&amp;#39;uploaded&amp;#39;][&amp;#39;tmp_name&amp;#39;], $target)) { 
echo &amp;quot;The file has been uploaded as &amp;quot;.$ran2.$ext; } 
else { 
echo &amp;quot;Sorry, there was a problem uploading your file.&amp;quot;; 
}&lt;/pre&gt;
&lt;pre dir="ltr" class="alt2"&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;/pre&gt;
&lt;/div&gt;
The code from&amp;nbsp;&lt;a target="_blank" href="http://www.ehow.com/how_6345068_upload-multiple-files-php.html" rel="nofollow"&gt;http://www.ehow.com/how_6345068_uplo...files-php.html&lt;/a&gt;&lt;br /&gt;
&lt;div&gt;
&lt;div class="smallfont"&gt;&lt;blockquote style="overflow-x: scroll;"&gt;&lt;pre style="margin: 0px;"&gt;&lt;/div&gt;
&lt;pre dir="ltr" class="alt2"&gt; 
&amp;lt;form action=&amp;quot;upload.php&amp;quot; method=&amp;quot;post&amp;quot; enctype=&amp;quot;multipart/form-data&amp;quot;&amp;gt;
File: &amp;lt;input type=&amp;quot;file&amp;quot; name=&amp;quot;file[]&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;
File: &amp;lt;input type=&amp;quot;file&amp;quot; name=&amp;quot;file[]&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;
File: &amp;lt;input type=&amp;quot;file&amp;quot; name=&amp;quot;file[]&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;submit&amp;quot; value=&amp;quot;Upload&amp;quot;/&amp;gt;
&amp;lt;/form&amp;gt;



$destpath = &amp;quot;upload/&amp;quot; ;


while(list($key,$value) = each($_FILES[&amp;quot;file&amp;quot;][&amp;quot;name&amp;quot;])) {
if(!empty($value)){
f ($_FILES[&amp;quot;file&amp;quot;][&amp;quot;error&amp;quot;][$key] &amp;gt; 0) {
echo &amp;quot;Error: &amp;quot; . $_FILES[&amp;quot;file&amp;quot;][&amp;quot;error&amp;quot;][$key] . &amp;quot;&amp;lt;br/&amp;gt;&amp;quot; ;
}
else {
$source = $_FILES[&amp;quot;file&amp;quot;][&amp;quot;tmp_name&amp;quot;][$key] ;
$filename = $_FILES[&amp;quot;file&amp;quot;][&amp;quot;name&amp;quot;][$key] ;
move_uploaded_file($source, $destpath . $filename) ;
echo &amp;quot;Uploaded: &amp;quot; . $destpath . $filename . &amp;quot;&amp;lt;br/&amp;gt;&amp;quot; ;
}
}
}&lt;/pre&gt;
&lt;pre dir="ltr" class="alt2"&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>iTunes Install Error!!</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/3163.aspx</link><pubDate>Thu, 19 Nov 2009 13:44:20 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:3163</guid><dc:creator>Cash</dc:creator><slash:comments>2</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/3163.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=3163</wfw:commentRss><description>&lt;p&gt;I keep trying to install iTunes (for Windows 64-bit) and every time it gives me these errors.... (I&amp;#39;ve tried the 32-bit as well, same errors):&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.paradisesgarage.com/mcweb2/cfs-filesystemfile.ashx/__key/CommunityServer.Components.PostAttachments/00.00.00.31.61/iTunesHelper_2D00_Error-Message.jpg" style="max-height:217px;max-width:497px;" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.paradisesgarage.com/mcweb2/cfs-filesystemfile.ashx/__key/CommunityServer.Components.PostAttachments/00.00.00.31.62/iTunes_2D00_Error-Message.jpg" style="max-height:184px;max-width:424px;" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;any ideas on how to fix it?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Not this site but my own site with pop ups</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/2811.aspx</link><pubDate>Sun, 07 Jun 2009 15:48:56 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:2811</guid><dc:creator>SnakZ</dc:creator><slash:comments>1</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/2811.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=2811</wfw:commentRss><description>&lt;p&gt;maybe one of u pros can help me out with this &lt;/p&gt;
&lt;p&gt;http://98.231.227.19/Misc/Chinese_Astrology_new%201/Tiger/&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;now most if no every link on this page use a pop up and all use the same pop up window i want to know if there is a way that when u clack on a new link it will closs the old pop up and reopen it so that the pop up comes back to the top of the window with out u having to find the window&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;ty u for ur time :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Flash Chat Help</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/2752.aspx</link><pubDate>Thu, 02 Apr 2009 19:03:30 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:2752</guid><dc:creator>ParaDOX</dc:creator><slash:comments>0</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/2752.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=2752</wfw:commentRss><description>&lt;p&gt;Coming soon.. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>umm i think my steam has died</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1705.aspx</link><pubDate>Fri, 28 Mar 2008 23:52:16 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:1705</guid><dc:creator>tensa zangetsu</dc:creator><slash:comments>22</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1705.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=1705</wfw:commentRss><description>&lt;p&gt;When i got home from work today and turned on my computer i noticed an error message about my steam and it said &amp;quot;Steam.exe(main exception): ERROR: copying steam.exe to C:\DOCUME~1\USER\\LOCALS~1\Temp\steam2 failed, Win32 Error 5 &amp;quot;Access is denied&amp;quot;&amp;quot; so i clicked ok then tried to start up steam again. Then the steam updater popped up and got to about 30% then it dissappeared and the&amp;nbsp;error message popped up again after a bit. So then i restarted my comp and the error message still popped up so i have no idead what to do other than to try and re download steam.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>there is something wrong with my half-life 2</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1377.aspx</link><pubDate>Thu, 08 Nov 2007 01:15:09 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:1377</guid><dc:creator>tensa zangetsu</dc:creator><slash:comments>2</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1377.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=1377</wfw:commentRss><description>&lt;p&gt;for the past couple of days i have been trying to play half-life 2 and counter-strike source but everytime i try the game crashes and i get an engine error saying &amp;quot;failed to lock vertex buffer in CMeshDX8::LockVertexBuffer&amp;quot;. After i click ok another thing pops up sayin hl2.exe application error &amp;quot;The instruction at &amp;quot;0x241f94f7&amp;quot; referenced memory at &amp;quot;0x0e8af41c&amp;quot;. The memory could not be &amp;quot;read&amp;quot;. Click on OK to terminate the program.&amp;quot; I have uninstalled half life 2 completely off my computer and the reinstalled it from scratch and i still get this error so i just don&amp;#39;t know what else i can do to try and fix it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Some Servers not showing up on the Steam Master Server List - Redux</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1200.aspx</link><pubDate>Mon, 27 Aug 2007 19:10:49 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:1200</guid><dc:creator>ParaDOX</dc:creator><slash:comments>1</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1200.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=1200</wfw:commentRss><description>&lt;font size="2"&gt;
&lt;p&gt;I am re-posting this here so that anyone else having similar&amp;nbsp;issues may learn from this. &amp;nbsp;This was originally posted to the HLDS Mailing list. I&amp;#39;ll post the replies as they come in.&lt;/p&gt;
&lt;p&gt;-------------------------- Original content -----------------------&lt;/p&gt;
&lt;p&gt;Yeah I know this subject has been done to death! I am also familiar with all the common problems. &lt;/p&gt;
&lt;p&gt;I have tried all the tried and true techniques for resolving this. It is most likely caused by the new firewall I just implemented. But I want to know why!&lt;/p&gt;
&lt;p&gt;Servers:&lt;/p&gt;
&lt;p&gt;3 HP Proliant DL 380 G3 (full specs available if required)&lt;/p&gt;
&lt;p&gt;1. HLDS x 4 - 67.93.155.120:27015 &amp;lt;-- Connected to the DMZ, This one shows up on the SMSL&lt;/p&gt;
&lt;p&gt;2. HLDS x 5 - 67.93.155.126:27015 &amp;lt;-- LAN NAT to WAN does not show up on SMSL&lt;/p&gt;
&lt;p&gt;3. HLDSS x 4 - 67.93.155.119:27015 &amp;lt;-- LAN NAT to WAN does not show up on SMSL&lt;/p&gt;
&lt;p&gt;Never mind the performance and bandwidth, it all works great.. Or used to, read on...&lt;/p&gt;
&lt;p&gt;Oh yeah, please don&amp;#39;t state the obvious solution, put them all on the DMZ! I want them all on the LAN, They should and did work on the LAN before the firewall was changed. The DMZ is being used as a test case.&lt;/p&gt;
&lt;p&gt;All servers are playable if you connect manually or have them on your Favorites list.&lt;/p&gt;
&lt;p&gt;Firewall:&lt;/p&gt;
&lt;p&gt;Sonicwall Pro 3060 with Enhanced OS - &lt;/font&gt;&lt;a href="http://www.sonicwall.com/us/PRO_3060.html"&gt;&lt;u&gt;&lt;font color="#0000ff" size="2"&gt;http://www.sonicwall.com/us/PRO_3060.html&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;3 Security Zones&lt;/p&gt;
&lt;p&gt;LAN - &amp;gt; all outbound traffic allowed&lt;/p&gt;
&lt;p&gt;WAN &amp;lt; - All inbound blocked except for UDP and TCP ports 27000 - 27050&lt;/p&gt;
&lt;p&gt;DMZ &amp;lt; - All inbound blocked except for UDP and TCP ports 27000 - 27050&lt;/p&gt;
&lt;p&gt;The NAT is configured to allow all traffic transparently to the specified host on the LAN. The same firewall rules are used on the DMZ and LAN to control what ports are open to the WAN. &lt;/p&gt;
&lt;p&gt;For a full list of the other ports and servers use Game Monitor:&lt;/p&gt;
&lt;p&gt;&lt;/font&gt;&lt;a href="http://www.game-monitor.com/search.php?search={MC}&amp;amp;type=server"&gt;&lt;u&gt;&lt;font color="#0000ff" size="2"&gt;http://www.game-monitor.com/search.php?search={MC}&amp;amp;type=server&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;They don&amp;#39;t all show up using Game tiger however:&lt;/p&gt;
&lt;p&gt;&lt;/font&gt;&lt;a href="http://www.gametiger.net/search?server=%7BMC%7D&amp;amp;game=all"&gt;&lt;u&gt;&lt;font color="#0000ff" size="2"&gt;http://www.gametiger.net/search?server=%7BMC%7D&amp;amp;game=all&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;Notice only the one IP shows up. All the servers are configured similarly and some have been up for years without issues. &lt;/p&gt;
&lt;p&gt;It seems like Game Monitor caches the server list and will continue to ping and report a server as being up as long as it still replies regardless of the SMSL (Steam Master Server List) It looks at the SMSL for new servers and will only show a server if it is first on the SMSL.&lt;/p&gt;
&lt;p&gt;Game Tiger will only show servers that show up on the SMSL.&lt;/p&gt;
&lt;p&gt;The server on the DMZ shows up fine and has a steady population. The servers on the LAN do not.&lt;/p&gt;
&lt;p&gt;Using the built in connection monitor I see all the servers connecting the SMSL servers and they pass the same amount of data back and forth. I would need to use a packet sniffer to get more precise.&lt;/p&gt;The purpose of this post is to better understand the way the HLDS servers communicate with the Steam master servers. If it is the firewall causing the problem I need to be able to explain exactly what the problem is to the firewall manufacturer so they can fix it. I have read (several times) The Master Server Protocol located here: &lt;/font&gt;&lt;a href="http://developer.valvesoftware.com/wiki/Master_Server_Query_Protocol"&gt;&lt;u&gt;&lt;font color="#0000ff" size="2"&gt;http://developer.valvesoftware.com/wiki/Master_Server_Query_Protocol&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; and numerous other documents. I understand what should be happening, just not sure why it isn&amp;#39;t.&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;Previously, I had a Sonicwall Pro 230 and all the servers showed up fine from the LAN using NAT and similar rules. I upgraded for better performance and more features, plus regular updates. They stopped supporting the older one.&lt;/p&gt;
&lt;p&gt;I hope this is clear enough to follow. Let me know what needs clarification. &lt;/p&gt;
&lt;p&gt;I hope that this can help others that may have issues with servers showing up the SMSL as well.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mike ParaDOX&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/font&gt;&lt;a href="http://www.paradisesgarage.com/mcweb2/tiny_mce/jscripts/tiny_mce/www.paradisesgarage.com"&gt;&lt;u&gt;&lt;font color="#0000ff" size="2"&gt;www.paradisesgarage.com&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Illustrator CS2 and Vista</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1112.aspx</link><pubDate>Thu, 09 Aug 2007 00:29:33 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:1112</guid><dc:creator>Troop</dc:creator><slash:comments>0</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/1112.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=1112</wfw:commentRss><description>&lt;p&gt;Hello! I&amp;#39;ve noticed when I open up Adobe Illustrator CS2 in Vista, I have problems. What kind of problems? My mouse cursor jumps when I click, moving to a different location. It also glitches around and it&amp;#39;s just unworkable. Now, I found a fix. I&amp;#39;d like to tell you that fix. If you order my book today, you can have all your problems fixed, and a special money back guarantee. All you have to do is call now!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Just kidding. Seriously though, if you&amp;#39;re having this problem this is what you do:&lt;br /&gt;&lt;br /&gt;Right click a Illustrator CS2 shortcut&lt;br /&gt;click Properties&lt;br /&gt;go to the compatibility tab&lt;br /&gt;check off &amp;quot;Run this program in compatibility mode for: Windows XP (Service Pack 2)&amp;quot;&lt;br /&gt;check off &amp;quot;Disable desktop composition&amp;quot;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve down this, and it&amp;#39;s completely workable. I&amp;#39;ve noticed two things that happen: My resolution got larger, the text got smaller and all my windows got smaller because of it, it will only keep this resolution untill you X out of illustrator.&lt;br /&gt;Your desktop theme will change to Windows Vista Basic (mine goes from black to a light blue, because I changed the color of my basic windows vista theme). Once again, it goes back to normal once you X out of Illustrator.&lt;/p&gt;
&lt;p&gt;I hope this helps somone.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Internet Explorer Bar</title><link>https://www.paradisesgarage.com:443/mcweb2/forums/thread/713.aspx</link><pubDate>Mon, 07 May 2007 23:07:59 GMT</pubDate><guid isPermaLink="false">b2ff3ccb-892e-4ceb-9a77-e4f6e73f7f60:713</guid><dc:creator>Troop</dc:creator><slash:comments>5</slash:comments><comments>https://www.paradisesgarage.com:443/mcweb2/forums/thread/713.aspx</comments><wfw:commentRss>https://www.paradisesgarage.com:443/mcweb2/forums/commentrss.aspx?SectionID=34&amp;PostID=713</wfw:commentRss><description>&lt;p&gt;Hey guys, just got my modem replaced- this one is cool and &amp;quot;stealthy&amp;quot; looking. So anyways, when they installed it it changed most of my IE settings and one of the things it did was up ont he main bar put &amp;quot;Windows Internet Explorer provided by Comcast&amp;quot; on it. So how do I get rid of the stupid &amp;quot;provided by Comcast?&amp;quot; I looked under Tools&amp;gt;Internet Options but couldn&amp;#39;t find anything.&lt;/p&gt;
&lt;p&gt;No, I won&amp;#39;t switch to firefox, get over it and don&amp;#39;t make any smart remarks about it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>