Monday, 29 July 2013

HR management system project is used in companies for organizing employees inside organization. This system will look after employee recruitment, allocating new employees for a project, career module and admin module. HR management system is managed by HR team for managing employee salaries..etc as explained above. Here we provide Human resource management system project...
Library Management System on Entity Framework Hi All this is Library Management System Developed on DotNet using Entity Framework. System Requirements : windows xp7 or heigher Visual Studio 2010 or heigher Note: just open web project in visual studio and create database by entity data model and run the code. click here below to download this full source code ...

Monday, 17 June 2013

connect to sql database using c# add these library first using System.Data; using System.Data.SqlClient; create string to connect with database string  str = @"Data Source=(local);Initial Catalog=database;Persist Security Info=True;User ID=username;Password=password";  SqlConnection con = new SqlConnection(); //create object to connect sql     SqlCommand cmd = new SqlCommand(); // create object to send command in sql     DataTable dt = new DataTable();  //create...
create database in windows application here is in image given below  you can view how to create sql datbase in windows application. ...
READ GROUP EMAIL USING C#. first Create table for user id and password. like this below tablae name : emailusers : 1. id int unique 2. userid nvarchar 50 3. pass nvarchar 50 when Timer starts. //set timer as you need read all userid and password from table that you create by for loop like this below create connection and retreive all users with pass in grid. then do this code int a; a=grid.rows.count; //grid is id of gridview for(int i=0;i<a;i++) { string id =grid.rows[i].cell[0].value.tostrig() string...

Saturday, 8 June 2013

Send and Receive SMS in .NET using GSM modem This source code is for Send and Receive SMS in .NET using GSM modem. You can use this SMS Application program to send SMS from your PC using GSM modem connected to your computer. Its complete working project code for sending and receiving sms using C#.Net. You can implement this project source code to your project and this...
By using this program user can collect email addresses from local .txt files documents or any non-binary file. select any text file, application will extract all valid email address from text file ...
Chat Application (connecting winforms to webapp chat service) Features:1. Chat Application Sample to connect your Winform Application to Web App Chat service Useful with following Scenarios1. Realtime based apps2. if you want your client application(be it web or winform apps) to get notified when data has changes3. of course can be used as chat application can be suited...
This application calculates your waist to hip ratio and gives you the results to two decimal places. It also gives you the results accurate for your sex. It groups the results into three categories of excellent, average, or poor, depending on the value and then gives corresponding health advice. Increasingly doctors see waist to hip ratio as a more accurate measurement...

Saturday, 20 April 2013

This is a Example forlong running process PleaseWaitButton examples Example 1 - Simple Test Example 2 - Testing with Client-Side Validation Example 3 - Testing with Existing onclick Handler Download here  Download Link&nbs...
Basiclly this is for a engineering universty project ,admin can enter subject detail,create session or year he can add student detail and after that he can enter semester or year wise student marks and every student have a unique id he can login with his /her id and view their result easily. Download here Download Li...
online web application for sending message to mobile of different networks without any charges using your internet connection Download Code here Download Li...
In this code you can find all code of a shopping cart site Database is in App_Code Folder just  Edit some text and as you need and enjoy a shopping cart code. Download the full code here Download Lin...
YouTube Downloader Using C# Introduction  This article shows how to download YouTube videos using C# code only. The code is very simple to understand and anyone can easily integrate it to in their solution or project. I didn't use any third party library to do this task. All you need is to take two .cs files and integrate them to your project. Using...

Friday, 19 April 2013

GMAIL INBOX READER Introduction  This is a protocol (a set of commands) used by an email client to connect to and retrieve email(s) from the mailbox on the remote server. We will develop the code that connects to the POP3 server and sends commands to retrieve the list of emails on the server, and then later, using an ASP.NET page, display the list to the user. To demonstrate...