Sunday, November 29, 2009

IE Search bar keeps vanishing?

My internet explorer search bar keeps vanishing for



several days. This time it has been gone for two weeks.



I can't find out anything in the help topics. I use



win xp. IE 6.0



What is going on?



IE Search bar keeps vanishing?windows xp home





If you are using IE (and really, why haven't you switched to Mozilla Firefox?) and you don't have a Yahoo toolbar, then go to Internet Options, go to Contents tab, Click on Autocomplete and Clear Forms.



If you have Mozilla (congrats, you have a safer and more stable browser), just go to Tools/Options/Privacy/Saved Forms and clear forms.

IE & Firefox, HTML Hell! Please help!?

I have noticed that IE and Firefox both display a webpage differently, espicaly when it comes to java scripts. is there a site out that anybody knows of that will display sample java script code for both browsers?



Better yet, does anybody know of any sites that sample code compatible for both browsers?



IE %26amp; Firefox, HTML Hell! Please help!?windows 98





I'd say you just need to go find a good resource for learning Javascript so you can learn the differences. Another option would be to use a Javascript library such as Prototype, jQuery, or Yahoo's own YUI. These solve the cross-browser problem but also make coding easier.



IE %26amp; Firefox, HTML Hell! Please help!?microsoft support internet explorer



There is really no getting around installing Firefox, Mozilla, and IE, at least, and testing every page and every change on all three.



Yes, there are web sites that will test your code. I don't know how accurately any of them are at testing your Javascript. Sorry, but I no longer have links to them.
This is a typical cross browser compatibility issue. What is the error that you are looking at?



Any specific JavaScript or HTML rendering DIV capabilities?

IE Defender?

Help! I have some spyware on my PC called IE Defender and there's also some trojan horse thing! Please tell me a good anti-spyware thing to protect me from it! Oh and by the way, it got past Norton!



IE Defender?windows firewall





IEDefender is a rogue anti-spyware application that displays exaggerated security alerts difficult to close in an attempt to trick you into purchasing the full IEDefender version.



Your web browser is hijacked and will display a fake error message in order to confuse you into believing it鈥檚 coming from the search engine itself. IE Defender error message states that you鈥檙e infected with spyware and that you need to download IEDefender to solve your problem. This is not true. IE Defender is trying to trick you into purchasing the full version of the product. Remove IEDefender as soon as possible. In the link I'm providing, you may read all about IEDefender and the instructions to remove this rogue anti-spyware.good luck.



Source(s):



http://www.spyware-techie.com/iedefender...



IE Defender?microsoft frontpage internet explorerThis is the best advice!! It did it yesterday and it worked like a charm. Great stuff!! Report It


This will remove IE defender, free.



http://www.superantispyware.com
IEDefender is an extremely dangerous rogue software created by programmers from Russia. It may be installed manually (from www.iedefender.com) or using security holes. Once the IEDefender is installed, it will start showing fake security messages that your system is in danger and will trick you into buying its full version. IEDefender may steal your secret information (passwords, credit card numbers, PayPal accounts). IEDefenders work may damage Windows registry and cause system slowdowns and crashes. It may be difficult to remove IEDefender manually because it loads on every Windows startup and has an ability to renew itself if you try to remove it.



--



here are manual removal instructions
I had the same problem a week ago.



What G4Acre is saying is correct



I did it...cleaned my whole computer....and downloaded FireFox for my browser.



MAKE sure you do it in safemode



its not going to work if you don't



Have fun!

IE 7 - Certain Sites Not Working?

I recently downloaded IE 7 and I've noticed some of my favourite sites no longer show properly.



http://celestial-star.net/



That is one of the few that do not show.



How can I sort this problem?



Ty.



IE 7 - Certain Sites Not Working?microsoft net framework





Get rid of IE use Firefox instead. Firefox loads this page on my road runner in less than 2 sec!



IE 7 - Certain Sites Not Working?windows xp themes internet explorer



This might be trying to protect your computer. If might not let you go on some "questionably un-secure" sights. This is to prvent phishing, viruses, trojan highjackers, etc.
you're right, the site you provided us with doesn't work with IE 7.0 but real fine with FireFox 2.0



so dump IE 7.0 and switch to firefox!!!



no just kidding, you have to keep IE 7.0 even if it stinks.



My piece of advice : use firefox everytime you can and IE 7.0 only when you can't do otherwise (ie microsoft updates need IE 7.0 or websites with activeX require IE ... but there are getting fewer and fewer)

IE 7 issues with Windows XP security issues published 02/12/2007?

My computer auto-installed the Windows XP security updates that were published on 02/12/2007. Now Internet Explorer 7 does not work, showing me the "Internet Explorer cannot display the webpage" message. I am fully connected to the internet so that is not the problem. Any suggestions on how to fix my problem with IE 7?



Here are the updates that were installed:



Security Update for Windows XP (KB928255)



Update for Windows XP (KB931936)



Security Update for Windows XP (KB924667)



Security Update for Windows XP (KB928843)



Security Update for Windows XP (KB927779)



Security Update for Windows XP (KB927802)



Security Update for Windows XP (KB918118)



Security Update for Windows XP (KB926436)



Thanks!



IE 7 issues with Windows XP security issues published 02/12/2007?windows vista ultimate





All of those Updates are ligitimate updates. They are not causing your problem.



Try cleaning your Browsers Cache by deleting the Cookies, Temp Files and History in Internet Options.



IE 7 issues with Windows XP security issues published 02/12/2007?default browser internet explorer



I honestly don't know if this will fix it, but take a look at your Content Advisor. If it is on, turn it off.



You can find your Content Advisor settings by going to Tools %26gt;%26gt; Internet Options %26gt;%26gt; Content.



If it is currently enabled, disable it and try browsing again.
check your start up group . under tabs .it may have went to original default .
I have an almost identical problem. I installed the same 8 UPDATES but one is KB 931836 instead of 931936.Also my updates showed 2 additonal ones that you did not mention. KB 928090 and 890830. I did a system restore back to Feb 5th and now all is ok . I am afraid to reinstall them. Did any of the suggestions posted here work ?



Thanks



Peter

Ajax works on IE but not on Firefox - Newbie?

Tried to use ajax to show a string from html #2, but the code only works on IE and not on Firefox (nothing has came out, not even an error). The code is on a localhost (IIS). Below is the js code in the html #1 header.



%26lt;script type="text/javascript"%26gt;



function ajax_test() {



var obj = "test";



var server_page = "abc.htm"; //contains string only



var xmlhttp = false;



try {



//for javascript ver. %26gt; 5



xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");



} catch (e) {



//for older version



try {



xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");



} catch (E) {



//for non IE browsers



xmlhttp = false;



}



}



if (!xmlhttp %26amp;%26amp; typeof XMLHttpRequest != "undefined") {



xmlhttp = new XMLHttpRequest();



}



xmlhttp.open("GET", server_page);



xmlhttp.onreadystatechange = function() {



if (xmlhttp.readystate == 4 %26amp;%26amp; xmlhttp.status == 200) {



document.getElementById(obj).innerHTML = xmlhttp.responseText;



}



}



xmlhttp.send(null);



}



%26lt;/script%26gt;



Plz help



Ajax works on IE but not on Firefox - Newbie?windows vista ultimate





It looks good... anyway I'll change this fragment:



if (!xmlhttp %26amp;%26amp; window.XMLHttpRequest)



xmlhttp = new XMLHttpRequest();



When you are in these situations, try to put some alert('Debug message...') around, to be sure on what is really ran.



Ajax works on IE but not on Firefox - Newbie?default browser internet explorerThe problem has been solved. The solution is to replace xmlhttp.readystate with xmlhttp.readyState. Report It

Offline pages with IE 7.0?

I'm not really sure how to add a page to my computer so i can see it even when im not on the internet, i use to be able to do it with IE 6.0 but i just got the new IE and i can't figure out how to do it! plz help



Offline pages with IE 7.0?windows xp sp2





I didn't know this untill you asked but IE help reports:



The offline viewing feature has been removed from Internet Explorer. For information, see What happened to offline favorites?



The offline favorites feature has been removed from Internet Explorer. If you want to read web content offline, here are a couple of different ways to do it:



Subscribe to an RSS feed. Many websites offer content as feeds, which can be downloaded and read offline. For more information about feeds, see Using feeds (RSS).



Save a webpage as a web archive (MHT) or HTML file. For more information, see Save a webpage on your computer.



Related Topics



Offline pages with IE 7.0?microsoft sql server internet explorer



on the menu bar..



file%26gt;work offline

Ie -firefox-msn whatbetter?

I HAVE IE 7 %26amp;VISTA



Ie -firefox-msn whatbetter?microsoft net





I used IE for 12 years and never going back Firefox is a lot better. If you ever find a website that won't load properly on Firefox you can install IE Tabs.

IE Properties-Programs-CALENDAR info is missing and will not let me input anything. Help??

My computer crashed and I had to reload from my recovery disk. In IE the Calendar info is missing and I keep getting a msg telling me that, but no info on how to fix it.



IE Properties-Programs-CALENDAR info is missing and will not let me input anything. Help??microsoft zune





Are you getting a " Missing .DLL error message when trying to run calendar after Windows XP installation ? This is a possible solution.



- Copy the following files from " M\CALENDAR " to " C\CALENDAR "



(1) - CALRES32.DLL (2) - MFC30.DLL (3) - MFCAN32.DLL



(4) - MFCO30.DLL (5) - MFCUIA32.DLL



Or, failing that, try running " Calendar set-up program" again. If the Calendar still won't open, run the Internet Explorer set-up program again to install missing files. That's all I can come up with. I hope you get your problem resolved.

Comment revenir a IE 6?

Windows update m'a install茅 IE 7 et je n'aime pas du tout cette version. Je voudrai revenir a IE 6, comment est-ce possible?



Merci d'avance



Comment revenir a IE 6?windows mail





Go to START%26gt;CONTROL PANEL, click ADD/REMOVE PROGRAMS, find and click on WINDOWS EXPLORER 7, click CHANGE/REMOVE.



This will revert your system back to IE-6.0



Comment revenir a IE 6?microsoft maps internet explorer



C'est possible. Pour obtenir IE 6, employez ce lien et serrez le t茅l茅chargement.



how is my french?
Aller 脿 l'ajouter/enlever le panneau de commande de programmes, 锚tre s?r de v茅rifier la ? exposition met 脿 jour ? la bo?te, et la b锚ta volont茅 d'IE 7 apparaissent comme mise 脿 jour finale de Windows. Uninstall il en cliquant l脿-dessus, puis sur le bouton. Vous revoyez quelques messages que vos arrangements sont chang茅s, et par la suite vous devez remettre en marche votre ordinateur. Quand cela est fait vous avez votre vieux dos d'IE 6.



======================================...



Go to the Add/Remove Programs control panel, be sure to check 'Show updates' box, and the IE 7 beta will appear as the final Windows update.



Uninstall it by clicking on it, then on the button. Again you see a few messages that your settings are being changed, and eventually you have to restart your computer. When that's done you have your old IE 6 back.

Can i download IE for window 98 and install without internet connection ?

can i download IE for window 98 and install without internet connection ? i don't have internet connection at home, i download it at office .i just need it(IE) to install my printer driver, not to explore internet .



Can i download IE for window 98 and install without internet connection ?windows mobile





IE 6 is on you windows 98 disk



your printer comes with a driver disk use that



or do you mean you downloaded the printer driver on your works pc and want to transfer it to a disk /floppy or usb pen drive



then yes you can



Can i download IE for window 98 and install without internet connection ?www.microsoft.com internet explorer



You can download with Cd....... Pls try
yes just buy cd tht have this option



ebay.com
IE is an integral part of windows and cannot be downloaded separately. An internet connect is required to open it.
If you have windows 98 disk it is on there. You can install it there is no need to be on internet. install and do not set up and work off line.
Without the internet the ONLY way you can install anything is on disk.

Should I remove IE 7 and use an older version an older Mozilla to speed up my slow internet?

Version 7 of IE uses way to much memory for my slow computer.



I want to know if it is unsafe to use an older version of IE or Mozilla. All I want is the tab feature, but IE7 is very slow for some reason.



Should I remove IE 7 and use an older version an older Mozilla to speed up my slow internet?windows xp professional





FireFox is SO much faster than IE anyways.



=)



