Search found 19 matches

by rbaroniunas
Tue Jan 21, 2020 8:14 pm
Forum: TsiLang Components Suite
Topic: Importing GNUGetText PO Files
Replies: 1
Views: 2147

Importing GNUGetText PO Files

How can i import several PO files into my project. I did not see any examples on how to do that.
by rbaroniunas
Sat Dec 28, 2019 7:20 pm
Forum: VCL Scheduling Agent
Topic: Odd behavior on deleting task.
Replies: 4
Views: 17298

Here is the entire routine for Index := lvTasks.Items.Count - 1 downto 0 do if lvTasks.Items[Index].Selected then begin Task := TTaskItem(lvTasks.Items[Index].Data); try lvTasks.Items[Index].Delete; Task.Activate; tskScheduler.DeleteTask(Task.Name); lvTasks.Refresh; except raise EUnexpectedError.Cre...
by rbaroniunas
Sat Dec 28, 2019 4:22 pm
Forum: VCL Scheduling Agent
Topic: Odd behavior on deleting task.
Replies: 4
Views: 17298

Not that i see. The funny thing is when i move the delete method prior to the taskscheduler doing it's delete, the piece works. What exactly is the taskscheduler doing when it deletes a task ?
by rbaroniunas
Wed Dec 25, 2019 3:49 pm
Forum: VCL Scheduling Agent
Topic: Odd behavior on deleting task.
Replies: 4
Views: 17298

Odd behavior on deleting task.

In my application i have a TListView that list all of the scheduled tasks for the user. When i attempted to delete a task based on a button event i received a access violation (application did not crap out) on an invalid pointer. The only thing i did was move the lyTasks.Item[Index].Delete from afte...