Tuesday, June 29, 2010

Ghostable vs GhostInLibrary

http://www.sharepoint4arabs.com/AymanElHattab/Lists/Posts/Post.aspx?ID=97


http://gvaro.spaces.live.com/blog/cns!B06529FD3FC75473!855.entry

Code which will accept the date in dd/mm/yyyy format and return in the mm/dd/yyyy format in C#

string strFormatted = "";
DateTimeFormatInfo dateTimeFormatterProvider = DateTimeFormatInfo.CurrentInfo.Clone() as DateTimeFormatInfo;
dateTimeFormatterProvider.ShortDatePattern = "dd/MM/yyyy"; //source date format
DateTime dateTime = DateTime.Parse(strDate, dateTimeFormatterProvider);
strFormatted = dateTime.ToString("MM/dd/yyyy");
return strFormatted;

Monday, June 28, 2010

Command to create the Configuration Database and Admin Content Database while installing MOSS 2007

Go to 


C:\\Program Files\Common Files\microsoft shared\web server extensions\12\bin


and use the following command.


psconfig -cmd create -servername sqlserver -database SharePoint_Config
-dbuser sa -dbpass sapassword -user sqlservices -password
sqlservicespassword -admincontentdatabase Admin_Content

Upload Files in SharePoint 2007

http://www.eggheadcafe.com/community/aspnet/69/10138586/uploading-picture-in-pict.aspx


http://www.dotnetspider.com/resources/29565-Uploading-images-into-picture-library.aspx


http://stackoverflow.com/questions/468469/how-do-you-upload-a-file-to-a-document-library-in-sharepoint


http://elczara.spaces.live.com/blog/cns!554EC06D366AC9D5!692.entry

Workflow Activities MOSS 2007

http://geekswithblogs.net/stephaniegrima/archive/2008/09/26/sharepoint-workflow-activities---what-are-they.aspx


http://covelle.blogspot.com/2006/06/add-sharepoint-workflow-activities-to.html

Windows Workflow Foundation MOSS 2007

http://msdn.microsoft.com/en-us/library/aa830816(office.12).aspx#office2007ssintrotoworkflows__workflowcomposition


http://channel9.msdn.com/shows/In+the+Office/Creating-WSS-30-Workflows-with-Visual-Studio-2005/

Customizing the Top Site Navigation in Sharepoint 2007

For customizing the top navigation bar in the SharePoint 2007, use the following links.



http://office.microsoft.com/en-us/sharepointtechnology/HA101191001033.aspx


http://www.devexpert.net/blog/pt/blog/Customizing-MOSS-2007-Navigation-Menu.aspx




http://faraz-khan.blogspot.com/2008/11/writing-custom-navigation-provider-for.html


http://www.codeproject.com/KB/sharepoint/spnav.aspx