Sign in
Microsoft Premier Field Engineer - SharePoint
All posts are provided "AS IS" with no warranties, and confers no rights.
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Tags
Business Intelligence
Code Samples
Coding Tips
Custom Solutions
Customization
Document library
How To
List
MOSS 2007
Object Model
Performance and capacity planning
Search
server
SharePoint
SharePoint 2010
SharePoint 2010 Developer
SharePoint 2013
SharePoint Foundation 2010
SharePoint Server 2010
Snippets
SPS 2003
Web Services
Workflow
WSS v2
WSS v3
Blog - Link List
SharePoint Blogs
SharePoint Team Blog
SharePoint Thoughts
Stefan Goßner's Blog
Andrew Connell's Blog
Arpan Shah's Blog
SharePoint Resources
SharePoint 2010 Developer
Developers at MSDN
SharePoint Developer Center
SharePoint MSDN Forums
SharePoint Server 2010 Resource Centers
.Net Resources
ASP.NET 4 and Visual Studio 2010
C# Future
.NET Framework
CodePlex - SharePoint
.Net Articles
Microsoft Ajax
Silverlight
Archive
Archives
December 2012
(1)
October 2012
(1)
September 2012
(1)
August 2012
(1)
March 2012
(1)
December 2011
(1)
October 2011
(1)
September 2011
(1)
August 2011
(1)
July 2011
(1)
April 2011
(1)
March 2011
(1)
December 2010
(1)
September 2010
(1)
August 2010
(1)
July 2010
(1)
June 2010
(3)
May 2010
(1)
March 2010
(5)
December 2009
(2)
September 2009
(6)
June 2009
(12)
December 2008
(7)
November 2008
(1)
June 2008
(5)
April 2008
(2)
November 2007
(1)
October 2007
(2)
July 2007
(1)
December, 2009
MSDN Blogs
>
Microsoft Premier Field Engineer - SharePoint
>
December, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Microsoft Premier Field Engineer - SharePoint
Code Snippet to remove duplicate workflow associations from a content type
Posted
over 4 years ago
by
-Tejas
0
Comments
1: using (SPSite site = new SPSite( "http://ms9:105" )) 2: { 3: using (SPWeb web = site.OpenWeb()) 4: { 5: SPList list = web.Lists[ "Shared Documents" ]; 6: 7: foreach (SPContentType con in list.ContentTypes...
Microsoft Premier Field Engineer - SharePoint
Code snippet to download the files along with versions from SPS 2003 document library.
Posted
over 4 years ago
by
-Tejas
0
Comments
1: private void Download() 2: { 3: string siteUrl = txtSite.Text.ToString(); 4: string source = txtDocLib.Text.ToString(); 5: string downloadPath= txtDownload.Text.ToString(); 6: byte [] vContent = null; 7: int count = 1;...
Page 1 of 1 (2 items)