Home Information PDF Documents EULANDA Handbooks Training Book's corner Download Contact us Table of Contents About us

Glossary

Password needed Newsgroup

Remote Support system

Method: Client.CreateDataset (iScript)

Back | Level back

Set dataset = Client.CreateDataset(DataObjectClass)

Parameter

DataObjectClass

The designator of the data class for the data set object which can be produced.

dataset: Dataset [Return value]

After the successful execution a new data set object (Dataset)  will be returned.

Examples

A. Example with address search

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