Selectall

We Share What We Get

  • Archives

Archive for July, 2009

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 »

Holographic Environment

Posted by selectall on July 28, 2009

Posted in Tech Q&A | Leave a Comment »

Tips and Tips – Computer Organisation

Posted by selectall on July 28, 2009

Posted in Tech Q&A | 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 »

ISO OSI Model

Posted by selectall on July 14, 2009

Posted in Networking | Tagged: , , , , , , | Leave a Comment »