Your Ad Here

Wednesday, February 25, 2009

pdf files try to open in reader 6 reader 9 is installed

ok hear is the deal. Acrobat writer 6 (the one that can make pdfs) is installed. Acrobat reader 9 is installed
when i try to open a pdf (in IE) that needs Acrobat Reader 9 it gives me a error saying i need to update to 8 or 9.

i downloaded the file and right clicked > open with > Acrobat reader 9 (always use this program) and i still get the same error. Acrobat writer wants to keep opening the pdf.

tried to reinstall reader 9 again but still get the same thing.

is there a way to get reader 9 to read it and not Acrobat writer 6.

Read More...
Your Ad Here

Weird Problem

I have intel core 2 quad Q6600 @2.4ghz

and i have 3 OS loaded on my computer.

First Two Being windows XP (SP2 and SP3) and the later one is been Fedora.

And i have installed fedora at the last, so MBR is with Fedora.

Now the problem that when Ive tried to format one of the windows, the windows CD couldnt detect anything, it just get hanged up after the blue screen saying that setup is trying to detect the computer hardware configuration and then everything goes blank.

Well the hard disk light glows full and nothing seems work until i press the restart button.

Before fedora it was UBUNTU and i can easily format linux and put another version there, just that its not continuing with the windows?!

Any help or idea rather than full formatting?

well tried with different windows OS like windows 2000 bootable cd and it worked. Its not working with XP!

Read More...
Your Ad Here

Rate Limiting and Velocity Checking


Lately, I've been seeing these odd little signs pop up in storefronts around town.


7-11 rate limiter


All the signs have various forms of this printed on them:



Only 3 students at a time in the store please


We took that picture at a 7-11 convenience store which happens to be near a high school, so maybe the problem is particularly acute there. But even farther into town, the same signs appear with disturbing regularity. I'm guessing the store owners must consider these rules necessary because:



  • teenage students are more likely to shoplift than most customers
  • with many teenage students in the store, it's difficult for the owners to keep an eye on everyone, which further increases the likelihood of shoplifting.


I'm just guessing; I don't own a store. But like the "no elephants" sign, it must be there to address a real problem.



When you go into a restaurant and see a sign that says "No Dogs Allowed," you might think that sign is purely proscriptive: Mr. Restaurant doesn't like dogs around, so when he built the restaurant he put up that sign. If that was all that was going on, there would also be a "No Snakes" sign; after all, nobody likes snakes. And a "No Elephants" sign, because they break the chairs when they sit down. The real reason that sign is there is historical: it is a historical marker that indicates that people used to try to bring their dogs into the restaurant


All these signs are enough to make me question the ethics of high school students in groups of 3 or more. Although, to be fair, I've seen some really shifty looking graduate students in my day.


In truth, these kinds of limits are everywhere; they're just not as obvious because there's often no signage trail to follow.



  • Most ATMs only allow you to withdraw $300 cash maximum in one day.
  • Free email accounts typically limit how many emails can be sent per day.
  • Internet providers limit individual download and upload speeds to ensure they aren't overselling their bandwidth.
  • There's a maximum on how many Xbox Live Points you can add to your account per day. (All 500+ Rock Band songs aren't going to download themselves, after all.)


I'm sure you can think of lots of other real world examples. They're all around you.


There are people who act like groups of rampaging teenage students online, too, and we deal with them in the same way: by imposing rate limits! Consider how Google limits any IP address that's submitting "too many" search requests:



Several things can trigger the sorry message.


google error: we're sorry, search rate limiter with captcha


Often it's due to infected computers or DSL routers that proxy search traffic through your network - this may be at home or even at a workplace where one or more computers might be infected. Overly aggressive SEO ranking tools may trigger this message, too. In other cases, we have seen self-propagating worms that use Google search to identify vulnerable web servers on the Internet and then exploit them. The exploited systems in turn then search Google for more vulnerable web servers and so on. This can lead to a noticeable increase in search queries and sorry is one of our mechanisms to deal with this.



