How to Enable Document Information Panel in MOSS 2007

By Default the document information panel will not be enabled in document library.

Go to Library Settings

Click Advanced Settings

Enable allow management of content types in Advanced Settings.

Click the Document Content Type and click on Document Information Panel settings.

Check […]

Item Updating or Updated Event Occurs twice in Document Library

Item Updating or Item Updated Event in SharePoint 2007 occurs twice, if require checkout option is enabled for document library.

I found the following workaround from Microsoft Support for this issue.

Check the value of vti_sourcecontrolcheckedoutby in BeforeProperties and AfterProperties, if the both values are null then the event […]

How to Find the SharePoint Version Installed in System

To find the installed version of SharePoint in system,

Browse to Central Administration -> Operations -> Servers in Farm [Topology and Services]

Version information will be displayed for each and every server.

How to Restrict the Users to Edit from SharePoint Designer

Permission Level for the user or group can be modified to restrict the user to edit in SharePoint designer.

Мапа на Settings -> Advanced Permissions

Click Advanced Permissions, Select Settings -> Permission Levels

You can add/edit existing permission level.

Uncheck Browse Directories Permission level.

Како да користите RSS WebPart во SharePoint

Create New WebPart Page.

In Edit Mode, Click add WebPart then select RSS Viewer WebPart from gallery.

Click Modify Shared WebPart to change to Edit mode of WebPart, then specify the RSS URL.

Како да ја смените почетната страна / Целна страница во Мос 2007

Да ја смените почетната страница или Целна страница во SharePoint,

Одете до

Мапа на дејства ->

(Изглед и чувство) Добредојдовте страница - Одредете го URL на страницата.

Прочитајте програмски сигнали за корисници во Мапа на колекција

SPAlerCollection класа може да се користи за да се добие колекција на сигнализација за корисникот.

Подолу Кодот се користи за читање на сите сигнали регистрирани за корисниците сајт наплата.

приватниот статички празнина GetAlerts()

{

SPSite currSite = new SPSite(“http://Удај”);

CurrWeb SPWeb = currSite.OpenWeb();

SPUserCollection […]

Како да поставите интервалот за сигнали во SharePoint 2007

За да го поставите тајмерот за работа интервал на сигнали може да се постави со користење на setproperty за имотот работа непосредно-сигнали команда во stsadm.

Синтакса:STSADM -o getproperty -pn работа непосредно-сигнали -pv <вредноста на имотот> -URL <URL-то на сајтот>

Пример:STSADM -o getproperty -pn работа непосредно-сигнали -pv “сите 2 минути” -URL http://Удај

[…]

Како да уредам InfoPath XML датотека во форумот библиотека програмски во SharePoint 2007

Подолу линии на код фрагмент е да го обновите на InfoPath XML рекорд(датотека)

SPWeb _web = SPContext.Current.Web; SPList _list = _web.Lists[“SampleFormLib”];

MemoryStream myInStream = new MemoryStream(item.File.OpenBinary()); XmlTextReader читателот = new XmlTextReader(myInStream);

XmlDocument doc = new XmlDocument(); doc.Load(читателот);

reader.Close(); myInStream.Close();

XmlNamespaceManager nameSpaceManager = new XmlNamespaceManager(doc.NameTable); nameSpaceManager.AddNamespace(“мојата”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);

doc.DocumentElement.SelectSingleNode(“мојата:Статус”, nameSpaceManager).Внатрешен текст = “Зачувани”; […]