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.CreateDialog (iScript)

Back | Level back

MultiSelect Dialog Class (iScript)

This method has still another provisional status and serve only the evaluation purpose. Changes both at the method parameters and at the properties and methods of the different dialog classes are still possible. The release of this function is plant for EULANDA Version 3.0.

Produces one of the EULANDA® queries dialogue windows.

Set DialogObject = Client.CreateDialog(Dialog, Instance)

Parameter

Dialog: variant

The designator of the dialog class.

Instance: variant

Name of the collecting main which is to be used for the producing the dialog class.

DialogObject (Return value)

The produced dialog object.

Examples

A. Example for a filter dialog

VBScript

dim LDialog, LResult
set LDialog = Client.CreateDialog("Beta.Eulanda.SmartFilter","")
with LDialog
.FilterObjectName = "Eulanda.Artikel"
.Caption = "Artikelauswahl"
.Title = "Alt-Bestand Übernahme"
.CreateIdList = True
.AddFilter "Bereichfilter",""
LResult = .Execute
End With

If LResult Then
  MsgBox "The chosen articles are available in the SQL server as ID list number " & CStr(LDialog.ListId) &_