Tuesday, August 25, 2009

web part property

http://www.brightworkdemo.com/_vti_bin/help/1033/BrightWork/modify_a_web_part.htm

Monday, August 17, 2009

Get all Document Library List

0

This discards all items except those marked as Files/Documents.


CrossListQueryInfo clqi = new CrossListQueryInfo();
clqi.Query = @"0";
clqi.ViewFields = "";
clqi.Lists = "";
clqi.Webs = "";
clqi.UseCache = true;
clqi.RowLimit = (documentCount==0) ? 5 : (uint)documentCount;
CrossListQueryCache clqc = new CrossListQueryCache(clqi);
DataTable dt = clqc.GetSiteData(SPContext.Current.Site, CrossListQueryCache.ContextUrl());

Thursday, August 6, 2009

Stop Office Sharepoint Search server

pskill \\sharepointservername mssearch
Detail:
http://social.technet.microsoft.com/Forums/en-US/sharepointsearch/thread/9b313d05-73e3-4c3a-ac18-39fefaa4352a

PSTools Downloads:
http://technet.microsoft.com/en-us/sysinternals/dd443648.aspx

Sunday, August 2, 2009

CALM

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

PARENT ELEMENT
ELEMENT
DESCRIPTION

Where Used within the context of a query to specify a filter.
And Used within the Where element to group filters in a query for a view.
Or Used within the Where element to group filters in a query.
BeginsWith Searches for a string at the start of a column that holds Text or Note field type values.
Contains Searches for a string anywhere within a column that holds Text or Note field type values.
Eq Arithmetic operator that means "equal to" and is used within a query.
Geq Arithmetic operator that means "greater than or equal to." This element can be used within a Where element in a query.
Gt Arithmetic operator that means "greater than." This element is used similarly to the Eq and Lt elements.
Leq Arithmetic operator that means "less than or equal to." The Leq element is used in view queries similarly to the Eq and Geq elements.
Lt Arithmetic operator that means "less than" and is used in queries in views. This element is used similarly to the Eq and Gt elements.
Neq Arithmetic operator that means "not equal to" and is used in queries.
DateRangesOvelap Used in queries to compare the dates in a recurring event with a specified DateTime value, to determine whether they overlap.
IsNotNull Used within a query to return items that are not empty (Null).
IsNull Used within a query to return items that are empty (Null).
OrderBy Determines the sort order for a query. The OrderBy element contains a group of FieldRef elements.
GroupBy Contains a Group By section for grouping the data returned through a query in a list view.



Thanks.