KB-28904: Problems when history files are too big.
Question: Why is data recorded on a Historic not being viewed when the *.dat file is too big? Solution: This happens because Elipse SCADA can’t open files that are too…
Question: Why is data recorded on a Historic not being viewed when the *.dat file is too big? Solution: This happens because Elipse SCADA can’t open files that are too…
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: 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: 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