Questions tagged [sharepoint-2007]

SharePoint 2007 is a Server Product from Microsoft. It is an Application Development Framework that helps you create web applications in no time. It combines collaboration and web publishing, providing a wide palette of functionality (Content Management, Search, wiki, blog etc.) all under its stack.

For SharePoint-specific questions, please see the SharePoint Stack Exchange site.


SharePoint 2007 is a Server Product from Microsoft. It is an Application Development Framework that helps you create web applications in no time. It is used for collaboration, web publishing and file sharing as well as providing a wide palette of functionality: content management, search, wiki, blogs, etc.

Questions that suit this tag:

  1. Those related to the functionality of SharePoint.
  2. Specific help with code or debugging.
  3. Advice on best practices.

SharePoint 2007 is also known by the following names:

  1. MOSS – Stands for Microsoft Office SharePoint Server
  2. SharePoint – with the release of SharePoint 2010 this name has become ambiguous.

Frequently Asked Questions related to this Tag:

  1. Getting Started

Important Links that will help you:

  1. Trial Download
  2. Latest Service Pack SP2.
  3. Product site
  4. Product Team Blog
  5. Books you should read
3016 questions
52
votes
6 answers

Get domain name

My computer is in a Domain (Active Directory) and I need to get the domain name dynamically. I found the following code on the internet: SelectQuery query = new SelectQuery("Win32_ComputerSystem"); using (ManagementObjectSearcher searcher = new…
Osvier
  • 810
  • 1
  • 8
  • 24
36
votes
5 answers

How bad is it to not dispose() in Powershell?

Sometimes we need to perform small administrative tasks in SharePoint. A simple PowerShell script is a really good tool for that. For instance, such script can enumerate event handlers of a…
naivists
  • 32,681
  • 5
  • 61
  • 85
28
votes
7 answers

Add ScriptManager to Page Programmatically?

I am developing a WebPart (it will be used in a SharePoint environment, although it does not use the Object Model) that I want to expose AJAX functionality in. Because of the nature of the environment, Adding the Script Manager directly to the page…
Kyle Trauberman
  • 25,414
  • 13
  • 85
  • 121
23
votes
2 answers

What does square bracket [] mean in the below code?

I got below code from http://msdn.microsoft.com/en-us/library/dd584174(office.11).aspx for adding custom property in webpart tool pane. What does square bracket ([]) mean in the below code? [Category("Custom Properties")] …
Hojo
  • 935
  • 1
  • 7
  • 13
22
votes
21 answers

FileNotFoundException with the SPSite constructor

I try to instantiate an instance of SPSite on the farm server in a custom process (MyApp.exe) and I give it as parameter the whole URI (http://mysite:80/). I also made sure that the account running MyApp.exe is Site Collection…
Maxime Rouiller
  • 13,614
  • 9
  • 57
  • 107
18
votes
11 answers

SharePoint 2007 Log Viewer

SharePoint 2007 (WSS or MOSS) logs are not easy to read even on a large screen, has anyone come across a log viewer that is able to: Display SharePoint logs live and historical Filter the events by various parameters Cope with SharePoint's log…
Richard Slater
  • 6,313
  • 4
  • 53
  • 81
14
votes
4 answers

Sharepoint LookUp field on Choice field?

How to create a lookup field for the Choice field..For eg: In a list i have Choice field and i have to create an lookup column in other list pointing to this choice field ..When i select this list this column is not appearing in the…
Govind
  • 544
  • 1
  • 6
  • 23
13
votes
4 answers

Sharepoint 2013 REST API not returning all items for a list

The title states my problem quite exactly. If I try to gather all 400+ items from a list using sharepoint's REST API, I only get first 100. I have read http://msdn.microsoft.com/en-us/library/office/dn292552(v=office.15).aspx and in the "Working…
leopik
  • 2,323
  • 2
  • 17
  • 29
13
votes
2 answers

How to open URL in SSRS report in webpart to new window

I have created a report that I will embed in Sharepoint 2007 via a webpart using a report viewer. This works well and looks rather nice, however in the report I have a text field whose action is "Go To URL". When I click on the link within the…
Kixoka
  • 989
  • 4
  • 15
  • 37
12
votes
2 answers

How do I use the Sharepoint Web Service to get a list of documents from .NET?

Technologies: Winforms, .NET, C#, Sharepoint Web Services I'm currently writing a winform desktop application that is supposed to access a specific list of Sharepoint documents and custom input variables (From a Sharepoint Document…
Christian
  • 503
  • 3
  • 7
  • 21
12
votes
4 answers

SQL IN equivalent in CAML

Is there a "nice" way to create a CAML query for SharePoint that does something like this? SELECT * FROM table WHERE Id IN (3, 12, ...) Or am I stuck with a nightmare of nested nodes? EDIT: This was my solution to generate the nodes. ///…
Chris
  • 4,393
  • 1
  • 27
  • 33
12
votes
7 answers

How to access sharepoint data using C#?

I am working on project where I have to access SharePoint data in C#. I've never done this before; and have the following questions? How would I access SharePoint data from C#? What API do I use? Are there any tutorials out there that will help me…
Preeti
  • 1,386
  • 8
  • 57
  • 112
11
votes
2 answers

SPWeb.Groups vs SPWeb.AssociatedGroups

I've seen three types of group properties for an SPWeb object - Groups, SiteGroups, AssociatedGroups. I understand that SiteGroups will fetch all the groups in the current site collection. But what is the difference between Groups and…
NLV
  • 21,141
  • 40
  • 118
  • 183
10
votes
2 answers

SharePoint - get value of calculated field without manual parsing

I have a calculated field in a list with this formula: =CID & " - " & Title When viewing the list, it might display as: "2 - Big Meeting". When I grab the value from code like so: myItem["CIDandTitle"] the value comes back as: "string;#2 -…
Chloraphil
  • 2,719
  • 7
  • 35
  • 44
10
votes
9 answers

How to rename a list in Sharepoint

Is it possible to rename a list in Sharepoint 2007 using the web interface? I would like navigation url to change as well. I have tried change the name using the settings option on the list. This will change the title but not the navigation url.
Matt Spradley
  • 7,854
  • 9
  • 31
  • 40
1
2 3
99 100