I did a bit of Google scraping once for a small research project, but I never ran into the CAPTCHA limiter. I think that entry predates its appearance. But it does make you wonder what typical search volumes are, and how they're calculated. Determining how much is "too much" -- that's the art of rate limiting. It's a tricky thing, even for the store owner:



  • Couldn't three morally bankrupt students shoplift just as effectively as four?
  • How do you tell who is a student? Is it based purely on perception of age?
  • Do we expect this rule to be self-enforcing? Will the fourth student walk into the store, identify three other students, and then decide to leave?


Rate limiting isn't always a precise science. But it's necessary, even with the false positives -- consider how dangerous a login entry with no limits on failed attempts could be. This is especially true once your code is connected to the internet. Human students can be a problem, but there's a practical limit to how many students can fit in a store, and how fast they can physically shoplift your inventory. But what if those "students" were an infinite number of computer programs, capable of stealing items from your web store at a rate only limited by network bandwidth? Your store would be picked clean in a matter of minutes. Maybe even seconds!


Not having any sort of rate limiting in your web application is an open invitation to abuse. Even the most innocuous of user actions, if done rapidly enough and by enough users, could have potentially disastrous effects.


Even after you've instituted a rate limit, you can still get in trouble. On Stack Overflow, we designed for evil. We have a Google-style rate limiting CAPTCHA in place, along with a variety of other bot defeating techniques. They'be been working well so far. But what we failed to consider was that a determined (and apparently ultra-bored) human user could sit there and solve CAPTCHAs as fast as possible to spam the site.


And thus was born a new user based limit. I suppose we could create a little sign and hang it outside our virtual storefront:



Only 1 question per new user every 10 minutes, please.


There are a few classes of rate limiting or velocity checking you can do:



  1. Per user or API key. Ensure that any given user account or API account key holder can only perform (n) actions per minute. This is usally fairly safe, though it won't protect you from a user who automates the creation of 100 puppet accounts to do their bidding. It all depends how strictly you tie identity to the API key or user; you can easily ban, or in the worst case, track down the culprits and ask them to desist.



  2. Per IP address. Ensure that any given IP address can only perform (n) actions per minute. This works well in the typical case, but can cause problems for multiple users who happen to be behind a proxy that makes them appear to you as the "same" IP address. This is the only method possible on mostly anonymous sites like Craigslist, and it definitely works, because I've been on the receiving end of it. Example implementations are mod_evasive for Apache, or the IIS7 Dynamic IP Restriction module.



  3. Per global action. Ensure that a particular action can only happen (n) times per minute. Kind of the nuclear option, so obviously must be used with care. Can make sense for the "big red launch button" administrator functions which should be extraordinarily rare -- until a malicious user happens to gain administrator rights and starts pushing that big red button over and over.


I was shocked how little comprehensive information was out there on rate limiting and velocity checking for software developers, because they are your first and most important line of defense against a broad spectrum of possible attacks. It's amazing how many attacks you can mitigate or even defeat by instituting basic rate limiting.


Take a long, hard look your own website -- how would it deal with a roving band of bored, morally ambiguous schoolkids?





[advertisement] Improve Your Source Code Management using Atlassian Fisheye - Monitor. Search. Share. Analyze. Try it for free!



Read More...

[Source: Coding Horror - Posted by FreeAutoBlogger]

Your Ad Here

Partitioning free space and unallocated space

Hello
Im trying to create 1 partition from free space and unallocated space with Disk Management in Windows XP but it will not let me, it will only create 2 partitions. :banghead:

What is the difference between free space and unallocated space? I see that it (unallocated space) is not part of the extended partition. is that part of the problem?
free space = extended partiton
unallocted = :?:
and if that is part of the problem how can I extend the extended partition? :hmm: maybe this makes more sense
"How can I add the unallocated space to the extended partition"?
Thanks

Image

Read More...
Your Ad Here

You're Doing It Wrong


In The Sad Tragedy of Micro-Optimization Theater we discussed the performance considerations of building a fragment of HTML.



string s =
@"
{0}{1}

{2}

{3}
{4}
";
return String.Format(s, st(), st(), st(), st());


The second act of this particular theater was foreshadowed by Stephen Touset's comment:



The correct answer is that if you're concatenating HTML, you're doing it wrong in the first place. Use an HTML templating language. The people maintaining your code after you will thank you (currently, you risk anything from open mockery to significant property damage).


