EULANDA® ERP System Head Start thru Technology
In that example a new address data set will be generated and telephone numbers of wiesbaden will be searched. If appropriate addresses were found, the first match code will be shown.
VBScript
Set ds = Client.CreateDataset("Eulanda.Adresse")
ds.Search ' Searching mode was called
ds.Values("Tel") = "0611-*"
ds.Post ' Start searching
If ds.EOF Then
MsgBox "There are no addresses of wiesbaden"
Else MsgBox CStr(ds.Values("Match"))
End If