|
By Udayakumar Ethirajulu , on August 18th, 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 […]
By Udayakumar Ethirajulu , on June 28th, 2007 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();
By Udayakumar Ethirajulu , on May 15th, 2007 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.
By Udayakumar Ethirajulu , on May 12th, 2007 The Below Microsoft Article Clearly Explains the architecture for the Excel Service in MOSS 2007.
http://msdn2.microsoft.com/en-us/library/ms582023.aspx
By Udayakumar Ethirajulu , on May 9th, 2007 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.
[…]
By Udayakumar Ethirajulu , on May 4th, 2007 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
By Udayakumar Ethirajulu , on April 29th, 2007 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 […]
By Udayakumar Ethirajulu , on April 12th, 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 […]
By Udayakumar Ethirajulu , on April 8th, 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
By Udayakumar Ethirajulu , on April 7th, 2007 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 […]
|
|