/
Simple While Loop
Simple While Loop
Home | Categories | How-to-Articles | Command Reference | Examples | Troubleshooting | Cognillo.com
Use this page to find example workflows for Genta Automation.
Script
This example will use two variables to loop and show a message box at each iteration.
$count = 0
$max = 3
//Below will count up to 3
while ($count < $max)
{
Show Message Box "The count is {$count}"
$count++
}
Related Articles
Filter by label
There are no items with the selected labels at this time.
, multiple selections available,
Related content
Create a Datatable and add rows
Create a Datatable and add rows
More like this
Loop by using @Split
Loop by using @Split
More like this
Open the Calculator App and enter values
Open the Calculator App and enter values
More like this
Looping files in a folder
Looping files in a folder
Read with this
Scroll up
Scroll up
More like this
Nested Loop
Nested Loop
Read with this