How to Display Quick Launch in Web Part Pages/Custom Pages in Moss 2007

To Display Quick Launch in Custom Web Part Pages

Follow the Below Steps to Enable Quick Launch :

Normally when we create the Web Part page the quick launch will not be displayed in left navigation bar

Open the Page for editing in Sharepoint Designer Remove the LeftNavBar Content Place holder from Master Page […]

Programmatically Update List Content in SharePoint

Hi Devs,

The Below is the Sample Code to update the Sharepoint list content programmatically by using SharePoint Object Model.

SPSite Site = new SPSite(“http://localhost:21000”); SPWeb Web = Site.OpenWeb(); SPList List = Web.Lists[“Address Book”]; SPListItem ListItem = List.GetItemById(0);

string FullName = string.Empty;

FullName = ListItem[“FirstName”].ToString() + ListItem[“LastName”].ToString(); SPListItem[“FullName”] = FullName; ListItem.Update();

Error when submitting InfoPath form SharePoint Services form library (InfoPath cannot connect to the data source)

Using the RegForm Tool to Create a Fully Trusted Form

Use the Below Syntax to Register form in the Server as Fully Trusted

RegForm /U urn:MyForm:MyCompany /T Yes C:MyFormsMyTrustedForm.xsn

If the Form is Fully Trusted then it will have the access to connect to other data sources such as SQL.

Excel Services Architecture

The Below Microsoft Article Clearly Explains the architecture for the Excel Service in MOSS 2007.

http://msdn2.microsoft.com/en-us/library/ms582023.aspx

which version of sharepoint is installed, 64bit or 32 bit

This is a small trick to find which version of sharepoint is installed in machine either 32 bit or 64 bit.

Windows Server 2003 x64 Edition redirects the Program Files directory for all programs. The 32-bit application during the installation to the Program Files(x86) directory. Programs that 64-bit are installed into the Program Files directory.

[…]

SharePoint WorkFlow Templates is not appearing in VisualStudio Project Templates

If the SharePoint WorkFlow templates is not appearing in the VisualStudio Project Template. There is an workaround to Solve this issue.

Execute the below command in the Visual Studio Command Prompt

devenv /setup

Thanks & Regards, Udayakumar Ethirajulu http://groups.msn.com/DevGeeks

Visual Studio 2005 Extensions for SharePoint Workflow

Wokflow is integrated with MOSS(Microsoft Office SharePint Server 2007), The workflow integration with MOSS 2007 can be created in the following two ways.

Out Of the BOX functionality WorkFlow in SharePoint Designer 2007 Creating Custom Workflow in Visual Studio 2005 using SharePoint workflow Extensions

Download and install Visual Studio 2005 Extensions for SharePoint Workflow

Thanks […]

WebCasts in Office 2007 & Moss 2007

Hi SharePoint Developers, I found the following Live & OnDemand webcasts from Microsoft for SharePoint Technologies. WebCasts are a free Internet broadcast service provided by Microsoft. Its very valuable asset to learn Technology. Make use of them On-Demand Webcasts

Microsoft Office System Webcast: Tips and Tricks for Microsoft Windows SharePoint Services (Level 200) Original Air […]

Microsoft WebCasts for MOSS 2007

Hi, I have added the upcoming and ondemand webcasts available in sharepoint 2007.

check my sharepoint blog:

Uday’s SharePoint Blog – Moss 2007 WebCasts

Commerce Server 2007 & Moss 2007 Integration WhitePaper

Commerce Server 2007 & Moss 2007 Integration Hi, Microsoft Released the Following Technical White paper for Integration between commerce server 2007 and Moss 2007. I am doing Proof of Concept in this Integration. The basic integration is done through the changes in web.config for commerce server site and moss central administration site and portal site’s […]