c#

Inventory Management System

Submitted by Raj.Sharma on
It is written using C# and Sql Server 2008 r2... Main Features are : 1. Suppliers Management 2. Stock Management 2.1 Order Stock 2.2 Receive Stock 2.3 Sell Stock 2.4 Transfer Stock 2.5 Order List 3. Reports 3.1 Purchase Order 3.2 Stock Transaction 3.3 Inventory Restore Database from .sql script using sql server management studio 2008 For students or anyone else who needs program or source code for

How to Create Windows Service C#

Submitted by thusitcp on
In this tutorial we are going to learn how to create windows service. One of the powerful feature of .NET environment is it is facilitate to create windows services. Windows services are executable applications that run in background. They are controlled by Service Control Manager. According to Microsoft windows service is very much close to unix concept of cron job. Usually starts when windows

Some Impotent Data Grid Technique

Submitted by thusitcp on
Data grid is most powerful component of the .net environment and can be used to populate data web/ and widows averment. In this tutorial I am going to teach you few data handling techniques of data grid control. It gives you to develop data driven application in .net environment and provide some great and needed futures like pagination, sorting, row editing etc. I am here going to introduce some

Introduction to LINQ With C#

Submitted by thusitcp on
Introduction to LINQ Integrating data queries into c# has been a goal for years. Microsoft put lot of effort to such a goal over the years. At lat outcome is LINQ (Language Integrated Queries). Using LINQ we can specify what object we want without knowing the type of data source. There are two type of method usage in LINQ. Static method represents the query operators and anonymous method specifies

How To Create WCF Service

Submitted by thusitcp on
Introduction In this tutorial you are going to learn WCF one of the key features of Visual Studio. WCF stand for windows communication foundation. WCF is one of powerful introduction of .net framework and provide grate solutions for space left by the web services. Using WCF we can build secure, reliable, transacted solutions that integrate across platforms. Building a distributed system is a very

Facade Design Pattern with C#.NET and SQL Server

Submitted by thusitcp on
Most of software companies are making high cost software for their clients around the world so software development should become profitable business to development companies. Standard development process, well define cording style always helpful to achieve their business goals. As my experience lot of software has some portion of common occurring problems. Developing same component for each client will be reducing profit of software companies. To overcome above issues now a day’s software companies used reusable component.

Test Engine (WPF)

Submitted by Raj.Sharma on
This is a WPF application that can help users track and analyze their performance in tests. It also stores their scores in various tests for future reference. It is written using C# and Sql Server 2008 r2... U can learn : Developing Login Module Developing Admin Module Developing The Student Module Restore Database from .sql script using sql server management studio 2008 For students or anyone

Object Oriented Programming Style in C# (OOP)

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to use OOP (Object Oriented Programming) in C#.

What is OOP?

OOP is when you are able to run multiple instances of one class or form at one time without them colliding in to one another. I will give you an example; Let's say that we have a 'person' class, with the variables to hold that person's name and age. Without OOP, we could only have one person.

Skype4COMLib Skype API Auto Response in C#

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to use the Skype4ComLib Libaries in C# .NET to access our Skype program on our computer.

SKYPE4COMLib:

To use the Skype libaries you need to first obtain them via .NET Framework installation of 4.0 or later. I am using 4.5 for this tutorial, then you want to create a new Console/Form application in Visual Studio for a C# application. Right click on your application in the 'Solution/Package Explorer', click on 'Add', then 'Reference', select 'COM' from the side tabs, and choose 'SKYPE4COMLib Libary'.

Buffer Overflow Attack Protection in C# .NET

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to secure your application in C# from Buffer Overflow Attacks.

What's a Buffer Overflow Attack? (BTA)

A buffer overflow attack is when the user purposefully enters too much data in such a way that the program will spill the data across different memory locations which will cause unexpected behaviour such as opening another vulnerability for the attack to exploit. This works through the use of user input.