KB-28952: Showing all decimal places in a Display.
Question: How can I show all decimal places on a SCADA’s Display, and not just its rounded up value? Solution: To do so, you must set up the Precision property…
Question: How can I show all decimal places on a SCADA’s Display, and not just its rounded up value? Solution: To do so, you must set up the Precision property…
Question: Why is a SCADA full screen being closed when pressing Ctrl+F4? Solution: This is SCADA’s standard behavior. To change it, you can use the Ctrl+F4 combination in an OnKeyPress()…
Question: There is a script in the application using UserAdministration() function, but when the function is executed nothing happens. Why is this happening? Solution: This function is only executed if…
Question: Can I use retentive tags with Elipse SCADA? Solution: Retentive tags are used only with E3, but we can use Recipes to record the tags’ values in Elipse SCADA.…
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: 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:…