DIAdem Help

Method: SetCurrQuery for QueryForm <DataFinder>

  • Updated2024-09-12
  • 2 minute(s) read

Method: SetCurrQuery for QueryForm <DataFinder>

Enters the search conditions into the search entry field, in a DataFinder.

Object.SetCurrQuery(Query)
ObjectQueryForm <DataFinder>
Object with this method
QueryQuery <DataFinder>
Specifies the search conditions.

The following example loads the search condition from the file Query_Example.tdq and then runs a search:

VBScriptPython

 

Dim oMyDataFinder, oMyQueryForm
Set oMyDataFinder = Navigator.Display.CurrDataFinder
Set oMyQueryForm = oMyDataFinder.LoadQueryInfoSet(ConfReadPath & "Query_Example.tdq")
Navigator.Display.CurrDataFinder.QueryForm.SetCurrQuery(oMyQueryForm)
Navigator.Display.CurrDataFinder.QueryForm.Search()

Log in to get a better experience