Property: Conditions for QueryForm <DataFinder>
- Updated2024-09-12
- 2 minute(s) read
DIAdem NAVIGATOR > Properties > Property: Conditions for QueryForm <DataFinder>
Property: Conditions for QueryForm <DataFinder>
Specifies the Search parameters for an advanced search in the interface of a DataFinder.
Set oConditions = Object.Conditions
| Object | QueryForm <DataFinder> Object with this property |
| oConditions | Conditions <DataFinder> Returned object |
![]() | Note If you change the value of the Conditions property, these changes influence the interface of the DataFinder directly. |
The following example determines whether the current query is an advanced search. The example then enters the name of each search condition in the logical operations line and uses an OR operation on each search condition:
| VBScript | Python |
Dim oMyQueryForm, Conditions, Condition, sLogic Set oMyQueryForm = Navigator.Display.CurrDataFinder.QueryForm If oMyQueryForm.Mode = eAdvancedQueryForm Then Set Conditions = oMyQueryForm.Conditions For Each Condition in Conditions If sLogic = "" Then sLogic = Condition.Name Else sLogic = sLogic & " OR " & Condition.Name End If Next Conditions.Logic = sLogic End If
See Also
Procedures
Configuring the Search Results | Defining Search Areas | Executing a Search with OR Operations | Executing a Text Search | Indexing Search Areas | Optimizing Custom Properties | Saving and Loading a Search Query | Searching for Data on a Different Computer in the Network | Searching for Multiple Properties | Sorting Search Results before Executing a Search
Examples
Brake Tests for Trucks | Checking DataPlugins for Timeout | Combining DataFinder Search Results | Context Menu for the Search Results of the DataFinder | Creating ATFX Files from the Context Menu of an ASAM Data Store | Customized User Interface | Evaluation Wizard for the Search Results of the DataFinder | Filtering Data with a Dialog Box | Filtering Data without a Dialog Box | Search and Evaluation Functions in User Dialog Boxes | Searching for and Evaluating Channels | Searching for Channels in the NAVIGATOR | Searching for Data Sets Marked "Failed" in Data Stores | Searching for Data Sets Marked "Failed" | Searching for Properties and Evaluating the Associated Channels | Varying Browse Settings of a Data Store
