Desktop App

Posts filed under Desktop App

How to Use Crystal Report in C#.NET

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

Report is the most important part of any application whether the application is developed in .net or any other platform. We use to print various reports in the application. We can print reports using two types of reports. First one is just a simple report and the other is Crystal Report. The second method is [...]

Build a Setup Project in ASP.NET

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

There are three types of applications in asp.net and that are Console Applications, Web Applications and Window Applications. Today we are talking about Window Applications. While developing Window Applications we need to remember the most import thing about the Window Applications work area. As we know that Window Applications or Window Projects run on the [...]

How to Attach Database File with Window Application Project

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

Attaching Database file inside your ASP.NET Window Application Project is not necessary but sometimes it is very useful for us. There are two ways to use database with your project. The first one is create a database in SQL server and write code in your front end to make a connection and the other one [...]

How to add TabPages in TabControl dynamically in a C#.NET Window Application

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

Today I will tell you about using Tab Control in a Window Application Form. The Tab Control is mainly used to show our WinForms together as a TabPages. Also I am going to share that how to add TabPages at run time or we can say that add Tabpages dynamically. In this project you will [...]

Analog Clock in C#.NET Window Application Form

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

Hello Everyone, Previously we have discussed to develop a Digital Clock using Timer Control in C# Window Application. Today in This Article I will show you how to develop Analog Clock in C#.NET Application. An Analog clock looks more attractive when you develop this in C#.NET.  Since there is no control available for Analog Clock, [...]

Inserting Image into Database in C#.NET Window Application

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

Images are mostely used to recognize identification of any person or firm and while developing any Window Application you need to use Images many times within you Application. And also we need to save that Images into our Database so that we can access that images and use them when required. The one way to [...]

Bind Combobox with Data From Database in C#.NET WinForm

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

A Combobox is a commonly used  Control in WinForm. It is a combination of a List Box and a single-line TextBox, allowing the user to either type a value directly into the control or choose from the list of existing options. Sometime, We need to fetch the data from Database and bind data with Combobox Control, so [...]

How to Add User Control to a Winform in C#.NET

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

A User Control is a kind of composite control that works much like an WinForm. You can add existing  controls and markup to a User Control, and define properties and methods for the control. You can then embed them in WinForm, where they act as a unit. The topics in this section provide information on [...]

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 [...]