How to get a delphi application (that's running) to do something at a particular time/date

前端 未结 6 1170
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 11:07

My application sits in the system tray when it\'s not being used.

The user can configure events to occur at particular schedule. For example they may way the task p

6条回答
  •  萌比男神i
    2020-12-13 12:02

    You could implement some kind of inter process communication in your program and trigger these events via ipc by a program called from the Windows scheduling service. This approach has the advantage that you don't need to write a user interface to set up the schedule and also that ipc might prove useful in other ways.

提交回复
热议问题