[This is preliminary documentation and is subject to change.]

Creates the tracker search expression for the case list screen. This expression is in the SQL format and directly sent to the database.

Namespace:  OfficeClip.BusinessLayer.Tracker
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public string SearchExpression(
	ArrayList al,
	string searchStr,
	DataTable dtNames,
	bool isLikeVal
)
Visual Basic (Declaration)
Public Function SearchExpression ( _
	al As ArrayList, _
	searchStr As String, _
	dtNames As DataTable, _
	isLikeVal As Boolean _
) As String
Visual C++
public:
String^ SearchExpression(
	ArrayList^ al, 
	String^ searchStr, 
	DataTable^ dtNames, 
	bool isLikeVal
)

Parameters

al
Type: System.Collections..::.ArrayList
list of search expressions.
searchStr
Type: System..::.String
The search string.
dtNames
Type: System.Data..::.DataTable
The datatable of field names.
isLikeVal
Type: System..::.Boolean
true if the search is "Is" false if it is "Is Not"

Return Value

The search expression that can be sent to the database.

See Also