KB-29727: Creating a chronometer with E3 version 2.5.
Question: How can I create a chronometer with E3 version 2.5? Solution: To do so, you must use a Demo Tag and an Internal Tag. First, you must configure the…
Question: How can I create a chronometer with E3 version 2.5? Solution: To do so, you must use a Demo Tag and an Internal Tag. First, you must configure the…
Question: How can I sort out into year, month, day, hour, and minute the value returned by the ShowDatePicker()? Solution: To do so, you must use specific VBScript’s methods, such…
Question: How can I active a Button’s Click() event by right-clicking on it? Solution: To do so, you must write a script on the Button’s MouseUp event to check when…
Question: How can I set up a script to be executed after a certain time interval? Solution: To do so, follow these procedures: Insert a Timer Tag; Set the Enable…
Question: How can I create an E3Chart‘s Query and Pen at runtime? Solution: To do so, you must write a script using AddQuery and AddPen methods. For more details, check…
Question: How can I create and view a Windows folder via scripts? Solution: To do so, you must create a script similar to the following example: Set fso = CreateObject(“Scripting.FileSystemObject”)…
Question: How can I open, move and keep opened several windowed screens? Solution: To do so, you must create a script on a button to open the screen: Application.GetFrame(Name).OpenScreen(“Screen1”), 0…
Question: Was DoModalOp method removed from E3 version 3.1? Solution: This method still exists to keep the compatibility with applications developed in older versions, but it is hidden and it…
Question: How can I copy a file that is on another machine of the network via E3? Solution: This can only be done via scripts. Example (script being executed at…
Question: How can I get individual data about the current date (day, month, year, hour, minute and second)? Solution: To do so, you can use now command, which returns the…