The performance characteristics of building small string fragments isn't just a red herring -- no, it's far, far worse. The entire question is wrong. This is one of my favorite lessons from The Pragmatic Programmer.



When faced with an impossible problem, identify the real constraints. Ask yourself: "Does it have to be done this way? Does it have to be done at all?"


If our ultimate conclusion was that performance is secondary to readability of code, that's exactly what we should have asked, before doing anything else.


Let's express the same code sample using the standard ASP.NET MVC templating engine. And yes, we render stuff like this all over the place in Stack Overflow. It's the default method of rendering for a reason.



<%= User.ActionTime %>

<%= User.Gravatar %>

<%= User.Details %>
<%= User.Stuff %>



We have a HTML file, through which we poke some holes and insert the data. Simple enough, and conceptually similar to the String.Replace version. Templating works reasonably well in the trivial cases when you have an object with obvious, basic data types in fields that you spit out.


But beyond those simple cases, it's shocking how hairy HTML templating gets. What if you need do to a bit of formatting or processing to get that data into shape before displaying it? What if you need to make decisions and display things differently depending on the contents of those fields? Your once-simple page templates get progressively more and more complex.



<%foreach (var User in Users) { %>
<%= ActionSpan(User)%>

<% if (User.IsAnonymous) { %>
<%= RenderGravatar(User)%>

<%= RepSpan(User)%>
<%= Flair(User)%>

<% } else { %>
anonymous

<% } %>
<% } %>


This is a fairly mild case, but you can see where templating naturally tends toward a frantic, unreadable mish-mash of code and template -- Web Development as Tag Soup. If your HTML templates can't be kept simple, they're not a heck of a lot better than the procedural string building code they're replacing. And this is not an easy thing to stay on top of, in my experience. The daily grind of struggling to keep the templates from devolving into tag soup starts to feel every bit as grotty as all that nasty string work we were theoretically replacing.


Now it's my turn to ask -- why?


I think existing templating solutions are going about this completely backwards. Rather than poking holes in HTML to insert code, we should simply treat HTML as code.


Like so:



foreach (var User in Users)
{
[ActionSpan(User)]

if (User.IsAnonymous)
{

[UserRepSpan(User)]
[UserFlairSpan(User)]

}
else
{
anonymous

}
}


Seamlessly mixing code and HTML, using a minumum of those headache-inducing escape characters. Is this a programming language for a race of futuristic supermen? No. There are languages that can do this right now, today -- where you can stick HTML in the middle of your code. It's already possible using Visual Basic XML Literals, for example.


Visual Basic XML Literals used in an ASP.NET MVC view


Even the hilariously maligned X# has the right core idea. Templating tends to break down because it forces you to treat code and markup as two different and fundamentally incompatible things. We spend all our time awkwardly switching between markup-land and code-land using escape sequences. They're always fighting each other -- and us.


Seeing HTML and code get equal treatment in my IDE makes me realize one thing:


We've all been doing it wrong.





[advertisement] In charge of a mountain of Windows servers? PA Server Monitor to the rescue! Download the Free Trial!



Read More...

Your Ad Here

Which is better to use? "div" or "tables"

Hi all,

Im new here and I would like to know some doubts that I have. I observer that some websites are using "div" and other "tables".

What is the difference between those 2? What do I get or what results, if I use "div" or "tables" in my website.

To be honest, before I was using "tables" in my header and footer templates, and my site had a score of 95% SEO in whois.domaintools.com

But after I switched all things to "div", now my score had lowered to 85%, is that posible and could had been because of the changing code?

Some friends told me that using "div" is better for a fastest speed of the website...

I would like to hear some professional opinions.
Thanks alot to all,
___________________________________
Dont hardlink in your posts.

Read More...
Your Ad Here

The Smashing Book: Join In!


No, we’re not giving anything away in this post. Instead, we’ve got some work to do, and we need you to play an important role in it. Our most interesting (and important) project for 2009 is something we are modestly calling “The Smashing Book”: a smashingly written, beautifully designed and professionally printed book. It will be created by and for the Web design community. Four key decisions have already been made: the book’s title will be “The Smashing Book”; it will be a paperback; the price is fixed, as is the release date, which is early September 2009.


