Hello


Hello,

On some projects I put an invisible TMemo on the main form to keep notes about things todo...

is there any extension that could attach a kind of floating memo with some text saved in a Unit1.txt file for instance ?

Thanks

Comments

  1. Why not use the builtin ToDo-Manager of the Delphi IDE?

    ReplyDelete
  2. Are you aware that Delphi supports project specific To-Do lists? You might have already used that for ToDo items inside the source code, but it can also handle project wide ToDo items in a separate file. To add those entries, open the ToDo list from the View menu and add items directly inside the list (Ctrl-A or context menu). These project specific entries are the stored in a file named .todo

    ReplyDelete
  3. I know that there's a Todo Manager it's just more "visual" to have something on the form designer...it can even be "DO NOT CHANGE THIS FORM" or whatever

    ReplyDelete
  4. I just created a component for that. Put it into a design time package and install it into the IDE. Then drop the component onto your form and specify the filename. Feel free to tweak the code to your needs.
    gist.github.com - uDesignNote.pas

    ReplyDelete
  5. good opportunity to build an addon for visual to-do notes like post-it or sticky notes.

    ReplyDelete
  6. (don't expect me to do it, don't know where to start with that!)

    ReplyDelete
  7. Heinz Toskano OTA are not easy nor well documented...I've tried once to create a custom form designer but all the informations I've found were about the Delphi 7 multi window layout.

    ReplyDelete
  8. It's amazing how one of the most powerful features of the IDE is left in the dark... since forever!

    I have the feel too...

    ReplyDelete
  9. "Avoid the endless To-Do column with a Kanban backlog"

    "Turn your to-do list into a backlog"

    ReplyDelete
  10. I hate the use of "backlog". A backlog is something you didn't have time to do.

    ReplyDelete
  11. Lars Fosdal In Scrum backlog has a different meaning. There are different kinds of backlogs but they all are kind of a todo and not something that did not do.

    ReplyDelete
  12. Exactly! "To-do list" are things that I have no time to do it at this moment!

    "Don't leave for tomorrow the things you can do today."

    You can create a backlog, with the same sense, but with the possibility of managing it in a database, get statistics, get feedback from your colleagues of the project, etc.

    and of course, with the ability of planning, what means you have a budget that you can take into account, to decide when to do it.

    ReplyDelete
  13. Wouldn't using a TMemo like this mean that you potentially ship an .exe that contains notes that an end-user could discover using a simple hex/ASCII editor (e.g. ProcessExplorer's Strings tab)?

    I'd be nervous that I might unintentionally make visible some proprietary or embarrassing text if I used a TMemo in the way you describe.

    ReplyDelete
  14. Personally, I'd keep it in Jira - or as comments in the unit source code.

    ReplyDelete
  15. Tom Field that's the main reason I'd like to have an IDE post-it replacement ;)

    ReplyDelete
  16. For me, what sounds really interesting is an IDE plugin for integrating it with web tools, like Jira, Assembla, Mantisbt, etc.

    This tool ​shall allow the user to see in "Jira" all the stories related to current .pas module. Create new stories on the backlog, or see metrics about the things of the current spring related to this module.

    ReplyDelete

Post a Comment