Passing Data Between Window Forms in C#.NET

Filed in ASP.NET, Desktop AppTags: , , , , ,

Passing data between two Window forms can be handling using the Static variables on the forms. Today I am going to show you that how to pass data from one window form to another window form. In this project I am using two window forms names Form1 and Form2. and then I am going to [...]

How to browse an Image and create thumbnail of image in C#.NET Window Project

Filed in ASP.NET, Desktop AppTags: , , , , , , , ,

Uploading an image in the Web Application is very simple. Because the fileupload control is available to do this. But in Window Application this task can be implement by writing code. There is no control available to do this directly. So today I will show you how to browse an image from your system harddisk [...]

How to customize the Dialog Box in C#.Net Window Application

Filed in ASP.NET, Desktop AppTags: , , , , , , , , , ,

Hello everyone, how to show a Dialog Box in C#.NET Window Application? Its very simple task because you just have to show the messagebox.Show() method. But some time we need to customize the dialog box according to our requirement. Today I will show you that how to customize the Dialog Box in C#.NET Window Application. [...]

How to validate Email Address in Window Form in C#.NET

Filed in ASP.NET, Desktop AppTags: , , , , , , , , ,

A perfect Application should not only to show the output as our requirement, the application should also validated by the developer who developed the application. For web application we can use the controls to validate the web page. But in Window Application there is no available control for validation. We have to write code to [...]

How to use Timer Control to develop a Stop Watch Application in C#.NET

Filed in ASP.NET, Desktop AppTags: , , , , , , , ,

While developing Window Application in ASP.NET some time we need to use Timer Control for some specific purpose. The Timer control is mainly used to show your output in specific time intervals. Simply we can say that the Timer control is used in that applications where the developer used to show the output after some [...]

Create Non-Rectangular WinForm in ASP.NET

Filed in ASP.NET, Desktop AppTags: , , , ,

Hello friends! welcome to DotNetAid. This article is for ASP.NET developers. Some time while developing application in asp.net specially in Window Application we need to create such a winform in non-rectangular shape. A non-rectangular winform can also make your application more attractive. So today, In this article, I am sharing a demo project to create non-rectangular winform in ASP.NET. This demo project is developed in C# [...]