The Smashing Book


We want to create a totally unique and exciting book, full of insightful and useful articles; a book that contains only articles that a reader of Smashing Magazine would really want to read. No fluff, no cruft, just hearty meat and potatoes content.


To achieve this, we need the help of our community: your help. And what could be better than working on this important project together with our readers? If you want to participate in our project, please visit the forum (the registration is required for replies) and help in any of the following ways:


1. Suggest The Book Content


First, you can suggest a topic for The Smashing Book. Let us know what you want to read and what topics we should cover. What enticing, creative, useful articles should be written? What should a Smashing Book contain? You can propose any topic you think would be great, but it must fit the small universe of Smashing Magazine and relate to design and Web development.



Once we receive your suggestions, we’ll evaluate them, filter and sort them. If necessary, we’ll open a second and third round of voting, which will (hopefully) help us select the most important and relevant topics.


Afterward, we’ll present the final list of topics to our authors team, discuss the ideas with them and assign topics. Articles for the book can also be written by members of the Web design community. So, if you want to propose an article for the book, please suggest your idea in the Book topics forum.


2. Suggest The Cover Design (Front And Back)


We want you to decide what The Smashing Book will look like. You can propose ideas for an unforgettable book cover design (any colors can be used), and you can also present your drafts in the Cover design forum. We’d love to see first drafts and invite forum members to discuss them, too! We haven’t decided anything about the appearance of the book yet, so free your imagination.



3. Suggest The Book Layout


Help us decide on the perfect layout for The Smashing Book. How should it be designed? What typefaces should be used? What about font sizes, headings, columns, footnotes, image captions, page numbers, markup? What structure should the book have in general? We are open to your suggestions, so please participate in the Book layout forum: suggest your ideas and submit your drafts.



4. Help Us Out, And Spread The Word!


We want you to be part of The Smashing Book. Help us out by designing some outstanding buttons, badges, banners, pins, icons, graphics and whatever else you can think of. We are confident that together we’ll achieve truly outstanding results, even if the process will be a long one and see the inevitable hurdles along the way.


Of course, we will reward you! And as you would expect, we’ll also have small, exclusive rewards to give away to the most active helpers and participants.


Thanks for reading. And now, let’s get to work!


(al)







� Vitaly Friedman & Sven Lennartz for Smashing Magazine, 2009. |
Permalink |
58 comments |
Add to del.icio.us | Digg this | Stumble on StumbleUpon! | Submit to Reddit | Submit to Facebook | Who is linking? | Forum Smashing Magazine



Post tags: , ,





Read More...
Your Ad Here

Please help me with my problem, thanks!

Lately, each time I first open an internet explorer window upon booting my computer, my BitDefender software will detect a "Trojan.Generic.1375154", and claim that the "file has been deleted". However, this happens every time I open an IE window for the FIRST time upon booting, and the file name will always be the same. I suspect it could be a regenerating file, but I cant seem to find that file by myself, even in the stated file directory.

Second, my IE windows have been closing by itself quite often.

Third, I cant seem to run Windows Update anymore, because of an error "Code 80072F8F". Apparently its because my computer clock is not synchronised with the Windows clock, but Ive seen to that, but nothing seems to work.

Id really appreciate if you could help me with my problems! Thank you in advance! :)

-----------------------------------------------------------------------------------

Logfile of Trend Micro HijackThis v2.0.2
Scan saved at 4:01:28 PM, on 25/02/2009
Platform: Windows Vista SP1 (WinNT 6.00.1905)
MSIE: Internet Explorer v7.00 (7.00.6001.18000)
Boot mode: Normal

Running processes:
C:Windowssystem32taskeng.exe
C:Windowssystem32Dwm.exe
C:WindowsExplorer.EXE
C:Program FilesWindows DefenderMSASCui.exe
C:WindowsRtHDVCpl.exe
C:WindowsSystem32SysMonitor.exe
C:AcerEmpowering TechnologyeDataSecurityeDSloader.exe
C:Program FilesBitDefenderBitDefender 2008bdagent.exe
C:Program FilesCanonCanon IJ Network Scan UtilityCNMNSUT.EXE
C:Program FilesJavajre6binjusched.exe
C:Program FilesWindows LiveMessengermsnmsgr.exe
C:Windowsehomeehtray.exe
C:Program FilesWindows Media Playerwmpnscfg.exe
C:Program FilesImationImationFlashDetect.exe
C:Windowsehomeehmsas.exe
C:AcerEmpowering

