KB-28340: Exporting screens from Elipse SCADA to Elipse E3.
Question: How can I export screens from Elipse SCADA to Elipse E3? Are scripts exported too? Solution: To do so, access Elipse SCADA, open the Organizer (Alt+O), select the desired…
Question: How can I export screens from Elipse SCADA to Elipse E3? Are scripts exported too? Solution: To do so, access Elipse SCADA, open the Organizer (Alt+O), select the desired…
Question: Can I add columns to a ListBox? Solution: Yes, you can. For example: Screen.Item(“ListBox1”).ColumnCount = 3Screen.Item(“ListBox1”).Clear()Screen.Item(“ListBox1”).AddItem “Row 1, Col 1″Screen.Item(“ListBox1”).List(0, 1) = “Row 1, Col 2” Screen.Item(“ListBox1”).List(0, 2) =…
Description: After installing E3, you can execute a sample application that demonstrates several available features of the software. To open the application, you must access the Start menu…
Autor
Mateus Machado
Question:Can I extract a ZIP file via scripts? Solution: Yes, you can. For example: ‘ZIP file to be extracted:pathToZipFile=”C:\Folder1\MyZIPfile.zip” ‘Folder of destination:extractTo=”C:\Folder2\”‘Tests if the file existsset fso2 = CreateObject(“Scripting.FileSystemObject”)if fso2.FileExists(pathToZipFile)…
Question: How can I request the user to confirm before writing on a tag? Solution: To do so, you must use MessageBox() function. Then, depending on the answer returned by…
Question: In an application, an I/O Driver is inserted into an XObject. Are the Driver licenses counted for each XObject‘s license? Solution: Yes, each XObject‘s instance uses one Driver license.
Question: Can I close a computer’s process via E3? Solution: Yes. To do so, you must write a script. For example: ProcessName = “notepad.exe”PID = 2536Set service = GetObject(“winmgmts:\\.\root\cimv2”)‘Closes the…
Question: Do I need an additional Viewer license to open an application on two monitors? Solution: No. Although you are using two monitors, the application is being executed on a…
Question: How can I access all tags of a Driver if it has several subfolders? Solution: To do so, you must write a script using recursion. Example (script executed at…