Search found 3020 matches

by Oleg
Thu May 30, 2024 9:12 pm
Forum: General Discussion
Topic: Returns of a task started from within another task
Replies: 1
Views: 6

Re: Returns of a task started from within another task

Task can return some result as string. Just save necessary value to TaskResult variable Save task result to variable When the action waits task for finish you can save the task result to variable. The task can return a result. To return some result, simply set the task's variable named TaskResult in...
by Oleg
Thu May 30, 2024 2:00 pm
Forum: Suggestions
Topic: GoTo Action Made Dynamic
Replies: 7
Views: 2271

Re: GoTo Action Made Dynamic

...if by the time it is implemented in the new release our company's Robotask update subscription expires, I'll be persuading my manager to renew it for this change alone...
Already implemented. Look here: viewtopic.php?p=10854#p10854
by Oleg
Sat May 25, 2024 11:52 am
Forum: General Discussion
Topic: RoboTask 10.0 has been released
Replies: 0
Views: 112

RoboTask 10.0 has been released

New version of RoboTask is ready for download. Download and try RoboTask 10.0 now What's new in RoboTask 10.0: Legend [ + ] Feature added [ - ] Bug fixed [ * ] Modified or improved RoboTask 10.0 + New action - "Label" . The label for the GoTo action. + Changed GoTo action: it can jump to ...
by Oleg
Wed May 22, 2024 7:13 pm
Forum: General Discussion
Topic: Powershell Script
Replies: 1
Views: 100

Re: Powershell Script

When I call the lines separtly at powershell, everything works fine. Hm-m... I got the the same error on line #4 ( $ie.ExecWB(6,2) ) and #6 ( $ie.quit() ) in separate powershell. Of course I use my HTML file PS D:\vhd> $ie = new-object -com "InternetExplorer.Application" >> $ie.Navigate(&...
by Oleg
Mon May 20, 2024 8:11 pm
Forum: General Discussion
Topic: Freeing memory while working with variables which read through large amounts of text
Replies: 3
Views: 139

Re: Freeing memory while working with variables which read through large amounts of text

To free memory from stored large data, simply assign an empty string to the variable. The empty string will replace the large text in the variable. Use Set Variable action You can also delete unnecessary variables: Remove Variable action I also strongly recommend using local variables (not global va...
by Oleg
Mon May 20, 2024 9:14 am
Forum: Suggestions
Topic: GoTo Action Made Dynamic
Replies: 7
Views: 2271

Re: GoTo Action Made Dynamic

add a label function, where Go TO will always go to label...
Will be in next release.
Coming soon
by Oleg
Sat Apr 20, 2024 7:39 am
Forum: General Discussion
Topic: Replacement of special characters in a string
Replies: 7
Views: 3325

Re: Replacement of special characters in a string

Read about BOM (Byte order mark) in wikipedia: https://en.wikipedia.org/wiki/Byte_order_mark
by Oleg
Sat Apr 20, 2024 7:35 am
Forum: General Discussion
Topic: Cose a program
Replies: 1
Views: 1128

Re: Cose a program

You can simply Terminate the process
by Oleg
Sat Apr 20, 2024 7:33 am
Forum: General Discussion
Topic: Replacement of special characters in a string
Replies: 7
Views: 3325

Re: Replacement of special characters in a string

Your file does not contain BOM (signature of format). So RoboTask reads this file as simple ACSII file. But the file has UTF-8 coding. You should read this file as UTF-8 file Look the demo task below to see difference ;***************************** ;* RoboTask Task file ;* Do not edit in text editor...
by Oleg
Fri Apr 19, 2024 8:01 pm
Forum: General Discussion
Topic: Replacement of special characters in a string
Replies: 7
Views: 3325

Re: Replacement of special characters in a string

Str replace action works correctly Download my example by the link: replacestr.zip Unpack the task and import into RoboTask (Copy-Paste does not help) Probably you read the source file incorrectly (without accounting for coding) Could you send the source file to me (just several lines)? Pack it to ...