How to reseed SQL Server identity coloumn Get link Facebook Twitter Pinterest Email Other Apps March 02, 2011 dbcc checkident ('TableName', reseed, 100) Get link Facebook Twitter Pinterest Email Other Apps Comments
Office 365 service comparison August 26, 2014 http://technet.microsoft.com/en-us/office/dn788955 Read more
Post packing slip of sales order in X++ December 18, 2009 SalesFormletter SalesFormletter; SalesTable SalesTable; ; SalesFormletter = SalesFormletter::construct(DocumentStatus::Confirmation,true); SalesTable.clear(); SalesTable = SalesTable::find(_salesId); SalesFormletter.update(SalesTable, systemDateGet(), SalesUpdate::All, AccountOrder::None, false, false); Read more
C#: Format number to string with comma separated with thousand place May 19, 2011 int number = 1000000000; string whatYouWant = number.ToString("#,##0"); //You get: 1,000,000,000 Read more
Comments