Go with Mozilla.



Should I remove IE 7 and use an older version an older Mozilla to speed up my slow internet?windows xp home internet explorer



Absolutely. :) Using Internet Explorer at all is generally not a good idea anyway, for several reasons.
You cannot increase your sloww internet connection by simply degrading your softwares. You have to use advanced browsers for a quicker web access. The reason for your slower speed may be that since you installed it there is nothing in the cache memory. Use it for sometime and you will feel the difference.



Or try Firefox or Opera before uninstalling IE7.
I use Firefox as my default browser, but I did not remove IE7 (I don't think you can anyway).



Sometimes I find things online that FF can't handle, so I can still use IE7 in those cases.



I don't see a lot of difference in speed- must be something in your settings, or maybe memory is not enough?
If your running Windows Vista, you can't remove IE 7. But if your running XP or older...



Run some spyware scans, make sure nothing is bogging your computer down; also check "tools -%26gt; manage Add-ons". Too many plug-in's such as toolbars can slow your browser down. The reason your IE is slow, is most likely because of the built in "Phishing filter", make sure that's disabled. If you have Norton, they also install this phishing filter thing on your IE, disable those any other plug-ins that you don't use. The only time IE was slow for me was when I had a internet TV toolbar, after I disabled it, IE was smooth.



You don't have to read the rest, but it explains why I think IE is faster.



From my experience, IE is actually a bit faster than Firefox. If you do use Firefox, I think you'll find that it uses more memory than IE running the same content (check by using your Task Manager, accessed from ctrl+alt+del).



IE is a bit faster, particularly because of the pre-fetech feature. I'm not sure if Windows still does this, Windows has in the past used a feature called Pre-fetch to partially start certain programs such as IE and Media Player even before you manually chose to start them, so they'll start faster and etc, so that's why IE is a bit faster.



Now if you only want the tab feature, I believe our very own Yahoo has a toolbar or plug-in for IE 6 that adds the tab feature. So you might want to downgrade back to IE 6, and then get the Yahoo toolbar.
I don't have a problem with IE7.



Your problem may lie elsewhere. Maybe some housecleaning is in order:



1. Set wallpaper and screensavers to blank or none 鈥?they run continuously in the background and use memory.



2. Review your start menu 鈥?remove anything you don鈥檛 need on a daily basis 鈥?load games, etc. on an as-needed basis.



3. From Internet Explorer, sign out 鈥?then click Tools, Internet Options: delete cookies, delete files (offline), and clear history. (You can also set days to store history to 0.)



----- These actions will clear your computer鈥檚 cache. (For a description of cache, go to http://help.yahoo.com/l/ph/yahoo/mail/ac... )



4. Run Disk Cleanup, Scandisk, Defrag at least every two weeks (the more frequently they are run, the less time they take).



5. Periodically, click Start, Programs, Run 鈥?they type ipconfig renew



(that鈥檚 ipconfig space renew).



6. This will show you how to optimize your PC鈥檚 performance.



http://www.microsoft.com/windowsxp/using...



These things should increase speed and free up memory as much as possible.



****************************

IE 6 question?

i have IE 7 but i need to have IE6 in order to do my website how do i downgrade or un update it so that i can use IE6



IE 6 question?nintendo ds browser





Go to add remove UN install IE7 you will get IE6 automatically.



IE 6 question?windows 98 internet explorer



uninstall IE 7 and install IE 6
You cannot run both from the same machine.. Keep IE 6 and install mozilla firefox 2.0. Its better than IE 7 and it wont interfere with IE 6.
Just go into add/remove in the control panel and remove IE 7. And you'll get IE 6 back.
my suggestion is not to remove IE7, but to see if you can install IE6 to a different directory (.../program_files/IE6a...) or something like that.
actually, you CAN run both on the same machine, but you have to use something like Virtual PC to run it.

Firefox and IE is messed up!?

Hello. While using Firefox and IE it keeps saying server not found on firefox and The page cannot be displayed on IE. Its really annoying as it logs me out of games! My internet connection works perfectly on my laptop so i dont think its that. When it breaks i click try again or refresh and it works for a few minutes then it does it again. anyone know why it does this and does anyone know how to fix it?



Firefox and IE is messed up!?microsoft templates





It sounds like your computer isn't configured correctly. If you're using Vista, right click the little network icon in the bottom right and choose "Diagnose and repair"



Firefox and IE is messed up!?windows firewall internet explorer



If you are talking about Yahoo Games, their servers suck, freezes and boots people randomly.



Otherwise you might need some virus scans or spyware scans.
Try the following



goto run and type cmd (it open command prompt window)



then type ping yahoo.com



after the process have look at ping statistics. if it showz 0% loss, then problem might b with some settings or explorer itself..



otherwise u have problem with your connection...(low bandwidth etc..)
Seems like you have a bad URL (trying to send you to a page or server that is not there). Can you post it, or tell how you got it?



Could anyone have installed some kind of censorship on your computer or ISP?

Where to get outdated IE browsers and IE with CSS?

I'm working on a site using CSS for my company, and found that when I used the computers at work (with ancient Internet Explorer versions) the perprortions are entirely wrong to the point that the website is nonfunctional.



So my first question: Do all IE versions support CSS?



and second: Where can I download outdated IE browsers to check my work on?



Where to get outdated IE browsers and IE with CSS?windows xp pro





not sure about your css question, but you'll find old versions here... http://www.oldversion.com/



Where to get outdated IE browsers and IE with CSS?microsoft net framework internet explorer



I've found this site to be helpful:



http://www.thesitewizard.com/webdesign/m...
Well i think you mean RSS but the only safe place i would trust to download any IE are from microsoft themselves. I would think their site archives the older versions but I'm not sure

Problem with IE-FF-Opera/Facebook?

Hello



At home, I have no problem on FB, with IE, FF, or Opera.



But at work, with the 3 navigators, I can't click on button.



Exemple, the button "more" to see the applications.



I can view messages but can't replay, the button "send" doesn't work.



And with some applications, the "next", "buy" or others buttons doesn't work too.



The error ont he page at arriving :



Line 401



Char 105



Error : Expected ";"



Code 0



URL: http://www.facebook.com/home.php?



Line 10



Char 1



Error : Object expected



Code 0



URL: http://www.facebook.com/home.php?



Line 9



Char 1



Error : Object expected



Code 0



URL: http://www.facebook.com/home.php?



Line 9



Char 1



Error : "bagofholding" is undefined



Code 0



URL: http://www.facebook.com/home.php?



Line 55



Char 1



Error : Object expected



Code 0



URL: http://www.facebook.com/home.php?



Same problem with Yahoo/Answer



And on IE, I have not rights to change options.



Problem with IE-FF-Opera/Facebook?microsoft exchange





could be that at work access to the web is filtered and some sites are restricted

Behavior in litigation in criminal course ie investigation laypeople, judge?

If you have a bad feeling about a layperson opening evidence for malice against a victim credibility with or without a judge suponea evidence ... could be held liable for damaging fraternisation.. ie landlords, landlord familys(of pursuant) also opening sealed records of minor transmissions of files to and from state or local agency employee IE CVB or , POLICE or insensitive behavior ie employment workplace...WHAT TO DO? finding things in common with proceedings



ie four ajournments so far......



Behavior in litigation in criminal course ie investigation laypeople, judge?windows server 2003





The whole bunch should be in jail

Why am I able to use firefox but I can't use IE? I do not want firefox! Help! 10 points?

I installed firefox and made it my default browser because everyone said it was better than IE. But I just don't like firefox. I like IE better. Before I installed firefox IE was working fine and I was able to use IE with no problems. But after I installed firefox I noticed that IE was no longer working right. Like whenever I open just 1 page on IE like 53 pages will automatically open, and I can't go to any websites on IE because I just get a message that says "application not found" whenever I try. All I can do is click links on the home page (yahoo) and go to the subsequent sites (like yahoo answers, where I am now). I uninstalled firefox, did a virus scan (which detedted no viruses), and attempted to do several system restores, but each time I got a message saying that the system settings could not be resored. So what do I do to fix IE? Please someone help me! 10 points.



Why am I able to use firefox but I can't use IE? I do not want firefox! Help! 10 points?microsoft live





why in the world would you want to use ie. firefox rules



Why am I able to use firefox but I can't use IE? I do not want firefox! Help! 10 points?microsoft internet explorer internet explorer



You need serious help.
IE %26gt; Tools %26gt; Internet Options %26gt; Programs tab %26gt; click "Reset web settings" %26gt; Yes %26gt; check "IE should check to see whether it is the default browser".
Do you know what version of firefox it is? B/c version 3 just came out, and it's still in Beta Testing, so it probably still has a lot of bugs. If nothing you can think of works, you might want to go to Microsoft's website and download the full version of IE7. But before you install it, uninstall the Microsoft IE that's on your comp. Then download the SETUP for firefox (http://www.mozilla.com/en-US/firefox/) DO NOT install it. leave it alone for now. after you have downloaded the IE7 Setup files, uninstall firefox BUT DO NOT DELETE THE SETUP FOR FIREFOX!!!! by now, you should have no web browser. now, try to install IE7. if it works, you're good to go. If not, you still have the firefox set up. install fire fox, and try to find another way to do your browsing (i.e. try netscape or some other free web browser) if all else fails, email microsoft, maybe they can help you.
System restore Hardly resolves such a problem.IE is a LEGEND In Quality Performance/offers advance security enhahancements and provides detailed security related threats..etc. to microsoft something far from Firefox.Internet Explorer deserves Default position and there are GOOD reasons to support that.Currently your IE and Out look express are NOT configured..Check this out at windows Help and Support Center through the Start Menu%26gt;then Click Network Diagnostics to view current status. Try these steps to solve the problem. Go to Internet Options then reset your websetings to their IE original Values before you connect your computer to the internet then launch IE after set up.If this did not turn out as expected, then you should download and install another IE .During installation IE installation wizard will set up and correct all errors.Ensure correct drive installatin and avoid corrupting files.That should solve your problem.............Good luck.

How do i get IE to save a media file into the Temporary Internet Files on Vista?

I'm new to and am currently using Vista. I realised that IE does not download media files into the temporary internet folders. I've checked the folders and even increased the disk space. I really think it's becos of my IE settings somehow. Its very inconvinient when i want to listen to mp3 or wma online. Becos buffering is just so slow. If IE is able to download the file temporary, then i wouldn't need to wait so long. Can somebody advise on this? Thanks.



How do i get IE to save a media file into the Temporary Internet Files on Vista?microsoft powerpoint





check out this site as it may be able to answer your questions, many tips %26amp; hints for new people on vista



www.howtogeek.com



site is updated often



How do i get IE to save a media file into the Temporary Internet Files on Vista?windows xp sp2 internet explorer



OK it seems to be a problem with your IE in Vista but if you can download the full mp3 or wma file without listening %26amp; buffering it will be good.



For downloading use this



Right click on the song name then you will see a option such as SAVE AS TARGET give a place which you can access eaisly by this way the file will get downloaded to a place where you want it to be.



But on a slow connection speed it will take too much of time depending on the size (MB) of the song.

Come back IE 6!?

My boyfriend downloaded IE 7 on our laptop (probably because a shiny flashing ad told him too) and it sux. I want to uninstall it and download IE 6 again. Is there any way to do this?



Come back IE 6!?windows media player 10





The right answer is to go into the control panel and add/remove programs then remove Windows internet explorer 7.0 but there are fine details that you need to know.



Reboot the pc first and make sure no other software is running when you remove IE7. Close any extras you have runing in the system tray (by the clock) if you can and then do the uninstall.



Uninstalling IE7 rolls the PC back to IE6 automatically after the reboot. Make sure you reboot as soon as the uninstall is done. Once it reboots then you should be ok.



Do not use the system restore function to remove IE7. I have seen more than 2 dozen XP PC's come in the shop that have the OS trashed from using system restore to remove IE 7. For some reason they don't get along all the time and you end up with a mess. I don't know what people are doing to cause this as they are already trashed when I get them. Since MS has been pushing IE7 through the automatic update function, there have been tons of problems. You can go to windows update and unselect the IE7 option and it won't bother you again. You will get a warning when you visit WU but it's no big deal. You can also de-select it in the auto updates just like you do in WU.



Good luck



G



Come back IE 6!?microsoft net internet explorer



i wish i knew how cause i don't like it either
just do a system restore



before it was installed
Use your System Restore if you have Windows XP.



Click on "start"



Go to "programs"



Choose "accessories"



Go to "system tools"



Choose "system restore"



On "system restore" choose to top box that says "Restore my computer to an earlier time" and click next.



Next screen that comes up choose a date from before Internet Explorer 7 was installed.



Computer will restore IE6 and restart.



You now have Internet Explorer6 back!



*******This may sound complicated but actually only takes a few minutes.*******
I know! I hate some of the features- whenever I open up a window, I have to take 3 more steps to find it.
To uninstall Internet Explorer 7 to return to Internet Explorer 6 on Windows XP



Click "Start," and then click "Control Panel."



Click "Add or Remove Programs."



Check "Show Updates" at the top of the dialog box.



Scroll down the list and highlight the version of Internet Explorer 7 that you are running, and then click "Change/Remove."



Uninstall that,restart your PC and you are on IE6
First download the IE6 setup from the microsoft website.



http://www.microsoft.com/windows/ie/ie6/...



Once that is complete, go into your contorl panel %26gt; add/remove program. Select IE7 and click remove.



Once IE7 is removed, restart the computer and launch the IE6 setup. IE6 will walk you thru the rest of setup.



I would recommend staying with IE7 and make sure you have the full release. You can get IE7 official release from the MS site. Tabbed browsing makes a world of difference.



Good luck.
do as classic suggests above its easy , system restore is too much hassle
You can uninstall it via Add/Remove Programs, but I suggest you to use Opera or Firefox instead. (no pop ups, no malware software comming through, tabbed browsing, mouse gestures, widgets just to name a few benefits)
I suggest you get used to IE7 because Microsoft will slowly make it compulsory for everyone to upgrade.



If you don't like it, I suggest you try FireFox browser.
before you to that... try firefox. it's the best internet browser, ever. even microsoft admitted that firefox is a whole lot better; microsoft wanted to ask for their advice on internet security issues.

Why is IE "clipping" my CSS tabs?

If you visit, http://www.realtybaron.com/ using IE, you will NOT see the top of my tabs. Firefox is perfect. Why is IE doing this?



Why is IE "clipping" my CSS tabs?windows explorer





This is probally more likely to be due to your CSS coding than IE. IE and Firefox handle margin and paddings slightly differently. Alway set margin and padding to zero in the body tag before coding to eliminate may of the problems. But if you have coded without these present then adding them may create other problems.



The other issues may be that you have not correctly set the paddings or margins for the image in your tags. If you have used an inline list for your tags then check the ul, li and a tag settings.



Why is IE "clipping" my CSS tabs?microsoft zune internet explorer



Simply because IE is IE. Actually I can't really help since I don't know much about CSS, but seriously. Forget IE. If it works fine with firefox, be happy with that.
Talk to the fine engineers at Microsoft. They did this so that sites following Firefox standards won't be usable by IE and vice versa, thus creating twice as much work for webmasters. This is done, as usual, to attempt to protect their market share on a "free" product. A free product that is attached extremely well to a couple hundred bucks of not so free OS. Thanks for being a philanthropist in Africa, but NOT in Cyberspace, Unca' Bill. See the article on the URL below, picked up by Yahoo from Techweb.

Trouble with IE?

When I open a browser in IE and click on a link on any page and then close that link, the browser closes too and I get the old (Internet Explorer has experianced a problem and will now close) Error. Anybody have any idea as to what the heck is goin on here? I have IE 7...



Trouble with IE?replacement windows





Get rid of internet explorer and replace it with Mozilla internet browser (download for free)



IE has many security holes in that hackers love to manipulate. Mozilla runs smoother and has many features



Trouble with IE?windows mail internet explorer



Uninstall and reinstall it.

IE 7 on Yahoo?

Do I need to do the IE 7 update on Yahoo's homepage?



IE 7 on Yahoo?safari browser





Honestly I wouldn't do the IE Update yet. If you need the IE 7, and you have Windows XP your auto. updates will download and install it yourself. Remember always that new downloads of problems are full of problems and glitches so this is why I haven't downloaded it yet. Once the glitches and techie problems are fixxed within the program your auto. updates will gather and upload it for you.



Good luck.



IE 7 on Yahoo?ds browser internet explorerThank You. Report It

How can I get IE 7 off my computer?

"I installed IE 7 on my computer. I am not satisfied with it's proformance. It will not allow me to install any other browser. It also will not allow me to uninstall it in any way. I have tried add/delete programs and unistall from the programs menu. It will not let me reset my "system restore" to before it was installed. It keeps trying to shut down my computer. It's almost like it knows that I am trying to get rid of it. It's kind of spooky, like microsoft has designed it to block any effort to get rid of it. It pops up a box that says that Windows Explorer has encountered a problem and needs to close. I never had any problems with IE 6. How can I get IE 7 off my computer?"



How can I get IE 7 off my computer?windows media center





Try Firefox instead



http://www.mozilla.com/en-US/firefox/



Here's why



http://reviews.cnet.com/4520-10442_7-665...



Once Firefox is running and you are happy with it if you still want to get IE7 off your machine then have a read through the options here



http://forums.whirlpool.net.au/forum-rep...



///



How can I get IE 7 off my computer?nintendo ds browser internet explorer



you have to get a seperate uninstalling software for getting IE or Messenger off the PC. it is available , but not for free.
It would be nice if you could get it off, but MS has screwed us over again. Try to install Firefox.
reinstall it with IE 6
from what i know about i7 is much better than i6, maybe it is not compatible with your systems, what you should do is back up your files first and try to reformat your hard disk maybe that what i will suggest to you as of the moment.
Start %26gt; Control Panel %26gt; Add/Remove Programs.



Uninstall IE 7 from the list. If it does not show up there, then click 'Show Updates' and then uninstall it. IE will be automatically be downgraded to version 6.
Uninstalling Internet Explorer 7 RC1



To uninstall Internet Explorer 7 and restore Internet Explorer 6 when using Windows XP or Windows Server 2003



Click Start, and then click Control Panel.



Click Add or Remove Programs.



Scroll down to Windows Internet Explorer 7, click it, and then click Change/Remove.



If you cannot find Internet Explorer 7 in Add or Remove Programs, click Start, click Run, type %windir%\ie7\spuninst\spuninst.exe, and then press ENTER.



Note: %windir% is the location of your Windows directory, which can usually be found at C:\Windows. To do this, you need to have "view hidden folders" enabled.



Uninstalling Internet Explorer 7 Beta 3, Beta 2, Beta 2 Preview, or Beta 1



To uninstall Internet Explorer 7 Beta 3, Beta 2, Beta 2 Preview, or Beta 1 and restore Internet Explorer 6 when using Windows XP or Windows Server 2003:



Click Start, and then click Control Panel.



Click Add or Remove Programs.



Scroll down to "Internet Explorer 7 Beta 3", "Internet Explorer 7 Beta 2", or "Internet Explorer 7 Beta 2 Preview", click it, and then click Change/Remove.



If you cannot find any version of Internet Explorer 7 in the previous step, select the Show Updates check box at the top of the Add or Remove Programs dialog box, scroll down to Windows XP - Software Updates, select "Internet Explorer 7 Beta 2 Preview" or "Internet Explorer 7 Beta 1", and then click Change/Remove.



If you cannot find an Internet Explorer 7 entry using Add or Remove Programs, try running these commands. Each is for a different release of Internet Explorer 7, so only one will succeed. To run any of these commands, you need to have the View hidden folders option enabled. In the commands below, %windir% is the location of your Windows directory, which can usually be found at C:\Windows. To run these commands, click Start, click Run, and then type one of the following:



%windir%\ ie7beta3\ spuninst\ spuninst.exe.



%windir%\ $NtUninstallie7beta1$\ spuninst\ spuninst.exe.



%windir%\ $NtUninstallie7bet2p$ \spuninst\ spuninst.exe.



%windir%\ $NtUninstallie7b2pmx$ \spuninst \spuninst.exe.



%windir%\ $NtUninstallie7beta2$ \spuninst\spuninst.exe.
If you still can't get rid of the problem what I would do is if you have Windows XP press F10 when you restart your computer and keep pressing it untill you get a screen and somewhere on there, there should be an option that says Restore your computer to an earlier date. Now this works. The computer will choose dates it thinks are important or you can set your own but once you set the date there is no turning back.
I had a similar issue with the "..has encountered a problem and needs to close" pop up. This doesn't totally uninstall IE, more of a disable but what I did was:



Start - control panel - add remove programs



On the left hand side of the program list you will see add/remove windows components. Un-check Internet Explorer and click on next. I then installed Firefox.



IE hasn't bothered me since :P
Hi,



From the control panel I was able to uninstall it. Select to show updates. Find and uninstall IE7.



The folder on your hardrive usually drive C will still show the folder on IE though.



Karl



http://www.deletespyware-adware.com/

I have IE 7-from yesterday I am geting a message - compuer is infected-scan by spywarequake.?

IE 7 has spyware scanner. I am unable to remove warning message in the task bar. I have symantec antivirus updated and windows security center with firewall and automatic updates are on. Please suggest me how to remove the message from the task bar. I have scaned the whole computer with antivirus and IE 7 spyware scaner. Both the scaners has shown no threats.



I have IE 7-from yesterday I am geting a message - compuer is infected-scan by spywarequake.?ds browser





Systems Affected: Windows 2000, Windows 95, Windows 98, Windows Me, Windows NT, Windows XP



The following instructions pertain to all Symantec antivirus products that support security risk detection.



Update the definitions.



Uninstall the security risk.



Run the scan.



Delete any values added to the registry.



For specific details on each of these steps, read the following instructions.



1. To update the definitions



To obtain the most recent definitions, start your Symantec program and run LiveUpdate.



2. To uninstall the security risk



This security risk includes an uninstallation applet. In order to uninstall this security risk, complete the following instructions:



Click Start %26gt; Settings %26gt; Control Panel or Start %26gt; Control Panel (this varies with the operating system).



In the Control Panel window, double-click Add/Remove Programs.



Windows Me only: If you do not see the Add/Remove Programs icon, click ...view all Control Panel options.



Click "SpywareQuake 2.0"



Note: You may need to use the scroll bar to view the whole list.



Click Add/Remove, Change/Remove, or Remove (this varies with the operating system). Follow the prompts.



Note: After running the Add/Remove programs applet, all the files may have been removed. You will want to run a full system scan to ensure that this is the case. However, it is possible that no files will be detected after using Add/Remove programs.



3. To run the scan



Start your Symantec antivirus program, and then run a full system scan.



If any files are detected, and depending on which software version you are using, you may see one or more of the following options:



Note: This applies only to versions of Norton AntiVirus that support security risk detection. If you are running a version of Symantec AntiVirus Corporate Edition that supports security risk detection, and security risk detection has been enabled, you will only see a message box that gives the results of the scan. If you have questions in this situation, contact your network administrator.



Exclude (Not recommended): If you click this button, it will set the risk so that it is no longer detectable. That is, the antivirus program will keep the security risk on your computer and will no longer detect it to remove from your computer.



Ignore or Skip: This option tells the scanner to ignore the risk for this scan only. It will be detected again the next time that you run a scan.



Cancel: This option is new to Norton Antivirus 2005. It is used when Norton Antivirus 2005 has determined that it cannot delete a security risk. This Cancel option tells the scanner to ignore the risk for this scan only, and thus, the risk will be detected again the next time that you run a scan.



To actually delete the security risk:



Click its file name (under the Filename column).



In the Item Information box that displays, write down the full path and file name.



Then use Windows Explorer to locate and delete the file.



Delete: This option will attempt to delete the detected files. In some cases, the scanner will not be able to do this.



If you see a message, "Delete Failed" (or similar message), manually delete the file.



Click the file name of the risk that is under the Filename column.



In the Item Information box that displays, write down the full path and file name.



Then use Windows Explorer to locate and delete the file.



Important: If you are unable to start your Symantec antivirus product or the product reports that it cannot delete a detected file, you may need to stop the risk from running in order to remove it. To do this, run the scan in Safe mode. For instructions, read the document, How to start the computer in Safe Mode. Once you have restarted in Safe mode, run the scan again.



After the files are deleted, restart the computer in Normal mode and proceed with the next section.



Warning messages may be displayed when the computer is restarted, since the risk may not be fully removed at this point. You can ignore these messages and click OK. These messages will not appear when the computer is restarted after the removal instructions have been fully completed. The messages displayed may be similar to the following:



Title: [FILE PATH]



Message body: Windows cannot find [FILE NAME]. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search.



4. To delete the value from the registry



Important: Symantec strongly recommends that you back up the registry before making any changes to it. Incorrect changes to the registry can result in permanent data loss or corrupted files. Modify the specified subkeys only. Read the document: How to make a backup of the Windows registry.



Click Start %26gt; Run.



Type regedit



Then click OK.



Note: If the registry editor fails to open the risk may have modified the registry to prevent access to the registry editor. Security Response has developed a tool to resolve this problem. Download and run this tool, and then continue with the removal.



Navigate to the subkey:



HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\...



In the right pane, delete the value:



"SpywareQuake" = "%ProgramFiles%\SpywareQuake\SpywareQuak... /h"



Navigate to and delete the following registry subkeys:



HKEY_CLASSES_ROOT\CLSID\{5B55C4E3-C179...



HKEY_CLASSES_ROOT\Interface\{189518DF-...



HKEY_CLASSES_ROOT\Interface\{23D627FE-...



HKEY_CLASSES_ROOT\Interface\{43CFEFBE-...



HKEY_CLASSES_ROOT\Interface\{5790B963-...



HKEY_CLASSES_ROOT\Interface\{5D42DDF4-...



HKEY_CLASSES_ROOT\Interface\{76D06077-...



HKEY_CLASSES_ROOT\Interface\{86C7E6C3-...



HKEY_CLASSES_ROOT\Interface\{9283DAC1-...



HKEY_CLASSES_ROOT\Interface\{AE90CAFC-...



HKEY_CLASSES_ROOT\Interface\{BA397E39-...



HKEY_CLASSES_ROOT\Interface\{BEC8A83D-...



HKEY_CLASSES_ROOT\Interface\{C4EEDC19-...



HKEY_CLASSES_ROOT\Interface\{DD90F677-...



HKEY_CLASSES_ROOT\Interface\{E3DF91F3-...



HKEY_CLASSES_ROOT\Interface\{F459EADB-...



HKEY_CLASSES_ROOT\Interface\{FC4EDF66-...



HKEY_CLASSES_ROOT\TypeLib\{661173EE-FA...



HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\... Paths\SpywareQuake.exe



HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\...



HKEY_LOCAL_MACHINE\SOFTWARE\SpywareQua...



Exit the Registry Editor.



I have IE 7-from yesterday I am geting a message - compuer is infected-scan by spywarequake.?microsoft templates internet explorer



you'll get better help below in the ie7 group



鈽呪槄 MICROSOFT PRODUCT DISCUSSION GROUPS 鈽呪槄



? Here are hundreds of Discussion Groups for Microsoft products such as Internet Explorer, Outlook, Outlook Express and the list goes on and on. There is even a discussion group for the new Internet Explorer 7 beta.



? You'll need to signup for an MSN Passport Account to use these groups. But it's really worth your time. You'll receive better help here than anywhere. But if you didn't pay for the product it might be smart not to mention it here. If you want help that is.



? http://www.microsoft.com/windows/ie/comm...
Go here and see if this removes it.



http://www.internetinspiration.co.uk/rog...
I highly recommend you download SUPERantispyware. It will remove spywarequake. It is VERY VERY effective and it is free.

Utorrent keeps disconnecting my ie?

when i run utorrent on my vista pc i am unable to connect to ie. Vista continues to download files but i cannot connect to internet explorer. I have noticed on some occasions that i can connect to ie after several minutes.



my two other pc's running on xp have no problems with utorrent and ie running together. could this have something to do with my network settings with vista? or perhaps my antivirus software?



Utorrent keeps disconnecting my ie?microsoft vista





if you're using ie7 well it sucks, revert to ie6 or get the more secure firefox browser from mozilla



Utorrent keeps disconnecting my ie?windows xp pro internet explorer



no, its proly vista ... vista basically blows ... its prolly a registry setting for connection limiting but im not familiar enough with vista to say ... it could also very likely be a driver incompatibility with ur nic card ... and even more likely its a compound problem involving both ... my advice is to upgrade back to XP and shelve vista until a service pack is released ..

I need IE on a computer that has NO internet! PLEASE HELP!?

I have an older computer with internet explorer 5.5 on it... I want to connect this computer to the internet via wireless but when I try to install my wireless card software it says I need IE 6 or + to install it.... Ive tried putting the set up exe file on a disc and doing that... but It messes up because it says it needs to connect to the internet to download. Is there anyway of being able to download IE WITHOUT internet on a computer... WIRELESS is the ONLY way I can connect... no ethernet and phone jack wont work.... PLEASE HELP!



I need IE on a computer that has NO internet! PLEASE HELP!?windows media





Connect the computer to the router with an ethernet cable, then download IE. This will bypass the wireless card's complaint.



I need IE on a computer that has NO internet! PLEASE HELP!?microsoft exchange internet explorer



get firefox



http://www.firefox.com
Contact Microsoft and try to get it on disc, or get a pcmcia Ethernet card and connect it that way, then you would be able to download IE
Put exe file on disc but run it after you connect to the internet using one of those AOL trial CD's in combination with dialup. If you're like me you get 50 million of these damn things in the mail, they actually come in handy for just such an event. Don't forget to cancel before you get charged, that's what they're banking on.

Is it IE or my laptop problem?

there is this website which work perfectly fine on my desktop and i can use either firefox or IE and the site runs without problem.



but when i use my laptop, only firefox works for the site, IE ALWAYS freezes.



I have reinstalled IE7 (the latest version), downloaded the latest Directx, on this laptop but the problem is still there



do you know what the problem is?



and the site is http://gunz.ijji.com



Is it IE or my laptop problem?microsoft updates





Check the recommended system requirements here http://gunz.ijji.com/downloads.nhn and make sure to play the games you install the software.



Is it IE or my laptop problem?windows server 2003 internet explorer



I am not sure, but my wild guess would be a GPU error... but then again I am not sure, it is just a guess.

Does firefox look better than IE?

i don't know if it's just me



or if there is a reason why



i've tried to tweek IE



but without doing anything, with firefox all the sites just look very sharp and clear...or normal



because with IE



sometimes little icons are not even there



my school for some reason the whole name is a big black smudge



a lot of things look blocky



it just looks terrible



a video will play the same i think



but the stuff on the web page just looks really out of focus with IE



i don't even think i'm too concerned with trying to fix it



but would there be a reason



and if there is a fix



why is it that it needs to be adjusted while firefox just looks right anyway



love firefox



haha



thanks



Does firefox look better than IE?opera browser





Hmmm I use both...



certain sites are better equipped for one or the other...



it all depends on the site I guess...



:]



Does firefox look better than IE?microsoft windows internet explorer



A lot of web designers don't test for compatability between browsers which causes the problems you're talking about. It's kind of weird that the site would look ok in Firefox and not IE. Usually it's the other way around. Reputable web designers (like http://www.directhitsolutions.com ) do a lot of inter-browser testing to ensure a site will look the same (or close) between browsers.

While downloading IE 7, shd I run or save. Also why do I get warning that it is not safe to download

Internet explorer being well known, why this warning. If 'Run' is clicked, does it mean IE 7 will be availed only in that session and next time we log in it will revert back to the existing IE 6?



While downloading IE 7, shd I run or save. Also why do I get warning that it is not safe to download. Help.?microsoft project





I assume that you are running I.E and you want to download another version of I.E. In your case I.E 7. When you use your current version of I.E to download a file. You should know that I.E is designed to prevent AtciveX. In the sense it is designed to prevent programs installing on your computer without asking you. Imaging if some of this programs are viruses or spywares. You don't want them to be install on your computer automatically when you accidentally run into a web site.



Open: Download the program in cache or as temp file and open it when the file is fully downloaded. You should be confirm when opening a file. Click open if you would like run it else click cancel.



Save: Save this file or program some where on your hard disk. If you click the save button it will open a little window prompt you where you want your file to be save. If you choose to save the file you should also remember where you have saved this file. So you could find the path to this file and open it or on this talk, installing you I.E 7.



While downloading IE 7, shd I run or save. Also why do I get warning that it is not safe to download. Help.?microsoft powerpoint internet explorer



It is safe to download because it's been tested and I used it and you should use the run button to use it stright away.



And it will not revert, the warning was wrong it is safe.
"run" means it will directly installl



"save" means IE7 setup file will be downloaded to your system..you need to install it by running setup



i think save is a good options..you will have an backup ...



whenever your download an exe file..it can be infected..thus the warning

Can I uprade to IE 7 then downgrade?

Do you know for sure that if I uprade to IE 7, then decide to go back to IE 6, there will be no problems with running IE 6 the way it was running before?



Can I uprade to IE 7 then downgrade?windows updates





Yes, you can downgrade by uninstalling IE7 from the Add/remove programs in the control panel and all should be back to the way it was.



Can I uprade to IE 7 then downgrade?replacement windows internet explorer



no there will be no problem at all,if u upgraded to ie7 and didn't like it u can go back to ur older version 6 by just uninstalling the ie7.
no... there will be no problem...
I just personally did this with my computer with no problems. All you have to do is go into add/remove programs and uninstall ie7. ie6 is still on your system, but when you install ie7, it is overrided unti you decide you don't want it.



I personally cannot reccomend ie7 if you want better than what you have. I was unable to go into certain websites and in some cases, certain searches I made on google and yahoo would cause an error and I would get kicked offline. There are some great things that come with it including a better set up with favorites, and your other toolbar options, but that is as far as it goes. Hope this helped.



Good Luck!
Maybe you want the IE6 view than IE7 right?



After you upgrade IE6 to IE7, copy and the iexplorer.exe from



C:\Windows\ie7\ (note: ie7 folder is hidden)



then paste or overwrite iexplorer.exe



C:\Program Files\Internet Explorer\ (note:make a back-up file for iexplorer.exe before overwriting)



Then try to open now you Internet Explorer at the desktop.



You don't need downgrade anymore.

Why get so fussed with YOUNG ie not 50 teachers 6th form ie over 16 student relationships. Some get

why get so fussed with YOUNG ie not 50 teachers 6th form ie over 16 student relationships. Some get married



Why if clearly consentual and the younger girl is head strong not a pushover.



Not treat it like any other one with a few ground rules.



They have to come clean and she has to change class



So he does not mark anything of hers and so she cant after say he seduced her when it was not true if they split up, or he cant demand favours or she offer them for grades.



Ie you remove the power relationship.



Plus if in the open its easier to look for any signs of abuse if the kiss, cuddle and hold hands in breaks like anyone else.



AS SAID CONSENTUAL.



Heard many of these ended up with marriage and kids and happy ever after once everyone else butted out and left them alone. One case was at least 19 year of marriage and 3 kids.



And the girl was noted for being no silly manipulatiable girl.



used to travelling and both were freinds first, both lonely.



Why get so fussed with YOUNG ie not 50 teachers 6th form ie over 16 student relationships. Some get married?windows messenger





I believe that the state has no place in interfering with heterosexual relationships between physically mature couples. Nature determines when boys and girls are sexually mature; this should determine the age of consent rather than a law that has its origin in the Victorian era.



Why get so fussed with YOUNG ie not 50 teachers 6th form ie over 16 student relationships. Some get married?microsoft works internet explorer



Right, got that. Obviously not English teachers then.
I'm lost. Are you trying to say that it is okay for a teacher and a young student to be intimate? No way am I going to click one of those links. I dont believe in stoning children or women or men for that matter to death. Especially not children who alot of times suffer for the adult.



Well all I am saying is that I do not believe in a grown man or woman being with a child. I dont see this as being in love with one another. I see it as criminal on the adults part. Sorry but its my opinion.



I dont understand adults who think of children in a sexual way or think they can have some sort of relationship with them that is intended for adults only. At least with doctor/nurse those individuals are adults. What does a 13 year old girl really know? How has she matured enough to understand an honest relationship? Are we pushing the children of the world to grow up too fast? I have a daughter who will be 13 soon and I do not want my daughter being looked at in a sexual way by some teacher. Teachers are supposed to be a figure of trust. If they betray that trust then who can children expect to turn to at school? Will they be leary of all adult figures? I would think so. If we allowed adults to be with 13 year old children then what? We already have sick people in this world raping and molesting mere babies.



All I know is that the laws were set and we should all try to follow them regarding children especially. Granted there are horrific cases of abuse all over the world and that issue also needs addressed and something done. Children are the innocents and need protection from people who want to hurt them. Now I am not saying that a 16 year old and an 18 year old being together is a abuse. But I am saying that I do not think a 20+ year old man has any business being with a 16 year old. If this supposed man really loved this girl could he not wait and give her time to grow? In most cases the adult realizes that its wrong. I feel like I am repeating myself here. I voiced my opinion.
u no maybe if u wernt an idiot u mite find an answer
The reason for these rules is for the protection of the students. Now I'm not saying that ALL 16+ y/o are at risk from being seduced by their teachers, but some are. You can't have one rule for some and one for others.



Teachers are in a position of trust, they are supposed to be responsible. By becoming romantically involved with a student they are abusing that trust.



If they have genuinely strong feelings for each other then they should wait until the student has completed their education.
START EDIT



My answer is below, if you care to read it. I had a closer at the list of answers you've previously given to other questions, as per your profile. I must say that I am disturbed by the high positive correlation between 14yo questioners and the sexual advice that you give. I can see the strong general theme of teenage sex that you respond to on here.



I have reported you under the category of Child Protection to yahoo, on suspicions of being a UK Teacher who is interested in persuing sexual relationships with your female students.



You know that you know better. And you know that your sexual intentions towards students are those of a fithy low-life pedophile. Seek help before you destroy the lives of children and your own career. They don't treat your kind well in prisons.



END EDIT



The big deal is because teachers are there to teach and not to date students. Of course they end up being the victim of crushes, such is the nature of high school, but dating a student compromises their authority and respect as a role model for students.



Additionally, teachers have already been through high school and college. They have dated seriously many more times than 16 year olds. Those 5 years after high school are the most rapidly forming for teenagers becoming adults. In terms of social and psychological maturrity, the age gap between a 16 year old and a 21 year old around 3 times greater than that between a 21 yr old and a 26yr old.



Despite being 'mature teenagers', they are still in school, still live with and depend on their parents, and are still considered as 'kids' to normal adults who have experienced the real world and the challenges that independence and growing up presents.



Teenagers understand this age difference. Which is why exceptionally smart 16 year olds don't teach high school with any success - an age gap is needed before students respect a teacher as being wiser than they are.



Students rely on teachers to be smarter than they are but also to know more about the realities of life. When a student dates a teacher, they are sending a message to other students that teenagers don't need to take their younger teachers so seriously in class. They think that they know as much as the teacher does, and when this happens the students are less likely to learn.



If the relationship is as strong as you describe, then the teacher should at least give the student enough respect to let them finish their studies and get out into the real world until they persue a romantic relationship together. Being lonely is a good excuse to stay friends, but certainly no excuse for abusing a high-trust relationship too fast and too soon.



If the teacher is properly qualified, they should have learnt all of this in college.

Can't find Temp IE directory on XP with SP2?

For some unknown reason I can't find/access the temporary IE directory file on my XP system. The directory I am specifically looking for is located in C:/documents and settings/'username'/local settings/temp/temp IE. (The 'username' refers to the specific user that I want to see.) I have done this in the past and it worked but can't seem to find it now. I have turned on BOTH the SHOW HIDDEN FILES and SHOW SYSTEM HIDDEN FILES via Windows Explorer Tools menu folder options but still no luck. This particular directory contains many .tmp files that are created when you use IE. I like to clean it out as it gets very large over time.



Any help would be appreciated.



Can't find Temp IE directory on XP with SP2?windows mobile 6





HEY THERE YOU HAVE WRONG PATH



TRY THIS



C:\Documents and Settings\username\Local Settings\Temporary Internet Files



check out then tell



Can't find Temp IE directory on XP with SP2?microsoft office 2003 internet explorer



use your system restore to go back to an earlyer time ,you problemly will find it there.

IE keeps shutting off by itself. Help!?

why is my IE keeps shutting off while im browsing? Even when i try to install some programs, the programs suddenly shut off while it is in progress?



IE keeps shutting off by itself. Help!?web browser





I have hear of viruses that prevent you from visiting anti-virus sites. Could this be the case with you?



IE keeps shutting off by itself. Help!?windows installer internet explorer



u hav a virus called heap32
Download Firefox (www.firefox.org) and you'll be all set. Keep IE only for Windows websites.
check your ram to see if you have enough. If you don't that will cause it to shut down
Hello ,



Familiarize yourself with all "Add-ons" this may help the crashes as you are experiencing . You can always open a second browser for yout important searches and work and use 1 browser for surfing . Also , when opening a website , give the website to fully load before open other websites . You will see the website icon in full in the browser tab to . Look up the meanings of each Add-on and decide which to disable . When the time comes and a website pops up an alert needing the Add-on , you can enable that Add-on then . I disable all Yahoo Add-ons as a recommended security barrier . I use a lot of Yahoo features and E-mail and never had tpo enable Yahoo Add-ons yet even though Yahoo pops up an alert saying that I need to enable it . I assume you are using IE7 . To view Add-ons %26gt; Navigate %26gt; On the browser %26gt; Button %26gt; click : Tools/Manage Add-ons/Enable or disable Add-ons/Where it reads "Show" is a catagory of the way Add ons are handled . View each one (by clicking the drop down arrow . In the box below are the Add-ons of that catagory . Click on the Add-on (underlined) , this will activate option to enable -or- disable its function by tic or click Enable or disable in the area below marked "Settings" .

Problem with IE, closing if i open other windows and not letting me type once opened..?

when i open IE it will not let me type on that page say like for a password, then if it does for some reason work, if i open another window from a link and when i am done close that window it shuts everything down and restarts IE.... i am using vista (don't everyone cringe at once) any ideas???



Problem with IE, closing if i open other windows and not letting me type once opened..?microsoft office 2007





Switch browsers, maybe Opera or Firefox?



Problem with IE, closing if i open other windows and not letting me type once opened..?windows media internet explorer



uninstall and reinstall

Since installing IE 7 I am no longer able to join groups. the join button is missing..any ideas ?

IE 7 is supposed to be compatible with Yahoo right ? well since installing it, I have tried to join two different groups, at the bottom of those pages, the join button is not there. That is as far as I get. I want to go back to IE 6, but can not find a download link for it, just patches... can any one help ?



Since installing IE 7 I am no longer able to join groups. the join button is missing..any ideas ?windows media player 11





use a diffferent browser, join by email or send it to owner and ask him to add you :)



Since installing IE 7 I am no longer able to join groups. the join button is missing..any ideas ?microsoft publisher internet explorer



yeah.. when this was happens do this.. give all the info just as you normal would.. then instead on clicking the join button.. just hit enter on your key pad.. that worked my group.. peace out!! :)

Does anyone know how to clear IE of saving your searches or web sites? (Not clear history, read deta

I have IE 6 (internet explorer just incase you don't know :D) on a Windows XP. I was wondering if there is a way to clear searches you make. Like when you type something in on google, IE remembers it so when you type something starting with the same letter it shows you that previous search since it's the same letter. Can you do something so IE doesn't keep track of your searches? Also the same thing with websites. You type in a website adress and go to it and then next time you type a website adress starting with the same letter it shows you that previous site. Can you clear that? I know in Firefox you can go to privacy and click an option for it not to remember searches. Can you do this is IE and make it not keep track of searches. Please help!



PS: I know how to clear history but I mean searches and websites adresses as in above.



Does anyone know how to clear IE of saving your searches or web sites? (Not clear history, read details) Help?windows movie maker





1) Choose Tools: Options.



2) Click the Content tab.



3) In the "Personal information" section, click the AutoComplete button.



4) Click the Clear Forms button.



5) To keep IE from saving your search terms in the future, click to uncheck the "Web addresses," "Forms," and "User names and passwords on forms" checkboxes.



Does anyone know how to clear IE of saving your searches or web sites? (Not clear history, read details) Help?microsoft project internet explorer



you can't make IE not do it, but you can delete them. just click once in the box and press the down key go down until you find what you dont want, that press the delete key.
Try tools%26gt;browser options%26gt;clear searches and URLs.

MySpace CSS IE / Firefox issue?

i realize that firefox and IE render CSS differently because of the way the code is parsed.



You cant use javascript to correct CSS issues in myspace, nor can you use a Link rel="stylesheet", usually i would use a %26lt;!--[if IE]%26gt; statement to check the browser, then link to the appropriate stylesheet.....myspace blocks the %26lt;link%26gt; tag...



any other way to get around my firefox layout looking like crap?



MySpace CSS IE / Firefox issue?opera browser





Use the IE conditional comments, as follows:



- style the page perfectly in Firefox



- determine what needs to be different for IE (general or even specific versions) not by changing what you've done for FF, but by overriding it with different attribute value for the same selectors repeated at the bottom of your origin FF style sheet ("cascade," right? - later, more local, or more specifically selected styles take precedence - you're not deleting any of your earlier FF work but only overriding it with repeated declaration later in the cascade)



- add any new style for IE, again down at the bottom of your style sheet, to keep all the IE "tweaks" together



- once you're done getting it perfect in IE, cut the set of overrides out of the end of your style sheet and include those in an IE conditional comment in the HTML itself



Now your base style sheet is perfect for FF, and your in-page conditional comments an contain an internal style sheet (%26lt;style%26gt; block) that offers overrides that repair the cascade for IE.



This can repeated "ad nauseum" for different flavors of IE, if you intend to support multiple versions.



MySpace CSS IE / Firefox issue?microsoft windows internet explorer



Well, technically, for the most part, Firefox will display things correctly. IE is usually the problem.



However, without specific code examples, I can't help you.



Edit:



Myspace is pretty strict about what it allows in terms of formatting. I don't know of any way to do what you're asking. MySpace isn't exactly the pinnacle of of CSS/HTML compatibility or usability.

Update to IE 6?

Hi, I have an IE 5.5 right now and need to update to IE 6 and from that, to Service pack 1 for IE6. Any links to download IE6? THANKS!



Update to IE 6?windows live messenger





Try microsoft windows update web site, let the site scan your pc, one of the security patches is for ie 6 (%26lt;3mb) and you choose that, since the patches can't be installed without ie6 there, it will actually install the ie6 (17mb) then the patches.



Update to IE 6?microsoft money internet explorer



microsoft.com
Try the link below. It's #2 on the list.
if you have service pack 2...u can update to IE 7 the new one

Is IE Anti-Spyware a legitimitate spyware program?

I happened to notice in the tools section of IE7 a new addition named IE Anti-Spyware when i clicked i was directed to website named avosoftwarefeed.com Mc afee site advisor can give no info. as they have not tested the site.Does anyone know of this program,idid not put it there so i suspect it is a rogue program.Spybot, MC afee, Ad aware says my computer is spyware free, but i did not download IE Anti-Spyware.Does anyone have any ideas how to remove it?



Is IE Anti-Spyware a legitimitate spyware program?windows media center





I didn't care for Windows Defender too much. If you're looking for some anti spyware I would suggest some of these. This is a list I have compiled of what I feel are the best free-anti-spyware/anti-malware downloads. When I use them together on my system it does an excellent job in keeping it clean.



Advanced Windows Care http://www.iobit.com/advancedwindowscare...



Ad-Aware 2007



http://www.lavasoft.com/products/ad_awar...



Advanced Spyware Remover



http://www.evonsoft.com/Download.htm



EMCO Malware Destroyer



http://www.tucows.com/preview/414285



Malware Sweeper



http://www.malwaresweeper.com/download.h...



Spybot Search and Destroy



http://www.safer-networking.org/en/downl...



Spyware Begone



http://www.spywarebegone.com/download.ht...



Spyware Terminator



http://www.spywareterminator.com/downloa...



Super Anti-Spyware



http://www.superantispyware.com/superant...



Trend Micro Housecall



http://housecall.trendmicro.com/



Is IE Anti-Spyware a legitimitate spyware program?nintendo ds browser internet explorer



Microsoft developed anti-spyware several years ago after Bill Gates discovered spyware on his computer.



It is called Windows Defender and it is free.



I once had a anti-spyware link (such as yours) attach itself to my IE program under "tools". It didn't do any harm but I could not get rid of it, even after deleting IE and reinstalling it.
IE antispyware itself is spyware



Run your anti-spyware in Safe Mode.If you dont have an excellent anti-spyware or your current anti-spyware can't prevent spyware from Invading you computer,download a better one.



There are top 5 anti-spywares reviews,comparisons and download links on



http://www.anti-spyware-center.com



You can download and scan your computer for free.



As the computer is booting press your "F8 Key" repeatly which should bring up the "Windows Advanced Options Menu" . Use your arrow keys to move to "Safe Mode" and press your Enter key.



After into safe mode,run an anti-spyware to remove the spyware and adware on you computer.



Make sure you have 1 or 2 antispyware on your computer and 1 antivirus and also 1 firewall.



GOOD LUCK!
I would go with Spybot



http://www.safer-networking.org/en/downl...



OR



Spyware Blaster



http://www.javacoolsoftware.com/spywareb...



and AVG free anti-rootkit, just to be on the safe side:



http://free.grisoft.com/doc/downloads-pr...

Firefox and IE not showing images in My Yahoo. Strange address associated with images. Spyware?

When viewing My Yahoo, some of the pics don't show up in IE or Firefox, just the red x.



Load images automatically is enabled in Firefox.



Show pictures is checked in IE



When I right click on one of the images and click on show image, it shows the address as:



http://kagemusha.corp.yahoo.com/images/f...



I have reformatted my c drive, wiped it clean and reinstalled Windows. I have run Norton, Symantec, Hijack This, Ad Aware, Windows Defender, and AVG. None of them found anything exciting. I also tried plugging my cable modem directly to the computer rather than through the router.



With the kagemusha address showing up, it seems like a virus/spyware but why only on Yahoo?



I'm up for any ideas. Not a whole lot more damage I can do since I just reformatted.



Firefox and IE not showing images in My Yahoo. Strange address associated with images. Spyware?microsoft outlook





Open your Internet Explorer browser,click Tools-Internet Options-Advanced-scroll down to Multimedia and right under the "show pictures" option,theres another option "smart image dithering" check that one as well.

Launch Firefox using IE Tab... any way?

Hey, I use Firefox 2, and I have IE Tab installed on it... instead of using bookmarks I use shortcuts that launch the firefox executable with the syntax as the URL



e.g.



firefox.exe http://thedomain.com



However, is there a way of getting firefox to launch it using the IE Tab automatically? Some sites are picky and want only the Trident (IE Engine).



Any ideas let me know



Launch Firefox using IE Tab... any way?microsoft vista





I dont think the IE Tab extension supports that feature!

How do you setup IE so that when you click an email link, it automatically routes to Yahoo mail?

Currently if I'm using IE to browse a page, and click an email link, I receive a 'Could not perform this operation because the default mail client is not properly installed.'



So instead, I just copy and paste the address into a new note in Yahoo mail. It would be nice to just have IE setup so that I can click the email link, and be routed instantly my Yahoo mail with a new note addressed to the email address in the link. Can this be done?



If not with IE, can this be done with Firefox?



Thanks.



How do you setup IE so that when you click an email link, it automatically routes to Yahoo mail?microsoft.com





In IE go to Tools then Internet Options then the Programs Tab.



Next to email click the down arrow and choose Yahoo Mail. Hope that works.



How do you setup IE so that when you click an email link, it automatically routes to Yahoo mail?internet browser internet explorer



To make Yahoo! Mail the default email application for your computer, click Tools %26gt; Internet Options %26gt; Programs tab %26gt; under E-mail click the down arrow and select Yahoo! Mail %26gt; click Apply. If Yahoo! Mail isn't listed as a default email option follow the directions below and it will solve your problem.



Using Internet Explorer just click "Continue" on the link below to download a small 60K file that will enable Yahoo! Mail to be the default email application for your computer. Whenever you click on an email address on any web page or in any computer program, Yahoo! Mail will open for you in a new window.



If Internet Explorer displays a yellow security bar at the top, click on it and select Install ActiveX Control from the menu.



If a security warning comes up with Yahoo! Inc. as the publisher, click Install.



Now you can click on an email address anywhere and your computer will automatically open up Yahoo! Mail for you.



You can even send documents directly from Word, Excel, or other Windows applications.



Requirements:



Windows 95 / 98 / ME / NT / 2000 / XP / Vista



Internet Explorer 4.0 or higher



http://help.yahoo.com/help/uk/mail/ext/e...

Help! System closes all IE windows automatically whenever i closes a pop-up.?

Everytime i surf the net, and whenever i close a pop-up window (be it yahoo address book, or anythng), the system automatically closes all the IE windows (including the main IE page). It's so troublesome to click on IE again and to re-login.



Need help/advice. Could it be virus??? oh dear...



Help! System closes all IE windows automatically whenever i closes a pop-up.?windows mobile





This is most likely due to Malware (computer viruses, worms, trojan horses, spyware, dishonest adware, and other malicious and unwanted software). You will need to run full anti-virus/spyware scan and clean your registry. I recommend you use these programs (they are free).



1) AVG Free anti-virus



http://free.grisoft.com/freeweb.php/doc/...



2) Ad-aware spyware remover



http://www.lavasoftusa.com/products/ad-a...



3) Spybot - Search and Destroy spyware remover



http://www.safer-networking.org/en/index...



4) CCleaner - registry and privacy cleaner



http://www.ccleaner.com/



Help! System closes all IE windows automatically whenever i closes a pop-up.?safari browser internet explorer



Probably a virus, but could be you need more memory(RAM).



http://www.tigerdirect.com/applications/...
On the bar at the bottom of your screen, you will see the web page you are on. left click on that and close the ones you don't want. Or go to the site below, they will probably express it better.
all good links, after that get this:



http://www.mozilla.com/en-US/

How can you install IE 7.0?

I need to know how to install IE 7.0. It's for managing stuff quickly(tabs) and many more.



Right now I have IE 6.0 installed in my computer. When I tried to install IE 7.0, It says: go to the link below:



http://img92.imageshack.us/img92/9066/un...



So can someone please tell me what to do to solve the problem?



BTW, I have SP1(where in the world can you download SP2?)



How can you install IE 7.0?web browser





Hey...



U need to upgrade your operating system to Windows XP SP2 in order to be able to install Internet Explorer 7.0 (BETA) in ur machine. To do that, U can download Windows XP SP2 from the following link:



http://www.microsoft.com/downloads/detai...



However, if u use a dial up and think u cant afford downloading a 266MB file, you can also order SP2 in a CD from Microsoft. In order to order the CD, just visit the following link:



http://www.microsoft.com/windowsxp/downl...



Now, to install IE7, just download it from :



http://www.microsoft.com/windows/IE/ie7/...



and then I'm sure u shall be able to install it in ur computer. If you still do happen to come across any more problems, do let me know.



Oh by the way, the above link that u've provided, doesn't work. It just takes me to Imageshack homepage.



And well, if you want a good browser that's intuitive, easy to use and also has your fav feature, that is, tabbed browsing...then I must seggest two free browsers that have been in the market for quite a while and their share has been rising faster than ever before. Personally I hate using IE. Anyways, here are the 2 browsers and the links from where u can download them:



Mozilla FireFox 1.5:



About the Browser - http://www.mozilla.com/firefox/



Download Link - http://www.mozilla.com/products/download...



Opera 8.5:



About the Browser - http://www.opera.com/products/desktop/



Download Link - http://www.opera.com/download/get.pl?id=...



Trust me, these 2 li'l browsers are gonna save you a lot of hassle. And moreover, always remember, IE7 is a Beta version, as of now. And Beta versions can never be fully trusted. They're expected to crash and act weirdly just about any time even by their manufacturers!! So, do choose wisely!!!



How can you install IE 7.0?windows installer internet explorerHey...thanks a lot for my choosing my answer the best one, mate!! Report It


You download SP2 from the Microsoft update website. and for tab browsing get Firefox. Firefox is more advanced in ad-blocking.pop-ups and can even block flash ads.
Do not get IE7.0



Get FireFox its free and fast



It has tabs and much more



http://24.20.97.172/fox.html
Go to www.google.com. Put in: "how do I install IE 7.0". You will find it is the Beta version that was released on March 20, 2006. This is not released for the public yet, it still has bugs.



You can also ask the serch engine "how do I install service pack 2"-You are probably infected with the sasser worm-which may be causing you not to download IE 7.0, due to not installing service pack 2



By the way there is service pack 3 now. There are new virus's that have come into play since service pack 2.

Friday, November 27, 2009

Suggest good Washing Machine ie.most efficient1)semi or fully automatic 2)top or front loading 3)bes

I live in bombay- India,please suggest a good washing machine keeping in mind the following criteria) 1) front loading/ top loading washing m/c( pros %26amp; cons of both the above 2 diff varieties. 2) should one purchase / go for, a semi automatic m/c or a fully automatic m/c, please mention the pros %26amp; cons keeping in mind both of 2 varieties. 3) which brand is the best ie. a) IFB license BOSCH (GERMANY) b) L.G c) SAMSUNG d)WIPRO e) WHIRLPOOL(american) f)VIDEOCON



