Help > Web Development > Object Reference > Object Reference > ISYSResultList > PerformFind Method
<a name="kanchor508"></a>ISYSResultList:PerformFind Method
Execute a sub-query within the current result list. The search will take place within the set of documents in the existing result list with the new results replacing the old. This allows you to drill down in your search strategy.

Note: This method is provided for compatibility with ISYS 6. New applications should use the ISYSSearch object to handle searches.

Syntax
[VBScript]
sub ISYSResultList.PerformFind(_
  string Query, _ 
  long Flags_ 
)
[C#]
void IISYSResultList.PerformFind(
  string Query, 
  long Flags
);
[ColdFusion/Java]
void IISYSResultList.PerformFind(
  java.lang.String Query, 
  long Flags
) throws ComException;
Parameters
QueryString specifying the sub-query
FlagsFlags specifying how the query is to be processed
QuerySynonym1
QueryConflate2
QueryThesaurus8

Examples
[VBScript]
<% ' Executes a previously defined ISYSSearch object. The QuerySource ' may be set to a result list id Set Results = ISYSSearch.Execute ' Perform QueryWithin Results.PerformFind Request("search"), QueryConflate %>