Search found 3262 matches

by Oleg
Sun Nov 16, 2025 3:41 pm
Forum: General Discussion
Topic: Log Message Actions not working
Replies: 4
Views: 56

Re: Log Message Actions not working

By the way: version 10.6 already has a task debugger.
You can set breakpoints, view all local and global variables and perform the task in step-by-step mode.
by Oleg
Sun Nov 16, 2025 3:36 pm
Forum: General Discussion
Topic: Log Message Actions not working
Replies: 4
Views: 56

Re: Log Message Actions not working

But now if I make a small change such as adding a [If - End If] action with new Log Message actions the Log Message actions don't appear in the .LOG file. You may have already deleted empty logs during debugging. I always set Log Level to Errors Only after I have debugged my task. Look at the step ...
by Oleg
Sun Nov 16, 2025 3:16 pm
Forum: General Discussion
Topic: Log Message Actions not working
Replies: 4
Views: 56

Re: Log Message Actions not working

BTW: How do I attach a .tsk file
put the task text beween CODE marks
use this button to put marks into you post text and paste the task text between marks
Put [code] marks
Put [code] marks
PutCodeMarks.png (12.88 KiB) Viewed 52 times
You also can write these marks manually:
[code]Put the task text here[/code]
This will have the same effect.
by Oleg
Sat Nov 15, 2025 5:07 pm
Forum: General Discussion
Topic: RoboTask 10.6 has been released
Replies: 0
Views: 49

RoboTask 10.6 has been released

New version of RoboTask is ready for download. Download and try RoboTask 10.6 now What's new in RoboTask 10.6: Legend [ + ] Feature added [ - ] Bug fixed [ * ] Modified or improved RoboTask 10.6 + Added Task debugger . Launched from the task editor. Allows you to execute a task step by step with co...
by Oleg
Fri Nov 14, 2025 8:26 pm
Forum: General Discussion
Topic: Rename Folder
Replies: 3
Views: 57

Re: Rename Folder

Let it remain as an example of using VB Script.
by Oleg
Fri Nov 14, 2025 2:24 pm
Forum: General Discussion
Topic: Rename Folder
Replies: 3
Views: 57

Re: Rename Folder

What don't you like the "Rename Folder" action?
by Oleg
Thu Nov 13, 2025 2:31 pm
Forum: General Discussion
Topic: Start a task automatically upon user login
Replies: 1
Views: 32

Re: Start a task automatically upon user login

Look at this option (see screenshot)
OnRoboTaskStarts.png
OnRoboTaskStarts.png (62.48 KiB) Viewed 30 times
by Oleg
Thu Nov 13, 2025 1:02 pm
Forum: General Discussion
Topic: Calculate Person Age in Year Months Days
Replies: 4
Views: 168

Re: Calculate Person Age in Year Months Days

I'm trying to calculate someone's age at the time of their death ex 25 years, 3 months and 2 days The algorithm will be a little more complicated. Take a look at this example. ;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] A...
by Oleg
Wed Nov 12, 2025 9:18 am
Forum: General Discussion
Topic: Calculate Person Age in Year Months Days
Replies: 4
Views: 168

Re: Calculate Person Age in Year Months Days

Time difference ? It can give you the difference between the current moment ( {date} ) and a person's birthday in days as an integer value. To get the number of years, you can use VB evaluate (integer division): {MyDays} \ 365 To get the number of months, use {MyDays} \ 30.147 (30.147 - is the aver...
by Oleg
Tue Nov 11, 2025 2:22 pm
Forum: General Discussion
Topic: A variable previxed with #
Replies: 3
Views: 266

Re: A variable previxed with #

I have (for example) many tasks with names that contain strings such as {Date}, {DateTime}, {TaskFolder}, and other variables. I need the original task names to be preserved in the list, i.e., the variables should remain unexpanded.
So I use the explession {#Text}