Syntax
| SQL.SearchDialog(LevelMode[, MySearch][, IncludeExtraWork][, IncludeHistory][, StatusFilter][, AutoCreateProject])
| ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description
| High-level function that greatly simplifies searching for entities in the orderchain at multiple levels, using the dialog within the Tradium applications.
This function is optimized for querying complex search queries; The search power is comparable to that of well-known search engines on the Internet. For an explanation of the search capabilities, see the explanation in the general guide.
| ||||||||||||||
See Also
| other SQL.Searchxxxxxxxx functions
| ||||||||||||||
Example
| Sub Main
Dim sZoek As String
sZoek = InputBox$("Keywords for sales order:")
If Len(sZoek) = 0 Then End
Debug.Print SQL.SearchDialog(3, sZoek)
End Sub
|