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...
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.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: February 2010
http://kalit-codesnippetsofnettechnology.blogspot.com/2010_02_01_archive.html
Code snippets for .Net technology. Thursday, February 25, 2010. Appling Linq on ADO.net. Marking sql-like queries on datatable with linq. From employee in employees.AsEnumerable(). Foreach (DataRow emp in query). LastName") ": ");. Labels: Appling Linq on ADO.net. Tuesday, February 16, 2010. Editable DatagridView linked with database. Using System.Collections.Generic;. Using System.ComponentModel;. Using System.Data;. Using System.Drawing;. Using System.Linq;. Using System.Text;. Private void frmUpdateDB...
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: June 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_06_01_archive.html
Code snippets for .Net technology. Wednesday, June 22, 2011. Automate mail merge in C#. Object oMissing = System.Reflection.Missing.Value;. Object oTrue = true;. Object oFalse = false;. WordApplication oWord = new Word.Application();. WordDocument oWordDoc = new Word.Document();. OWordVisible = true;. Word Mail Merge Template file. Object oTemplatePath = System.Windows.Forms.Application.StartupPath " Report.dot";. Foreach (Word.Field myMergeField in oWordDoc.Fields). Example: MERGEFIELD Name * MERGEFORMAT.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: March 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_03_01_archive.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. Tuesday, March 22, 2011. General Class for FTP Functions. To Make Directory on the FTP-Server. Public static void MakeDir(string dirName). FtpWebRequest reqFTP = null;. Stream ftpStream = null;.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: September 2009
http://kalit-codesnippetsofnettechnology.blogspot.com/2009_09_01_archive.html
Code snippets for .Net technology. Wednesday, September 30, 2009. Example: string sdate = dt.GetDateTimeFormats()[3]; / mm/dd/yyyy. 7) Monday, September 01, 2003. 8) September 01, 2003. 9) Monday, 01 September, 2003. 10) 01 September, 2003. 11) Monday, September 01, 2003 12:00 AM. 12) Monday, September 01, 2003 12:00 AM. 13) Monday, September 01, 2003 0:00. 14) Monday, September 01, 2003 00:00. 15) September 01, 2003 12:00 AM. 16) September 01, 2003 12:00 AM. 17) September 01, 2003 0:00. 51) 09/01/03 12:...