SQL Object
 
Syntax
 
SQL.SearchWorkOrder([InitSearch])
 
Description
High-level function that greatly simplifies searching work orders (sales orders). If successful, the function returns an order number in a long integer (Long).
 
This function is optimized for retrieving complex search queries; Its 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.
 
Parameter
Description
InitSearch
Optional. If filled in, this fills in the 1st search argument of the dialog shown.
 
See Also
other SQL.Searchxxxxxxxx functions, Projecten.
Example
Sub Main()
 
    Dim sZoek As String
 
    sZoek = InputBox$("Keywords:")
    If Len(sZoek) = 0 Then End
 
    Debug.Print SQL.SearchWorkOrder(sZoek)
 
End Sub