Export GridvView to PDF File in C#.NET

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

Previously We have exported the GridView control to Excel/CSV files. Today we are going to export the GridView to PDF File. Exporting the GridView to PDF is a different thing. Because we need some other references to perform this. I have add a reference ‘iTextSharp.dll’ to export into PDF. Also in this article the process [...]

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