http://www.codeproject.com/KB/shell/recyclebin.aspx
How to make Recycle - Bin in .net using C#
Visit this article and make your recycle bin
http://www.codeproject.com/KB/shell/recyclebin.aspx
http://www.codeproject.com/KB/shell/recyclebin.aspx
Related Posts:
SQL - Tools ( INSERT,UPDATE and DELETE Statement)INSERT INTO table_nameVALUES (value1, value2, value3,...)IF a table Persons contains P_Id,LastName,FirstName,Address,City columns.If you want to inser… Read More
SQL - Tools (BETWEEN Operator)SELECT column_name(s) FROM table_nameWHERE column_name BETWEEN value1 AND value2 SELECT * FROM COILS WHERE COIL_NAME BETWEEN SomeValue1 AND SomeValue… Read More
SQL - Tools(Top Clause AND Like Operator)SELECT TOP 1 FROM Table_NameThis will select 1 row from tableSELECT TOP 1* FROM Table_Name (Select all columns of 1st row)SELECT TOP 2* FRO… Read More
SQL Tools(JOIN Operator(Inner join, Left join, Right join))INNER JOIN Operator :-INNER Join return all rows from the join of left table and right table if there are same data available in both tables if no dat… Read More
SQL Tools(Alias Operator & In Operator)ALIAS Name for Column :-SELECT Column_Name AS Alias_Name FROM Table_NameALIAS Name for table :-SELECT Column_Name From Table_Name AS Alias_NameALIAS E… Read More
0 comments:
Post a Comment