Search found 3016 matches

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: 1
Views: 4

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: 4
Views: 1928

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: 1681

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: 922

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: 1681

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: 1681

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 ...
by Oleg
Tue Apr 16, 2024 2:32 pm
Forum: General Discussion
Topic: RoboTask
Replies: 2
Views: 1512

Re: RoboTask

There is no way to automatically translate from other formats (from other similar applications).
You need to recreate the tasks manually.
by Oleg
Tue Apr 16, 2024 2:25 pm
Forum: General Discussion
Topic: RoboTask
Replies: 2
Views: 1512

Re: RoboTask

... but this issue is preventing me from porting ...
It seems I don't understand you... What issue?
by Oleg
Tue Apr 16, 2024 10:31 am
Forum: General Discussion
Topic: Help..Scheduling every 15 days and 2 Sundays per month.
Replies: 2
Views: 2415

Re: Help..Scheduling every 15 days and 2 Sundays per month.

Look at the settings of scheduler trigger for every 15 days. You can start the task 1 and 16 days of each month https://robotask.com/images/forum/every15days.png The settings of scheduler trigger for every 20nd Sunday of each month https://robotask.com/images/forum/every2-nd-sunday.png Look at the e...
by Oleg
Fri Apr 12, 2024 8:18 am
Forum: General Discussion
Topic: Powershell script errors not raising the error (exit code 0)
Replies: 3
Views: 1630

Re: Powershell script errors not raising the error (exit code 0)

Another way:
You can save the output to variable and analyze the output text.