TechnologyACER.EMPOWERING.FRAMEWORK.SUPERVISOR.EXE
C:AcerEmpowering TechnologyeRecoveryERAGENT.EXE
C:Program FilesInternet Explorerieuser.exe
C:Windowssystem32wuauclt.exe
C:Program FilesCommon FilesMicrosoft SharedWindows

LiveWLLoginProxy.exe
C:Program FilesInternet Exploreriexplore.exe
C:Windowssystem32MacromedFlashFlashUtil10a.exe
C:Program FilesSports InteractiveFootball Manager 2009fm.exe
C:Program FilesTrend MicroHijackThisHijackThis.exe
C:Windowssystem32SearchFilterHost.exe

R1 - HKCUSoftwareMicrosoftInternet ExplorerMain,Search Page =

http://sg.rd.yahoo.com/customize/ycomp/ ... .yahoo.com
R0 - HKCUSoftwareMicrosoftInternet ExplorerMain,Start Page =

http://en.sg.acer.yahoo.com/
R1 - HKLMSoftwareMicrosoftInternet ExplorerMain,Default_Page_URL =

http://en.sg.acer.yahoo.com
R1 - HKLMSoftwareMicrosoftInternet ExplorerMain,Default_Search_URL =

http://go.microsoft.com/fwlink/?LinkId=54896
R1 - HKLMSoftwareMicrosoftInternet ExplorerMain,Search Page =

http://go.microsoft.com/fwlink/?LinkId=54896
R0 - HKLMSoftwareMicrosoftInternet ExplorerMain,Start Page =

http://en.sg.acer.yahoo.com
R0 - HKLMSoftwareMicrosoftInternet ExplorerSearch,SearchAssistant =
R0 - HKLMSoftwareMicrosoftInternet ExplorerSearch,CustomizeSearch =
R1 - HKCUSoftwareMicrosoftInternet ExplorerSearchURL,(Default) =

http://sg.rd.yahoo.com/customize/ycomp/ ... .yahoo.com
R1 - HKCUSoftwareMicrosoftWindowsCurrentVersionInternet

Settings,ProxyOverride = *.local
R0 - HKCUSoftwareMicrosoftInternet ExplorerToolbar,LinksFolderName =
R3 - URLSearchHook: Yahoo! Toolbar - {EF99BD32-C1FB-11D2-892F-

0090271D4F88} - C:Program FilesYahoo!CompanionInstallscpnyt.dll
O1 - Hosts: ::1 localhost
O2 - BHO: Yahoo! Toolbar Helper - {02478D38-C3F9-4EFB-9B51-

7695ECA05670} - C:Program FilesYahoo!CompanionInstallscpnyt.dll
O2 - BHO: Adobe PDF Reader Link Helper - {06849E9F-C8D7-4D59-B87D-

784B7D6BE0B3} - C:Program FilesCommon

FilesAdobeAcrobatActiveXAcroIEHelper.dll
O2 - BHO: Skype add-on (mastermind) - {22BF413B-C6D2-4d91-82A9-

A0F997BA588C} - C:Program FilesSkypeToolbarsInternet

ExplorerSkypeIEPlugin.dll
O2 - BHO: RealPlayer Download and Record Plugin for Internet Explorer -

{3049C3E9-B461-4BC5-8870-4C09146192CA} - C:Program

FilesRealRealPlayerrpbrowserrecordplugin.dll
O2 - BHO: Java(tm) Plug-In SSV Helper - {761497BB-D6F0-462C-B6EB-

D4DAF1D92D43} - C:Program FilesJavajre6binssv.dll
O2 - BHO: (no name) - {7E853D72-626A-48EC-A868-BA8D5E23E045} - (no

file)
O2 - BHO: EndNote Web - {82D2E569-25A7-4e4d-9FA3-C5025B4B7912} -

