How To Ideas | How To Articles | How To Tutorials


List/Grid Tag Archives: create

How to create new Friend List in Facebook

Facebook provides two types of Friend List Smart Lists These are the lists that update automatically based on your info which you have in common with your friends, like a college, job, etc. So, if your from a particular city and one of your friend changes its city to yours, then he/she will automatically updated to the smart list based on your city. Custom Lists You can also create Friend… Read more »

How To Create Auto-Increment Column In A SQL Server Table

You can create an auto-increment or auto-decrement table in SQL Server, which will automatically add value for every new row by incrementing or decrementing the value of last row. These type of Column are known as Identity Column. These kind of columns are generally required where you want to set some kind of ID for any thing like Employee ID in Employee table, Session ID in Session table, Item ID… Read more »

How To Create New Database In SQL Server

In this article, I will show you the basic step of creating a database in SQL Server 2008. You can also create database in SQL Server 2005 using the same step that I will show you here. Instructions: Open SQL Server Management Studio and Log In to your Account. Open Object Explorer in SQL Server and expand the Database Folder there. You will see all the currently present databases there…. Read more »

How To Create A New Folder Using C#

IF you want your application to create folders or directories dynamically at run time to save any kind of data or files, you can do so by using any of the following command/method.     System.IO.Directory.CreateDirectory(@"D:\hello") System.IO.DirectoryInfo dinfo = new DirectoryInfo(@"D:\hello"); dinfo.Create();   If you want to check whether a directory with the name you specified already exists or not then you can try the following method   System.IO.DirectoryInfo dinfo =… Read more »



© 9654 How To Ideas. All rights reserved.
Proudly designed by Theme Junkie.