Skip to content

Elipse Knowledgebase

  • Home
  • English (US)English (US)
    • Português do BrasilPortuguês do Brasil

Category: Scripts

KB-31216: Window for typing values.

25 de March de 201910 de August de 2021Elipse SoftwareLeave a Comment on KB-31216: Window for typing values.

Question: Is there a command to open windows that is similar to MsgBox, but with a field for typing text? Solution: Yes, this is what VBScript’s InputBox is for. Script…

Read More

KB-31227: Retrieving the number of records returned by a query.

25 de March de 201921 de January de 2020Renan De RossiLeave a Comment on KB-31227: Retrieving the number of records returned by a query.

Question: How can retrieve the number of records that have been returned by a query? Solution: To do so, you must use the RecordSet‘s RecordCount property. The example below shows…

Read More

KB-30935: Changing the name of an E3Browser’s columns.

25 de March de 201914 de June de 2019Elipse SoftwareLeave a Comment on KB-30935: Changing the name of an E3Browser’s columns.

Question: How can I change the name of an E3Browser’s columns? Solution: There are two ways to do so: Via E3Studio: Just access E3Browser‘s properties and click Set up button…

Read More

KB-36260: VBScript language’s usage manual.

25 de March de 20199 de September de 2022Elipse SoftwareLeave a Comment on KB-36260: VBScript language’s usage manual.

Question: Is there a manual with scripts examples and explanations about the VBScript’s properties, methods and parameters? Solution: You can use E3’s Scripts Reference Manual and the VBScript Reference Guide.

Read More

KB-30665: Working with functions in E3 scripts.

25 de March de 2019Elipse SoftwareLeave a Comment on KB-30665: Working with functions in E3 scripts.

Question: How can I work with a function in E3 scripts? Solution: To do so, you must set the function with the structure: Function Name(parameter1, parameter2,.., parameterN) scriptEnd function Example: Sub…

Read More

KB-30556: Script error with Overflow message.

25 de March de 2019Elipse SoftwareLeave a Comment on KB-30556: Script error with Overflow message.

Question: On Windows 2003 Server SP2, when executing scripts that work with Double data, a script error occurs with an Overflow message. How can I fix the problem?Solution: To do…

Read More

KB-30308: Using the ElseIf clause in a script.

25 de March de 201924 de November de 2022Elipse SoftwareLeave a Comment on KB-30308: Using the ElseIf clause in a script.

Question: How can I use the “ElseIf” clause in a script? Solution: To do so, just insert it into an “If”‘s loop. For example: If condition == “value”ActionElseIf condition2 ==…

Read More

KB-38309: Adding columns to a ListBox.

25 de March de 201928 de August de 2019Renan De RossiLeave a Comment on KB-38309: Adding columns to a ListBox.

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) =…

Read More

Returning items sorted alphabetically.

25 de March de 201924 de April de 2019Elipse SoftwareLeave a Comment on Returning items sorted alphabetically.

Autor
Mateus Machado

Read More

Extracting ZIP files via scripts.

25 de March de 2019Elipse SoftwareLeave a Comment on Extracting ZIP files via scripts.

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)…

Read More

Posts navigation

Previous 1 … 11 12 13 … 27 Next

Categories

Search by Category

© 2025 Elipse Knowledgebase | Elipse Software - Todos os Direitos Reservados.