August 2009 Entries

Programmatically creating views for a SharePoint discussion forum

    As you can see I'm still working on sites, lists and views and I ran into another challenge.   It started out very basic. I wanted to create a discussion forum list on a site.   // Create new list listGuid = newWeb.Lists.Add("Forum", "ForumDescription", "Forum", "00BFEA71-6A49-43FA-B535-D15C05500108", 108, "", SPListTemplate.QuickLaunchOptions.Off); SPList forumList = newWeb.Lists[listGuid];   After succesfully creating the forum list I wanted to add a custom view to the list. That seemed to be easy enough as well.   // Add an extra view to the...