C:Program FilesEndNote WebENWIEPlug.dll
O2 - BHO: ShowBarObj Class - {83A2F9B1-01A2-4AA5-87D1-

45B6B8505E96} - C:Windowssystem32ActiveToolBand.dll
O2 - BHO: Windows Live Sign-in Helper - {9030D464-4C02-4ABF-8ECC-

5164760863C6} - C:Program FilesCommon FilesMicrosoft

SharedWindows LiveWindowsLiveLogin.dll
O2 - BHO: Adobe PDF Conversion Toolbar Helper - {AE7CD045-E861-484f-

8273-0445EE161910} - C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll
O2 - BHO: Windows Live Toolbar Helper - {BDBD1DAD-C946-4A17-ADC1-

64B5B4FF55D0} - C:Program FilesWindows Live Toolbarmsntb.dll
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-

9C25C1C588A9} - C:Program FilesJavajre6binjp2ssv.dll
O3 - Toolbar: Yahoo! Toolbar - {EF99BD32-C1FB-11D2-892F-0090271D4F88}

- C:Program FilesYahoo!CompanionInstallscpnyt.dll
O3 - Toolbar: Acer eDataSecurity Management - {5CBE3B7C-1E47-477e-

A7DD-396DB0476E29} - C:Windowssystem32eDStoolbar.dll
O3 - Toolbar: Adobe PDF - {47833539-D0C5-4125-9FA8-0819E2EAAC93} -

C:Program FilesAdobeAcrobat 8.0AcrobatAcroIEFavClient.dll
O3 - Toolbar: Windows Live Toolbar - {BDAD1DAD-C946-4A17-ADC1-

64B5B4FF55D0} - C:Program FilesWindows Live Toolbarmsntb.dll
O3 - Toolbar: BitDefender Toolbar - {381FFDE8-2394-4f90-B10D-

FC6124A40F8C} - C:Program FilesBitDefenderBitDefender 2008

IEToolbar.dll
O3 - Toolbar: EndNote Web - {945C8270-A848-11D5-A805-00B0D092F45B} -

C:Program FilesEndNote WebENWIEPlug.dll
O4 - HKLM..Run: [Windows Defender] %ProgramFiles%Windows

DefenderMSASCui.exe -hide
O4 - HKLM..Run: [RtHDVCpl] RtHDVCpl.exe
O4 - HKLM..Run: [Acer Empowering Technology Monitor]

C:Windowssystem32SysMonitor.exe
O4 - HKLM..Run: [eDataSecurity Loader] C:AcerEmpowering

TechnologyeDataSecurityeDSloader.exe
O4 - HKLM..Run: [Microsoft Genuine Logon] svchost.exe
O4 - HKLM..Run: [ISUSScheduler] "C:Program FilesCommon

FilesInstallShieldUpdateServiceissch.exe" -start
O4 - HKLM..Run: [BDAgent] "C:Program FilesBitDefenderBitDefender

2008bdagent.exe"
O4 - HKLM..Run: [IJNetworkScanUtility] C:Program FilesCanonCanon IJ

Network Scan UtilityCNMNSUT.EXE
O4 - HKLM..Run: [SunJavaUpdateSched] "C:Program FilesJavajre6

binjusched.exe"
O4 - HKCU..Run: [MessengerPlus3] "C:Program FilesMessengerPlus! 3

MsgPlus.exe" /WinStart
O4 - HKCU..Run: [msnmsgr] "C:Program FilesWindows

LiveMessengermsnmsgr.exe" /background
O4 - HKCU..Run: [updateMgr] C:Program FilesAdobeAcrobat 7.0

ReaderAdobeUpdateManager.exe AcRdB7_0_0
O4 - HKCU..Run: [ehTray.exe] C:WindowsehomeehTray.exe
O4 - HKCU..Run: [WMPNSCFG] C:Program FilesWindows Media

PlayerWMPNSCFG.exe
O4 - HKUSS-1-5-19..Run: [Sidebar] %ProgramFiles%Windows

SidebarSidebar.exe /detectMem (User LOCAL SERVICE)
O4 - HKUSS-1-5-19..Run: [WindowsWelcomeCenter] rundll32.exe