g) GODREJ h) OTHERS.



Which of the washing m/c requires a) less maintanance , b)runs for longer number of years ie. many yrs, non stop, without requiring, almost no maintainance at all. c)which of the washing m/c ie. semi/fully automatic or front/ top loading causes less wear %26amp; tear? is most efiicient?



Suggest good Washing Machine ie.most efficient1)semi or fully automatic 2)top or front loading 3)best brand?windows xp





Siemens front loading washing machine is prolly one of the best in the world.



Suggest good Washing Machine ie.most efficient1)semi or fully automatic 2)top or front loading 3)best brand?microsoft office 2007 internet explorer



maytag neptune front loading large capacity washer---it's energy efficient, uses less water and u can wash a huge load like 3 or 4 regular loads at once and everything comes out clean. sears and best buy stores carry this model.
Though ppl like front loading, top loading appeals me more, something like space saving!Semiautomat. is better, it develops faults less frequently. Whirlpool (since you have not included BPL which I like). All the best!
I hav IFB
whirlpool fuuly automatic front loading machine



is the best thing going in the market

Why do IE browser always experiences script errors?

i have a win XP pc, and it works fine, except for the IE, be it version 7 or 6 always saying that it experiences script error, error on page and to continue or not to continue. how could i avoid getting that? also, is there any way to uninstall IE thoroughly and use firefox instead? thanks. . .



