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 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 »
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: caluculation of columns of data tables, Compute Function for data table, compute values of data tables | Leave a Comment »
Posted by selectall on July 28, 2009
Posted in Tech Q&A | Tagged: Computer Organisation, Tips and Tips - Computer Organisation | Leave a Comment »
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
Posted in ASP.net C# | Tagged: code analysis tool, code efficiency tool, FxCop, tool for coding standards | Leave a Comment »
Posted by selectall on July 14, 2009
Posted in Networking | Tagged: Data Communications and Networking - Behrouz A. Forouzan ppt, Introduction ot ISO OSI, ISO OSI Reference Model, Layered Architecture, OSI Model, The ISO - OSI Model, Why ISO OSI | Leave a Comment »