List/Grid Source Codes And Help Books Subscribe RSS feed of category Source Codes And Help Books
How To Ideas First Giveaway :/
It has been about six months since we started the this website,so we are here going to start the first giveaway on the site. We are giving away 3 Keys of TuneUp Utility,5 keys of WinX HD Video Converter Deluxe, 20 keys of Dreamspark. So here is how the contest goes.We would be using point systems and the winner would be judged on the basis of random drawing. Lets see…
How To Create, Delete, Edit, Select Registry Keys And Its Values Using C#
Here is our sample project available for you to download for free in which we have covered a number of topics you can learn to manipulate Registry Keys. This project is written in C# and its a console application. Project Features: Finding Registry Keys By Searching For Registry Keys Or By Searching For Registry Values. Deleting Registry Keys And Registry Value Fields. Creating New Registry Keys And Registry Key Values….
C# Tips, Tricks for Beginners eBook–1 released
Here is our 1st eBook, which you can download for free and can learn lot of stuff. Using this free resource, you can learn the basics of C# programming, tips, tricks tutorials the easy way. This book is released with the help of TheWindowsClub. Here is List of all the 20 Tutorials: How to Create SQL Connection in C# How to Write Text to a Txt File in C#…
How To Compare Two Strings In C#
You can easily Compare two strings in C#. Result of Comparison of two strings return either false or true which tells us whether the two strings are equal or not. String Comparison is case sensitive. This means that if you have a single character in a string in different case than the other string, then the two string wont be considered as equal. But you can tell the .NET to…
How To Format Date And Time In C#
You can configure DateTime object to show output in different ways as your need. You can easily fetch the System date and Time by using the following command DateTime dateTime = DateTime.Now; or you can create any custom date time object by using following command DateTime newDateTime = new DateTime(2011, 3, 21, 10, 23, 12); // new DateTime(year, month, day, hr, min, sec) Now if you just output any of…
How To Search A Folder Using C#
Are you looking for a solution to Search A Directory content and find a Directory/Folder with specified name, but not able to find one for yourself. Then here is a simple and best solution to you. I have created a an Application which Searches a directory or the directory itself and its sub directories as well returns us the result consisting of name of directory found, and its full path….
How To Write Text On Images Using C#
You have an image and want to create a signature of your name on it. You can easily Write Text On Images for such purpose by using any Image Editor program. But if you want to create an Application which will do this work for you, then its very easy to create such Application in C#. Instructions: Create a new instance of Image class which will hold the the Image…
How To Search Files In A Directory And Its Sub-Directories Using C#
Are you looking for a solution to Search A Directory content and find a File with specified name, but not able to find one for yourself. Then here is a simple and best solution to you. I have created a full Application which Searches a directory by following 8 different kinds of Search Criteria and returns us the result consisting of name of file found, its size and its full…
How To Perform Searching In String In C#
If you want to perform any kind of searching in strings in c# like If you want to search whether a string is present in another string or not If you want to search whether a character is present in another string or not If you want to check whether a string starts with specified string or not If you want to check whether a string ends with specified string…
How To Crop, Rotate, Resize, Save Images Using C#
If you want to create an application which allows you to load image from your Computer or Internet and then perform some normal manipulations on that image and finally save that image in your hard disk, then you can download my full application on this topic created using C# and Visual Studio 2010. You just learn from it and create your own application with more functionality. Instructions: In this application…