Help > Web Development > Object Reference > Object Reference > ISYSResultList > PerformEnglishFind Method
<a name="kanchor507"></a>ISYSResultList:PerformEnglishFind Method
Execute a Plain English 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.

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

Syntax
[VBScript]
sub ISYSResultList.PerformEnglishFind(_
  string Query_ 
)
[C#]
void IISYSResultList.PerformEnglishFind(
  string Query
);
[ColdFusion/Java]
void IISYSResultList.PerformEnglishFind(
  java.lang.String Query
) throws ComException;
Parameters
QueryString that specifies the sub-query

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.PerformEnglishFind Request("search") %>