- I have a tasklist (a tdl-file) which I use on a "simple" level, but with long comments.
- I want that my colleagues add their comments to the "comment" area, as a kind of "log file what they have done".
- Neither my colleagues nor the tasks itself should be handled by the full version of TDL - it's to complicated for adding 2 lines every three weeks.
- So my idea is to create a small, external tool with AutoHotKey AHK which offers only a simple input field: "Please write what you have worked on"
- The tools adds only the date and starts a command like this:
Code: Select all
"D:\Program Files\todolist\ToDoList.exe" "d:\xxx\log.tdl" -cm "I worked on this and that and added something" -tid 3
- the TDL and todolist.exe will be saved in our local network
- do I need only the exe in the network or the entire software folder
- how will the construct "react" on the command? I tried it with a batch-file and saw that the software and the tdl-file stay opened. I just want a "small and quick" adding of two lines to the file. There should be no opened software and no opened file (but maybe I could close it by the AHK program ..)
Is there a chance that it will work or will it fail?
have a fine evening!