oobefldr.dll,ShowWelcomeCenter (User LOCAL SERVICE)
O4 - HKUSS-1-5-20..Run: [Sidebar] %ProgramFiles%Windows

SidebarSidebar.exe /detectMem (User NETWORK SERVICE)
O4 - Startup: ImationFlashDetect.lnk = C:Program

FilesImationImationFlashDetect.exe
O4 - Global Startup: Empowering Technology Launcher.lnk = ?
O8 - Extra context menu item: &Windows Live Search - res://C:Program

FilesWindows Live Toolbarmsntb.dll/search.htm
O8 - Extra context menu item: Add to Windows &Live Favorites -

http://favorites.live.com/quickadd.aspx
O8 - Extra context menu item: Append to existing PDF - res://C:Program

FilesAdobeAcrobat 8.0AcrobatAcroIEFavClient.dll/AcroIEAppend.html
O8 - Extra context menu item: Convert link target to Adobe PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIECapture.html
O8 - Extra context menu item: Convert link target to existing PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIEAppend.html
O8 - Extra context menu item: Convert selected links to Adobe PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIECaptureSelLinks.html
O8 - Extra context menu item: Convert selected links to existing PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIEAppendSelLinks.html
O8 - Extra context menu item: Convert selection to Adobe PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIECapture.html
O8 - Extra context menu item: Convert selection to existing PDF -

res://C:Program FilesAdobeAcrobat 8.0

AcrobatAcroIEFavClient.dll/AcroIEAppend.html
O8 - Extra context menu item: Convert to Adobe PDF - res://C:Program

FilesAdobeAcrobat 8.0AcrobatAcroIEFavClient.dll/AcroIECapture.html
O8 - Extra context menu item: E&xport to Microsoft Excel -

res://C:PROGRA~1MICROS~2Office12EXCEL.EXE/3000
O9 - Extra button: Blog This - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600}

- C:Program FilesWindows LiveWriterWriterBrowserExtension.dll
O9 - Extra Tools menuitem: &Blog This in Windows Live Writer - {219C3416

-8CB2-491a-A3C7-D9FCDDC9D600} - C:Program FilesWindows

LiveWriterWriterBrowserExtension.dll
O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-

5663EE0C6C49} - C:PROGRA~1MICROS~2Office12ONBttnIE.dll
O9 - Extra Tools menuitem: S&end to OneNote - {2670000A-7350-4f3c-

8081-5663EE0C6C49} - C:PROGRA~1MICROS~2Office12ONBttnIE.dll
O9 - Extra button: ICQ - {6224f700-cba3-4071-b251-47cb894244cd} -

C:Program FilesICQICQ.exe
O9 - Extra Tools menuitem: ICQ - {6224f700-cba3-4071-b251-47cb894244cd}

- C:Program FilesICQICQ.exe
O9 - Extra button: Skype - {77BF5300-1474-4EC7-9980-D32B190E9B07} -

C:Program FilesSkypeToolbarsInternet ExplorerSkypeIEPlugin.dll
O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263}

- C:PROGRA~1MICROS~2Office12REFIEBAR.DLL
O13 - Gopher Prefix:
O16 - DPF: {0CCA191D-13A6-4E29-B746-314DEE697D83} (Facebook Photo

Uploader 5 Control) -

http://upload.facebook.com/controls/200 ... PhotoUploa

der5.cab
O16 - DPF: {4F1E5B1A-2A80-42CA-8532-2D05CB959537} (MSN Photo

Upload Tool) - http://gfx2.mail.live.com/mail/w1/resou ... MSNPUplden

-sg.cab
O16 - DPF: {5C051655-FCD5-4969-9182-770EA5AA5565} (Solitaire

Showdown Class) -

http://messenger.zone.msn.com/binary/So ... b56986.cab
O16 - DPF: {5C6698D9-7BE4-4122-8EC5-291D84DBD4A0} (Facebook Photo

Uploader 4 Control) -

http://upload.facebook.com/controls/Fac ... oader3.cab
O16 - DPF: {5F8469B4-B055-49DD-83F7-62B522420ECC} (Facebook Photo

Uploader Control) -

