tag

home / developersection / tag

How to add a right click context menu to the tray icon
c# 15-Jun-2012
How to add a right click context menu to the tray icon

In this tutorial I will show you how to do this in a C# application using Microsoft Visual Studio.

How to minimize form in Taskbar Using NotifyIcon in C#.NET
c# 15-Jun-2012
How to minimize form in Taskbar Using NotifyIcon in C#.NET

In this Article, I will tell you guys, how to minimize the form in Taskbar Using NotifyIcon in Windows Forms using C#.NET:

What is Encapsulation in c#
c# 06-Jun-2012
What is Encapsulation in c#

Encapsulation is the procedure of covering up of data and functions into a single unit (called class). Encapsulation hides the internal state and behavior of an object. Encapsulation is a process of hiding all the internal details of an object

Introduction to inheritance
c# 06-Jun-2012
Introduction to inheritance

Inheritance is the ability to create a class from another class, the "parent" class, extending the functionality and state of the parent in the derived, or "child" class.

Inheritance with virtual function
c# 06-Jun-2012
Inheritance with virtual function

For example create Employee class contains information about an Employee. Create another Type class that inherits the Employee class. Type class contains information employee is fulltime or part-time and also has a Display function that is overridden

Abstraction in c#
c# 06-Jun-2012
Abstraction in c#

Abstract class is having abstract methods. Abstract classes provide a way to force an inherited class to implement and override these abstract methods.

Lambda Expression in C#
c# 21-Mar-2012
Lambda Expression in C#

Lambda expressions reduce the amount of work needed when iterating through data. All enumerable data is queryable through LINQ with use of a SQL-like query (what I mean by that is the query looks like SQL, but is a different flavor).

Custom Message Box in C#.NET
c# 08-Feb-2012
Custom Message Box in C#.NET

Hi, in this article I am going to explain how to create custom message box in c#.net. As we know that by using MessageBox class to display message box but

Events With Delegate
c# 23-Dec-2011
Events With Delegate

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Events // Event Publisher

Delegate and Event in C#
c# 29-Oct-2011
Delegate and Event in C#

Delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method,

See The Whole Data in DataGridView With Selecting A Value From ComboBox:
c# 08-Oct-2011
See The Whole Data in DataGridView With Selecting A Value From ComboBox:

See The Whole Data in DataGridView With Selecting A Value From ComboBox:In this article I will give an example that how to display the data in the dat