KB-33585: Running scripts when the domain starts.
Question: How can I run a script whenever the domain starts? Solution: To do so, you must insert the script into a server object, since all server objects belong to…
Question: How can I run a script whenever the domain starts? Solution: To do so, you must insert the script into a server object, since all server objects belong to…
Question: How can I make an alarm be fired only after the device has been on for a certain time? Solution: One way to do so is via an XObject,…
Descrição: Como posso deletar arquivos no E3? Solução: Para isto, deve-se utilizar o seguinte script: ‘Procura o arquivo a ser deletado Application.ShowFilePicker True, Arquivo ‘Deleta arquivo Set filesys = CreateObject(“Scripting.FileSystemObject”)…
Question: How can I delete files in E3? Solution: To do so, use the following script: ‘Search for file to be deleted Application.ShowFilePicker True, File‘Delete fileSet filesys = CreateObject(“Scripting.FileSystemObject”)filesys.DeleteFile File…
Question: How can I reset the value of an InternalTag annually on January 1st? Solution: To do so, follow these procedures: 1. Add a TimerTag with the following configuration: a.…
Descrição: Como zerar o valor de um TagInterno anualmente no dia 01/01? Solução: Para isto, siga estes passos: 1. Adicione um TagTimer configurado da seguinte forma: a. TriggerType = 3-ttMonthly b.…
Question: How can I keep the user from typing special characters in a setpoint ? Solution: To do so, you must add the following script to Setpoint’s Validate event: N…
Descrição: Por que a comunicação OPC funciona normalmente no E3Studio, mas não funciona quando o domínio é executado (mesmo após configurações de DCOM terem sido realizadas)? Solução: Isto ocorre porque…
Descrição: Como impedir que o usuário digite caracteres especiais no objeto Setpoint? Solução: Para isto, deve-se adicionar o seguinte script ao evento Validate do objeto Setpoint: N = Len(NewValue) ‘Retorna…
Question: How can I access a formula which is inside an XObject to use the LoadFormulaValuesQuiet method in an XControl? Solution: To do so, you must use the following script…