http://upload.facebook.com/controls/Fac ... loader.cab
O16 - DPF: {62789780-B744-11D0-986B-00609731A21D} (Autodesk

MapGuide ActiveX Control) - http://www.can.com.sg/mwf/mgaxctrl.cab
O16 - DPF: {C3F79A2B-B9B4-4A66-B012-3EE46475B072}

(MessengerStatsClient Class) -

http://messenger.zone.msn.com/binary/Me ... t.cab56907.

cab
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} (Shockwave

Flash Object) -

http://fpdownload2.macromedia.com/get/s ... wflash.cab
O16 - DPF: {D4323BF2-006A-4440-A2F5-27E3E7AB25F8} (Virtools

WebPlayer Class) - http://3dlifeplayer.dl.3dvia.com/player ... taller.exe
O16 - DPF: {E85362EF-40D4-4E5D-BE07-D6B036CCA277} (GoPets Control)

- https://secure.gopetslive.com/dev/gopets.cab
O16 - DPF: {F5A7706B-B9C0-4C89-A715-7A0C6B05DD48} (Minesweeper

Flags Class) -

http://messenger.zone.msn.com/binary/Mi ... b56986.cab
O16 - DPF: {F8C5C0F1-D884-43EB-A5A0-9E1C4A102FA8} (GoPetsWeb

Control) - https://secure.gopetslive.com/dev/GoPetsWeb.cab
O18 - Protocol: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D}

- C:PROGRA~1COMMON~1SkypeSKYPE4~1.DLL
O20 - AppInit_DLLs: C:PROGRA~1GoogleGOOGLE~1GOEC62~1.DLL
O23 - Service: Lavasoft Ad-Aware Service (aawservice) - Lavasoft -

C:Program FilesLavasoftAd-Awareaawservice.exe
O23 - Service: Adobe LM Service - Adobe Systems - C:Program

FilesCommon FilesAdobe Systems SharedServiceAdobelmsvc.exe
O23 - Service: Apple Mobile Device - Apple Inc. - C:Program FilesCommon

FilesAppleMobile Device SupportbinAppleMobileDeviceService.exe
O23 - Service: Ati External Event Utility - ATI Technologies Inc. -

C:Windowssystem32Ati2evxx.exe
O23 - Service: Bonjour Service - Apple Inc. - C:Program

FilesBonjourmDNSResponder.exe
O23 - Service: BrSplService (Brother XP spl Service) - brother Industries Ltd -

C:Windowssystem32brsvc01a.exe
O23 - Service: eRecovery Service (eRecoveryService) - Acer Inc. -

C:AcerEmpowering TechnologyeRecoveryeRecoveryService.exe
O23 - Service: FLEXnet Licensing Service - Macrovision Europe Ltd. -

C:Program FilesCommon FilesMacrovision SharedFLEXnet

PublisherFNPLicensingService.exe
O23 - Service: LightScribeService Direct Disc Labeling Service

(LightScribeService) - Hewlett-Packard Company - C:Program

FilesCommon FilesLightScribeLSSrvc.exe
O23 - Service: BitDefender Desktop Update Service (LIVESRV) - BitDefender

SRL - C:Program FilesCommon FilesBitDefenderBitDefender Update

Servicelivesrv.exe
O23 - Service: LiveUpdate Notice Service Ex (LiveUpdate Notice Ex) -

Unknown owner - C:Program FilesCommon FilesSymantec

SharedccSvcHst.exe (file missing)
O23 - Service: BitDefender Virus Shield (VSSERV) - BitDefender S.R.L. -

C:Program FilesBitDefenderBitDefender 2008vsserv.exe
O23 - Service: BitDefender Communicator (XCOMM) - BitDefender -

C:Program FilesCommon FilesBitDefenderBitDefender

Communicatorxcommsvr.exe

--
End of file - 13008 bytes

Read More...
Your Ad Here

Can I change white backgrounds on webpages to grey?

Hi All.
Just bought a 24" LCD monitor and find white pages blindingly white and hurting my eyes.

Is it possible in Windows Vista to change all white backgrounds on Internet sites to gray like this page? I dont want to place a screen over my screen but to alter the background colour.

Grateful for your advice,
Thanks,
sara.

Read More...
Your Ad Here