Search Results:

Friday, October 16, 2009

Easily Create Loading GIF's for free

Here is a website to create a Loading GIF and save it to your desktop very easily. Give it a try ?? Click Here

A few samples below are



Another one

Wednesday, October 14, 2009

Disable Autorun of CD's,Pendrives etc

Here is the registry edit that can be done to disable the auto run feature in windows.
  1. Go to RUN type "Regedit".
  2. Go to Hkey_current_user/Software/Microsoft/windows/currentversion/policies/Explorer
  3. Add DWORD "NoDriveTypeAutoRun
  4. Edit the Value to Hexadecimal "FF"
You are set now the auto run is disabled.

Tuesday, October 6, 2009

Query to find no of multiple columns

SELECT id, COUNT(id) AS NumOccurrences
FROM Driver_History
GROUP BY id
HAVING (COUNT(id) = 2)


This above query gives all the rows that have same id's.