kalitsikka.blogspot.com
Striking with .Net technology: Scrum Methodology
http://kalitsikka.blogspot.com/2010/02/origins-of-scrum-scrum-software.html
Striking with .Net technology. Saturday, February 6, 2010. The Origins of Scrum. The Scrum software development process is arose from shared concerns between Advanced Development Methods (ADM) and VMARK Software (VMARK). ADM produces process automation software. VMARK produces object-oriented software development environments. Both companies were concerned over the lack of breakthrough productivity being reported in object-oriented development projects. Both ADM's and VMARK's products are...Scrum formali...
kalitsikka.blogspot.com
Striking with .Net technology: July 2009
http://kalitsikka.blogspot.com/2009_07_01_archive.html
Striking with .Net technology. Wednesday, July 29, 2009. C# Constraints on Generic Types. C# Constraints on Generic Types. Why Use Generic Constraints. You can also set up constraints on generic classes. What if you wanted to create a generic list of objects that derived from a certain base class? This would allow you call certain functions that existed in that class. By constraining the type, you increase the number of functions you can perform on the type. Private string name;. Private int id;. Friday,...
kalitsikka.blogspot.com
Striking with .Net technology: February 2010
http://kalitsikka.blogspot.com/2010_02_01_archive.html
Striking with .Net technology. Saturday, February 6, 2010. The Origins of Scrum. The Scrum software development process is arose from shared concerns between Advanced Development Methods (ADM) and VMARK Software (VMARK). ADM produces process automation software. VMARK produces object-oriented software development environments. Both companies were concerned over the lack of breakthrough productivity being reported in object-oriented development projects. Both ADM's and VMARK's products are...Scrum formali...
kalitsikka.blogspot.com
Striking with .Net technology: June 2009
http://kalitsikka.blogspot.com/2009_06_01_archive.html
Striking with .Net technology. Friday, June 19, 2009. How to make window services in .Net. How to make window services in .Net. We can start, stop, or pause a Windows service from the Windows Services management console. This MMC (Microsoft Management Console) can be opened by selecting the group from the Administrative Tools programs group. All the services currently running on our system. Windows Services in DOTNET. 8226; Service Program. 8226; Service Control Program. To write a service class, we need...
vtechinfo.blogspot.com
VTech Info: 12/01/2010 - 01/01/2011
http://vtechinfo.blogspot.com/2010_12_01_archive.html
All important info of .Net and Sharepoint and other. Saturday, December 18, 2010. Blogger integrates with Amazon Associates. Earlier this year we simplified the process for monetizing your blog by adding a “Monetize” tab. In the Blogger app. We started with AdSense, which allows you to add contextual advertising to your pages; more recently we added AdSense for Feeds. If you’ve ever written a blog post about a book, recommended a gadget, or reviewed a toy you bought for your kids, you’ve like...To get st...
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: Get ASCII in C#
http://kalit-codesnippetsofnettechnology.blogspot.com/2011/03/get-ascii-in-c.html
Code snippets for .Net technology. Thursday, March 3, 2011. Get ASCII in C#. Public static string GetASCIIValue(string strValue). Return Encoding.ASCII.GetString(. Encoding.ASCII.EncodingName,. New EncoderReplacementFallback(string.Empty),. String s1 = FinancialMIS Apps.StringManipulation.GetASCIIValue("Expression");. String s2 = FinancialMIS Apps.StringManipulation.GetASCIIValue("Räksmörgås");. Subscribe to: Post Comments (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Mail Merge in C#.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: July 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_07_01_archive.html
Code snippets for .Net technology. Friday, July 22, 2011. Comma separated values in SQL Server. For comma seperated value. SELECT id,id AS idlist ,VName [Name],0 AS [Status] FROM testTableData. WHERE fk id = 0. SELECT ct.id,tt.id AS idlist,tt.Vname [Name],1 AS [Status] FROM testTableData tt. INNER JOIN ctm AS ct ON ct.id = tt.FK id. AND ct.[Status] = 0. SELECT * FROM ctm ORDER BY id,idlist,[Name]. Subscribe to: Posts (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Export to Excel with XSLT.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: April 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_04_01_archive.html
Code snippets for .Net technology. Friday, April 1, 2011. Recursive Search for Folders and Files. Public ClsFolderNFileCollection GetCollectionOfRecursiveDirAndFiles(string Src, List. ClsFolderNFileCollection objDirAndFileCollection = new ClsFolderNFileCollection();. Files = Directory.GetFileSystemEntries(Src);. Foreach (string Element in Files). ObjDirAndFileCollection.FolderCollection.Add(Element);. GetCollectionOfRecursiveDirAndFiles(Element, Elements);. Throw new Exception(ex.Message);. Striking with...
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: DateTime Stamp Functions
http://kalit-codesnippetsofnettechnology.blogspot.com/2011/03/datetime-stamp-functions.html
Code snippets for .Net technology. Monday, March 28, 2011. Public static string DateTimeIn24Hours(). Return DateTime.Now.ToString("yyyyMMddHHmm");. Public static string DateTimeWithUniqueID(). String guid = Guid.NewGuid().ToString();. Return DateTime.Now.ToString("yyyymmdd") guid;. Labels: DateTime File Names. Subscribe to: Post Comments (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Check password strength in javascipt. Convert Text into Title Case/Sentance Case. Export to Excel with XSLT.