Syntax
| SQL.SearchCustomer([ResQuery][,Marklist][,MySearch][, ExcludeDeleted])
| ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Description
| High-level function that greatly simplifies searching the customer database. If successful , the function returns one or more customer numbers in a string.
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.
| ||||||||||
See Also
| other SQL.Searchxxxxxxxx functions, Customers.
| ||||||||||
Example
| Sub Main() Dim sZoek As String sZoek = InputBox$("Keywords:") Debug.Print SQL.SearchCustomer(, , sZoek) End Sub | ||||||||||