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: How can I recover an application from the .BAK file after the .APP file had been corrupted? Solution: To do so, follow these procedures: Delete the corrupted .APP file.…
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: On an application, the value of a Chrono Tag (which counts the working time of a device) being shown on a Display in the format hh:mm:ss is erased after…
Question: How can I convert a number into string? Solution: To do so, use the Global Manager’s Str() function. Example of script: // Str(Value,size,prec)TagReceiveValue = Str(30.95,6,2)
Question: How can I remove blank spaces from a variable? For example, the text “Elipse Software Ltd.” is in a variable, but I want to display “ElipseSoftwareLtd.” instead. Solution: To…
Question:Can I save values configured at run time when stopping an application, in order to load them later? Solution:Yes; to do so, you must use Recipes and create two scripts:…
Question: How can I create a report that repeats itself periodically in a regular time interval (for example, every 15 minutes)? Solution: To do so, you can create a Chrono…
Question: What is the exponentiation function in Elipse SCADA ? Solution: To do so, you must use **. Example of script: // tag001 squared tag001 ** 2
Question: How can I call the Windows calculator at run time? Solution: To do so, you must use the Global Manager’s ShellExecute method: ShellExecute (strOperação, strArquivo, strParametros, strDir, nCmdVisual)) Example…