Export to Excel
In this article we are going to read and understand how in a web application we can export a grid data in the excel file. As many times in real time programming we generate reports in the grid format to display to the user.
For example
1 .The list of commodities purchased this month
2. Reports of SMS Sent.
3. Reports of invites. etc.and user might want to save this list for the future use. In Excel format then we need to export this grid to the excel.
Prerequisites:
1. To …
Hi All, I am Developing this Application just to help a newbie in the technology and even many of my students have asked me for the application which will demonstrate them how to use a progress bar in C#.net for a windows application. So here is a small application which will solve the purpose. So Here Is the application and description how to develop the application.
1. Create a New Project in VS 2008 or above as per your convince I have installed VS 2008 so I am using that if …
After reading this article we will be able to use a comboobx in a Silverlight application as we are habitual of using it with the formal application. Normally we would like to have a combo box which will show the name of the article or any thing which we would like that our client should see but internally we like to use the ID the primary key or something else to use for the internal purpose. So here are the steps we are going to follow.
Creating the Design Page For …
I have asked the same question from one of my readers with the following scenario:
Sir,
I am creating a console application in which I need to get comments from a text file and display in a group of SingLine Comments and MultiLine Comments.
The following code snippet described the whole solution by-itself:
#region Author initials
/* How to get comments from
* a text file
* Author : Gaurav Arora
* Date : July 12, 2009
* Series: A Step Ahead Series*/
#endregion
#region Namespaces Used
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
#endregion
namespace ReadingCommetFile.AstepAheadSeries
{
#region Class displaying Comments
class Program
{
static void Main(string[] args)
{
//Set the …
Hi All,
The image processing is a very typical task, but still it is simple to do. There are application where we need to create the thumbnail of the uploaded images, at that time we need to resize the image. here is the sample code through which we can resize the image easily..
We just need to use the 2-3 main name spaces that are
1. System.Drawing
2. System.Drawing.Imaging
3. System.Drawing.Drawing2D
with the use of these name spaces we can do our task. i have made a function by which we can create the thumbnail of …