Selectall

We Share What We Get

  • Archives

Archive for the ‘ASP.net C#’ Category

Number To English

Posted by selectall on July 28, 2009

NumberToEnglish conWord = new NumberToEnglish();

dt.Columns.Add(“AmountInWord”, Type.GetType(“System.String”));

DataRow row2;

row2 = dt.Rows[0];

row2["AmountInWord"] = conWord.changeCurrencyToWords(sTHeadAmount.ToString());

Posted in ASP.net C# | Leave a Comment »

Compute Function for data table

Posted by selectall on July 28, 2009

int TotalAmount = Convert.ToInt32(dtTotalAmt.Compute(“SUM(amount_pay)”, “amount_pay > 0″));

RemAmount = RemAmount – HeadTotalAmount;

Posted in ASP.net C# | Tagged: , , | Leave a Comment »

FxCop – code analysis tool

Posted by selectall on July 25, 2009

FxCop is a code analysis tool that checks .NET managed code assemblies for conformance to the Microsoft .NET Framework Design Guidelines. It uses MSIL parsing, and callgraph analysis to inspect assemblies for more than 200 defects in the following areas:

Library design
Globalization
Naming conventions
Performance
Interoperability and portability
Security
Usage

FxCop includes both GUI and command line versions of the tool and supports analyzing .NET 1.x, .NET 2.0 and .NET 3.x components.

This version provides support for .NET 3.5 SP1.

More Information visit and download:

http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx

http://www.microsoft.com/downloads/details.aspx?familyid=9AEAA970-F281-4FB0-ABA1-D59D7ED09772&displaylang=en#QuickInfoContainer

fxcop1 copy

Read the rest of this entry »

Posted in ASP.net C# | Tagged: , , , | Leave a Comment »

Date Difference in Asp.net

Posted by selectall on July 9, 2009

string startDate = “4/24/2007″;

string endDate = “3/24/2007″;

DateTime sDate = Convert.ToDateTime(startDate);

DateTime eDate = Convert.ToDateTime(endDate);

TimeSpan dateDiff = eDate.Subtract(sDate);

int days = dateDifference.Days;

Posted in ASP.net C# | Tagged: , | Leave a Comment »

Dynamic Crystal report in Asp.net Export Data to Excel

Posted by selectall on July 8, 2009

In this example two tasks are covered

1. Crystal Report with dynamic column

2. Export data table

Download Here Dynamic Report and Export to Excel

Posted in ASP.net C# | Leave a Comment »

Allow editing in debugging mode

Posted by selectall on July 6, 2009

Allow editing in debugging mode

Allow editing in debugging mode

Uncheck this check box, YES UNCHECK and see…

Posted in ASP.net C# | Tagged: , , , | Leave a Comment »