Why do IE browser always experiences script errors?windows update





script errors are actually results of "outdated browser" but since you already have ie 6/7 and still experience the same script error...you actually need to update your java program in the pc (www.java.com)...



btw, have you tried uninstalling the ie and reinstalling it using the original windows cd? that also can help...



ie experiences this error more than firefox since there are settings in ie that actually require very updated java program in order for it to open info especially pics...



take care alain...??? :D



Why do IE browser always experiences script errors?microsoft excel internet explorer



Don't UN-install Internet Explorer!!....You will need this!!... long story..You can still download Firefox which would most proberly fix those script errors and use both together without any conflict.



Free Firefox download.



http://firefoxfreebie.blogspot.com

How do I fix IE in Vista?

there was a power outage last week and my computer turned off; I'm guessing that was what messed it up because since then IE will not load. It takes forever and freezes up. So I downloaded firefox. The problem with that is only certain programs (like Netflix on-line) will only use IE. I looked in my control panel and found that IE was not listed in my programs. Could this mean that it had somehow got uninstalled? Should I reinstall it? This is what I'm guessing because on my XP computer, my Windows Movie Maker keeps closing itself and it was not listed in my programs anymore.



How do I fix IE in Vista?windows live





Try running IE with no addons and see if it works.



Start %26gt; All Programs %26gt; Accessories %26gt; System Tools %26gt; Internet Explorer (No addons)



