Saturday, August 2, 2008

Friendship Day SmS Collection By PavanGadey


Friendship is not about finding similarities, it is about respecting differences. You are not my friend coz you are like me, but because i accept you and respect you the way you are.

By pavanGadey



Thank you for touching my life in ways you may never know. My riches do not lie in material wealth, but in having friend like you - a precious gift from God.

By pavanGadey



Good FRIENDS CaRE for each Other..
CLoSE Friends UNDERSTaND each Other...
and TRUE Friends STaY forever
beyond words,
beyond time...**

By pavanGadey



FRiEND in different lanaguages...
Iranian - DOST
German - FREUND
Herbew - CHAVER
French - AMi
Pinoy - KAiBiGAN
Dutch - VREND
Mexican - AMiGO

For me.. just simply "YOU"

By pavanGadey



Stars has 5 ends
Square has 4 ends
Trinagle has 3 ends
Line has 2 ends
but Circle of our friendship has no end...

By pavanGadey



A daily thought...

A silent tear...

A Constant wish that u r near...

Words are few but thoughts r deep...

Memories of our frenship i'll always keep!!

By pavanGadey



Being a friend is not just sharing a joke, a conversation, a cup of coffee or a funny story. It means sharing an honest and true part of yourself.

By pavanGadey



In this cruel world it is very difficult to find friend with beautiful heart, pure feelings, attractive personality & stylish looks. So learn to value me!

By pavanGadey



When I was born, GOD said, "Oh No! Another IDIOT". When you were born, GOD said, "OH No! COMPETITION". Who knew, one day these two will become FREINDS FOREVER!

By pavanGadey



Sometimes in life we think we don't need anyone. But sometime we don't have anyone when we need... So don't let your best buddies go ever...

By pavanGadey

Wednesday, July 30, 2008

PowerMenu

PowerMenu is a small application I wrote back in 1998 that some extra menu items to the windows control menu in addition to the standard "Close", "Maximize", etc options. The extra menus are: Always On Top, Transparency and Minimize To Tray.




I've created a simple one click installer for PowerMenu.

PowerMenu Download Installer

Tuesday, July 29, 2008

Vista wallpapers collection by gadeypavan

http://rapidshare.com/files/133351611/Vista_Papers.zip

Monday, July 21, 2008

Sql Syntax

SQL > SQL Syntax

In this page, we list the SQL syntax for each of the SQL commands in this tutorial. For detailed explanations of each SQL syntax, please go to the individual section by clicking on the keyword.

The purpose of this page is to have a quick reference page for SQL syntax, so you can learn SQL more quickly. Bookmark this page now by pressing Control-D so you can have this syntax page handy.

Select Statement
SELECT "column_name" FROM "table_name"

Distinct
SELECT DISTINCT "column_name"
FROM "table_name"

Where
SELECT "column_name"
FROM "table_name"
WHERE "condition"

And/Or
SELECT "column_name"
FROM "table_name"
WHERE "simple condition"
{[AND|OR] "simple condition"}+

In
SELECT "column_name"
FROM "table_name"
WHERE "column_name" IN ('value1', 'value2', ...)

Between
SELECT "column_name"
FROM "table_name"
WHERE "column_name" BETWEEN 'value1' AND 'value2'

Like
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}

Order By
SELECT "column_name"
FROM "table_name"
[WHERE "condition"]
ORDER BY "column_name" [ASC, DESC]

Count
SELECT COUNT("column_name")
FROM "table_name"

Group By
SELECT "column_name1", SUM("column_name2")
FROM "table_name"
GROUP BY "column_name1"

Having
SELECT "column_name1", SUM("column_name2")
FROM "table_name"
GROUP BY "column_name1"
HAVING (arithematic function condition)

Create Table Statement
CREATE TABLE "table_name"
("column 1" "data_type_for_column_1",
"column 2" "data_type_for_column_2",
... )

Drop Table Statement
DROP TABLE "table_name"

Truncate Table Statement
TRUNCATE TABLE "table_name"

Insert Into Statement
INSERT INTO "table_name" ("column1", "column2", ...)
VALUES ("value1", "value2", ...)

Update Statement
UPDATE "table_name"
SET "column_1" = [new value]
WHERE {condition}

Delete From Statement
DELETE FROM "table_name"
WHERE {condition}

Friday, July 4, 2008

C Language interview questions i collected

C Language interview questions i collected



http://rapidshare.com/files/127073690/C__test_consists_of_50_questions_by_navap.doc

http://rapidshare.com/files/127073968/C_Interview_Questions2_by_navap.doc.html