Questions tagged [sharepoint-discussion-board]

25 questions
4
votes
0 answers

Update custom field(choice type) in Discussion list while creating a Threaded Discussion using List.AddDiscussionBoardItem Sharepoint WebService

I'm trying to create a new threaded discussion to sharepoint Discussion board using Sharepoint WebService AddDiscussionBoardItem using the code from below…
2
votes
1 answer

Schema design for Dynamo Db table or Equivalent Nosql Db for Discussion Forum

i am interested in designing a simple discussion forum where users can post a thread,comment on the thread and reply to a particular comment. I am finding it very difficult to come up with schema/database model to implement the comment and reply…
2
votes
1 answer

Sharepoint 2013 Community site: Get values from discussion board

I have to get values programmatically from the discussions list. When I tried this code it is giving the values of replies. SPList oSpListPost = oSPWeb.Lists["Discussions List"]; SPListItemCollection oSpListItemClnPost = oSpListPost.Items; foreach…
Roy Justin
  • 653
  • 3
  • 10
  • 23
1
vote
2 answers

SharePoint Discussion Board "Last updated" field is not updated any more

On of our SharePoint users informed me today about a strange behavior of a discussion board on one of his sites. Normally the standard "subject" view of an discussion list has a field named "Last updated" showing the date and time of the last post…
Flo
  • 27,355
  • 15
  • 87
  • 125
1
vote
1 answer

Problem posting emails to Sharepoint

We currently have a form for posting information with email to discussionboards in Sharepoint. They have exaxtly the same settings for receiving emails. For some reason some of them gets the posted content and some don't. They seems to get to SMTP…
1
vote
0 answers

Is there any Solution for my code problem in webbrowser to identify between Select tag and option

I'm trying to Code webbrowser control to set information to an survey but I face problem to get the Address Survey ? This is my sample in html Code:
1
vote
1 answer

Union and Intersection can be a part of Regular Expression?

I was learning some concepts of AUTOMETA. I have done practice on DFA and RE but there been a question in my mind I searched, but wasn't satisfied so I gona ask: Can UNION or INTERSECTION be a part of RE? Kindly make me understand this concept..any…
Mubeen Khan
  • 330
  • 2
  • 12
1
vote
1 answer

SharePoint - Duplicate search results showing for modified discussion list items

A client of mine is using Discussion Lists in SharePoint Online and has recently noticed that Office 365 search results are showing some discussion list posts twice. Duplicates are only showing for posts which have been recently modified in some…
1
vote
2 answers

Sharepoint discussion board, replicate the settings and rules to a webpart

I am currently developing a sharepoint webpart to display a private discussion board. The discussion can only be viewed by limitted users. The following allowed users as of now could be: Site Collection Owner, Discussion Board Members, Discussion…
1
vote
0 answers

Count discussion board posts

I am working on building a trouble ticket system using a SharePoint 2010 discussion board as the foundation. How do I get a serial number (ID) for the posts and not count the replies. Currently I see the ID adds all the replies on. I need a serial…
1
vote
1 answer

Invalid data has been used to update the list item. The field you are trying to update may be read only

I am getting this error while updating discussion item's any property on SharePoint online. Error doesn't occur in case of document library and custom lists. Error Code is -2147024809 my code goes like this. public static SBUpdatePropsResponse…
1
vote
1 answer

SharePoint 2013 customize Discussion board View Layout and style

I have been searching for a while now on how can i modify the Discussion board look'n feel. E.g. Styles Css Html in views etc... My client wants to have the discussion functionnalities on his site, but he wants to change significantly the look'n…
0
votes
1 answer

Discussion Board Subject View displaying "Attempted to use an object that has ceased to exist."

We did a database upgrade from SharePoint 2007 to SharePoint 2010. We are still using the 2007 interface. After the upgrade there's a problem with one of our discussion boards: The discussion board is included as a web part on the landing page…
Kwirk
  • 964
  • 15
  • 25
0
votes
1 answer

SharePoint Discussion Board View to show one discussion thread

I need to show a particular thread that resides in a discussion board. I am currently trying to use SPViews. The following is my code SPView threadedView = discussionBoard.Views["Threaded"]; threadedView.Title = "Comments WebPart"; …
IanCian
  • 1,098
  • 2
  • 16
  • 34
0
votes
4 answers

Send URL link of discussion board topic in an email from Sharepoint Designer

I have set up a Sharepoint 2007 Discussion Board. I want to create a workflow that sends and email to the creator of a topic within the discussion board when there is a reply on the topic. I want the email to contain a link to the discussion topic -…
1
2