Exemple

Dim PrSet as Object Dim ConnList as Object Set PrSet = CreateObject(".autECLPrinterSettings") Set ConnList = CreateObject("ZIEWin.autECLConnList") ' Initialize the connection ConnList.Refresh PrSet.SetConnectionByHandle(ConnList(1).Handle) ' This code segment checks to see if A is started. ' The results are sent to a text box called Result. Si PrSet.Started = False Alors Result.Text = "Non" Sinon Result.Text = "Oui" End If