Desktop App

Posts filed under Desktop App

How to Get Connection String from App.config in .Net Application

Filed in Desktop AppTags: , , , , ,

Hello guys, As we know that while interacting our SQL database to our C#.net or VB.net application we need to access the connectionstring of the SQL database. Once we access the connectionstring then we can use this to execute the SQL commands in our coding page. Now the question is when we have multiple forms [...]

How to Develop Resolution Independent Windows Application in .NET

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

While developing a Windows based application in C#.net the Form size matters when your application is going to run on different different computers. Also the other computers system may have different different resolution. So we need to develop an application that can vary the form size according to the Resolution of the particular system. In [...]

Generating Crystal Reports Without Using Data Set File

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

Crystal reports provide an efficient way to generate reports while developing applications in .net. Previously we discussed the crystal reports and generating reports using data set file(.xsd file). Today in this article we are going to generate the crystal reports without using any dataset file. In this article we are assigning the database table directly [...]

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

Binding Combobox Control With Multiple Columns of Database Table

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

Previously we have discussed that how to bind Combo box control with Database Table’s column in WinForm. Today I will tell you that how to bind a Combo box control with multiple columns of a particular table. The way of binding is very simple. We are not writing extra code or not writing any complicated code to [...]

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 Fetch the Checked Value in RadioButtonList Control in WinForm

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

In this article I will tell you that how to use the RadioButton control as a RadioButtonList control in ASP.NET Winforms. As you know that there is no specific control in place of RadioButtonList. So we use the RadionButton control and do some code so that we can use the RadioControl like a RadioButtonList control. [...]

Barcodes in ASP.NET Applications: Generating Barcode from C#.NET

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

Using this project you can easily Generate Barcode within your C#.NET Window Application. The Barcode is used everywhere now a days. The main reason to use the Barcode is that This code can contain the important information of the particular product and the information is only understandable for the seller/Firm who is selling the product. In this [...]

Paging in DataGridView in C#.net WinForm

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

DataGridView Control provide you very effective  way to show your information. While using the DataGrdView control in .net you need to perform some basic information like retrieving data of DataGridView control. Today I am going to share a most important part of DataGridView control. I am going to tell you to perform Paging in DataGridView [...]