As for running processes (although I doubt it's something actively running) feel free to haphazardly "End Process" (assuming Win2k/XP) anything you want - if it's a
crucial process, it won't let you terminate it. Note, however, that explorer.exe is
not a crucial process, and can be safely ended, although you'll make your taskbar disappear. To get it back again, CTRL-ALT-DEL, Task Manager, File -> New Task (Run)... and type in "explorer.exe".
ANYway.... it's more likely to be a service or run-on-startup registry key IMO.
Originally posted by Nico
That's indeed one of the reasons why I switched to Mozilla.
But I have to say: don't listen to geeks, Mozilla is far from being as good as they say, there's lots of crappy stuff with it ( what's with it merging frames, for exemple? and it doesn't like labels either, it seems - you know, when you put the mouse over a pic, and you get a small window with a description appearing over it. well, they won't appear with Mozilla. Just to name a couple things).
Merging frames? What do you mean?
As for the mouseover tooltips, trust me on this - Mozilla
does support them. And as with
many "standards"-related problems today, the problem can be laid squarely in IE and MS's laps. Here's the lowdown:
For images, most people specify the
alt="..." attribute of the
< img... > tag as the mouseover text.
This behaviour is wrong. The
alt="...." attribute is to specify what text should be displayed
instead of the image if, for whatever reason, the image cannot be displayed. For example:
[q]
The image below has the
alt="..." attribute set to "missing image one":

[/q]
What you should see above is an outline of the image (since I also specified a width and height), the little "broken image" icon, and the text "missing image one" inside. Internet Explorer tries to be "helpful" and also displays that text as the tooltip text when you hover over the image with the cursor.
But, as stated before, this behavior is wrong. There is a specific attribute to the
img tag for specifying the mouseover text, and that is the
title="..." attribute. Watch:
[q]
The image below has the
title="..." attribute set to "missing image two":

[/q]
The (missing) image above should be displayed as a border with the "broken image" icon, and no text inside. The "missing image two" should only appear when you hover the mouse over the image.
Finally the third example:
[q]
The image below has the
alt="..." attribute set to "alternate text for image 3" and the
title="..." attribute set to "title for missing image three":

[/q]
Now we have both methods used, with different content for each. Both Mozilla AND IE correctly display the
alt="..." text inside the image border and the
title="..." text in the tooltip. But the problem is caused by IE's "extra help" in the first examlpe - webmasters became careless in writing HTML code, expecting the
alt="..." attribute would generate the tooltip text, as it does in IE. Then they don't understand why it's "broken" in a browser that follows the rules.