I have had Vista lose shortcuts before, I think it was due to messing around with uninstalling some junk software.



How do I fix IE in Vista?windows media player 11 internet explorer



get XP or linux. Linux has never done that to me.



Alternatively get firefox
yes go to internet explorer and redownload it again after the 2 time it should work better i recomend the yahoo internet explorer it comes with more features
Try going to System Restore and restore the computer to before the power outage. If that doesnt work, go to Microsoft.Com and install IE7 again, or download IE 8 Beta 1 if you are a developer. Hope that helps!!

Why is my IE 7 Browser seeing the CSS Box Model as "subtractive" rather than "additiv

I know there was a bug in IE up til version 5 that incorrectly included padding in the width and height. but it was apparently fixed in IE 6 and 7. I'm on IE 7 now but it's still reading it completely opposite of Firefox (which correctly sees it as additive). And I don't think it's in Quirks Mode because my pages have a DOCTYPE. Any ideas?



Why is my IE 7 Browser seeing the CSS Box Model as "subtractive" rather than "additive" (which it should be)?safari browser





Consult the help manual.

HELP PLEEASSE. IE/Firefox/wireless problem.?

Okay so I just hooked up my mums laptop to our wireless network and I tried to connect but the message "FORBIDDEN



you were dennied access because:



access denied by access control list."



This occurs on both firefox 2 and ie 6



I would rather fix firefox than IE.



Best answer will be given to the first solution that works.



Thanks In advance!



HELP PLEEASSE. IE/Firefox/wireless problem.?microsoft office





I don;t think its your browser. There either a rule on your wireless router than prevents your laptop from going to the internet or to a specific web site or there must be a security software installed on the laptop.



HELP PLEEASSE. IE/Firefox/wireless problem.?opera browser internet explorer



The only things that come to mind are:



1. Make sure ur firewall on your mom's laptop allows it to connect to ur network. Some firewalls like McAfee need users to allow entrance into a network.



2. Make sure the firewall on your router is allowing other computers to connect. Most routers these days have build in firewalls that may prevent any other computer from connecting. Do a direct connect to ur router (by logging on to the IP Address), and make sure ur firewall settings are ok.



3. WEP!!!! If u have set a password for ur router, then make sure ur typing it correctly into ur laptop. THis is a very common error.



?Since ur getting a "Forbidden" error, then it must be a security issue. Good luck!!!
You can try http://forums.speedguide.net/forumdispla...

 
web hosting providers