How Do I Remove Road Runner From IE Browser?

Posted on September 23rd, 2009 by admin

I uninstalled Road Runner from my laptop but It has attached itself to the IE browser. I’ve tried spybot and ad-aware but nothing seems to be working. I also have avast antivirus.
Does anyone have any experience with this? How do I remove it

It is not that Road Runner is in your browser but rather it was branded with their information. You can run the utility to remove branding from IE and Outlook express.

you can do this manually

Go to Start, choose Run, and type or paste "rundll32 iedkcs32.dll,Clear" without the quotes.
Hit Enter.
Open a browser window and there should not be any branding showing.

http://www.dougknox.com/utility/scripts_desc/unbrand.htm

Filed under ie browser | 3 Comments »

Can you download FireFox Browser over the top of existing same version?

Posted on September 23rd, 2009 by admin

Downloaded the latest version of FireFox Browser, 3.5.2, it’s been havin issues, can I reinstall it again over the existing version and not mess anything up, or lose any information?

Give up on Firefox until its fixed there are currently just too many problems to rate it as a reliable piece of software. Try Orca, K-Meleon or Flock they are all free Mozilla based browsers and are all faster than Firefox. They have been produced by people who agree the Mozilla search engine is best but that firefox has gone wrong somewhere. If you go to firefox help pages or Mozillazine help pages you will see that the people there are extremely arrogant and blame everything and everybody for having problems with Firefox. Not a good sign. IE8 is OK with a shell like Avant or Maxthon or slim browser. But a browser that is not part of the OS will always be more secure. the less well known it is the less likely it will be hacked.

Is there a way to send/view webcams in-browser (With no additional software)?

Posted on September 23rd, 2009 by admin

I wish to be able to make video calls or at least be able to view someone’s cam plugged into their personal computer or they be able to view mine in-browser without additional software.

Is this possible?

without software? I don’t think so.

How do I get a free web browser 4 my Wii?

Posted on September 23rd, 2009 by admin

I mean I tried to transfer some DSi points to it and gave up then I bought some DSi ware with most of my DSi points (100 pts. left).
Also I’m too lazy to go to the store and get a Wii points card, and I don’t have a credit card either.
so, I don’t know what to do. Any help plz?

Stop being lazy lol. That’s all I can say, spend ten minutes of your life and go get one.

Does anyone know of any other free web browsers I could use on my pc besides mozilla/firefox?

Posted on September 23rd, 2009 by admin

I was wondering if there is any other free web browsers out there that won’t put bugs in my computer? I use Firefox but it knocks me offline most of the time.

netscape, opera

How to reinstall the browser on a blackberry storm?

Posted on September 23rd, 2009 by admin

I just purchased a blackberry storm yesterday (June 1) and of course I had to update it. Everything was regained except my browser does not look like it is installed. I have connected it to my computer and used the Blackberry desktop manager to try to install it, but its not there. Also my Apps World doesn’t work anymore, but I really care to regain my browser since it was working fine yesterday and today before I complete the firmware upgrade. HELP!

Ok so what you would need to do is a Handeld Wipe but before that do a Battery Reset and see if that works.

Take the batter out without switching off the phone … and then BB button and make sure it says SHOW ALL .. the icon might be hidden.

Oh and even before that make your you have the INTERNET feature in your price plan. That soc (service offer code) might have expired in your customer profile so just call your customer service first)

Options>Security>General Settings
Menu/BB button>Wipe Handheld>and then follow the on screen instructions

Once that is done
– make sure all the service books are deleted as well
– Options>Advanced Options>Service Book
Delete every single one. The only one you can’t is Provisioning[PROVISIONING]

Then log into your BIS account where you setup your emails … http://(your service providers name).blackberry.com

On the left you’ll see Service Book .. resend them to yourself

p.s. I work as a Tech Solutions Advisor for one of the service providers ;)

Filed under browser | 2 Comments »

What is the world record for most web browsers installed on a single computer?

Posted on September 23rd, 2009 by admin

I am wondering because I am trying to break this record and have over 140 web browsers installed.

Holy Moly o.o
I can only name like 5 >.>
Not sure if there is a record.
But it will easily be beaten because each year theres more browsers

Filed under web browsers | 1 Comment »

What is the best Internet browser to use that is fast and efficient?

Posted on September 23rd, 2009 by admin

Can you help me, because my Internet browsers are sometimes refreshing by itself, so what internet browser is much better to use?

Mozilla Firefox.

What is the safest web browser to use other then firefox?

Posted on September 23rd, 2009 by admin

I am wondering if anyone could recommend a safer web browser to use now that i heard that firefox has just as many security flaws as internet explorer.

Firefox is open source and that means a lot of people work on it all the time and they respond rather rapidly to security threats. Add "No Script" to Firefox as an add-on. That’s why we are currently using this one instead of Internet Explorer.

Opera is not as popular and therefore not as targeted. But they have been recently having some problems. Nonetheless, still a good browser.

If you have Windows, Chrome is your enemy! Apples don’t go well with oranges. When the Google Browser Chrome goes out of beta, it will probably be worth your effort.

Filed under web browser | 11 Comments »

How can JavaScript be used to display things differently in two different browsers?

Posted on September 23rd, 2009 by admin

Hey everyone, I started programming and was wondering how JavaScript can be used to display things differently in two different browsers? Thanks for all help!
Sorry, I mean like explain to me? I understand the code but what are the different ways in which Javascript can be used to display things differently in two different browsers? Thanks!

Use this to have all details of the browser in use:

<script type="text/javascript">
var x = navigator;
document.write("CodeName = " + x.appCodeName);
document.write("MinorVersion = " + x.appMinorVersion);
document.write("Name = " + x.appName);
document.write("Version = " + x.appVersion);
document.write("CookieEnabled = " + x.cookieEnabled);
document.write("CPUClass = " + x.cpuClass);
document.write("OnLine = " + x.onLine);
document.write("Platform = " + x.platform);
document.write("UA = " + x.userAgent);
document . write ("BrowserLanguage = " +
x.browserLanguage);
document . write ("SystemLanguage = " +
x.systemLanguage);
document . write ("UserLanguage = " +
x.userLanguage);
</script>
(Put "document.write ( " sign for BR " );" between each for clarity.)
Use any of these variables to decide what to do…
UA (User agent) is the name of the browser (a long string)

Get the screen width (resolution)

function GetW ( )
{
var myWidth = 0;
if( typeof( window.innerWidth ) == ‘number’ )
//Non-IE
myWidth = window.innerWidth;
else if ( document . documentElement && (
document . documentElement . clientWidth ||
document . documentElement . clientHeight ) )
{
//IE 6+ in ’standards compliant mode’
myWidth = document . documentElement . clientWidth;
}
else if ( document.body &&
( document . body . clientWidth ||
document . body . clientHeight ) )
{
//IE 4 compatible
myWidth = document.body.clientWidth;
}
return (myWidth);
}
(spaces and CR added for clarity and YA line cutter!)

Filed under browsers | 2 Comments »

  • Categories

  • Pages

  • Tags

  • Archives

  • Meta

  •