Jump to content

David Heffernan

Members
  • Content Count

    3494
  • Joined

  • Last visited

  • Days Won

    172

Everything posted by David Heffernan

  1. David Heffernan

    Modal dialog closes before user input

    So why continue doing things in key up?
  2. David Heffernan

    Modal dialog closes before user input

    This sounds like you are papering over the problem.
  3. David Heffernan

    Modal dialog closes before user input

    Why are you doing anything in response to key up? Try using some respectable programs and see which of them perform actions on key up. Once you have done that, remove TDropDownDialog.ListBox1KeyUp and see how things behave.
  4. It sounded like you might be accessing an object after it has been destroyed which is obviously incorrect.
  5. David Heffernan

    Modal dialog closes before user input

    It's presumably the handling of KeyUp that sets the modal result. If the modal dialog is shown by mouse action, then happens on mouse up. But if shown by keyboard action, it is shown on key down. Then the matching key up is handled by the modal form which immediately closes.
  6. Pascal Analyser is wrong. Seems pointless to test with is TBoldObject and then cast with as. Once is tells you the cast is valid then go ahead and use an unsafe cast. Seems dubious to cast one object to be a class from an unrelated hierarchy. Don't know how that could be valid. Also, what is BoldObjectIsDeleted all about? Don't tell me this flag is set to true when the instance is destroyed.
  7. David Heffernan

    Function with 2 return values ?

    It goes from bad to worse!!
  8. David Heffernan

    Function with 2 return values ?

    We don't need any context to know that a fixed length array shouldn't be named a tuple.
  9. David Heffernan

    Function with 2 return values ?

    But it's a tuple too. My question was really for Stefan though.
  10. David Heffernan

    The best way to handle undo and redo.

    Very rare to find a scenario where this works well. The serialised state can be huge. And the asker here has a database to work with. You are going to serialise that in its entirety?
  11. David Heffernan

    Function with 2 return values ?

    OK. What name would you give this type array [0..2] of Double
  12. David Heffernan

    The best way to handle undo and redo.

    If there can be multiple users modifying the same database then this task becomes very challenging.
  13. David Heffernan

    Function with 2 return values ?

    That's a pair not a tuple
  14. David Heffernan

    AV in bds.exe

    Seems like a clear instruction to ignore future posts asking for help and instead laugh.
  15. David Heffernan

    Function with 2 return values ?

    Whilst you can, this doesn't feel like a great idea. It's one thing returning a tuple in a language like Python with support for unpacking. But a Delphi dynamic array should be used for arrays, things where each item is a different value of the same thing. That's not the case here. They are two distinct things. Use a record, or two out params.
  16. David Heffernan

    Converting a very long text to concatenated strings?

    This is why programmers learn to use scripting languages
  17. David Heffernan

    String on heap?

    That's clear from the code but we don't know what it's life time is. On the face of it, exactly as you say, TList<string> or TStringList would be much more suitable. But my reticence is that there are lots of unknowns.
  18. David Heffernan

    String on heap?

    What is sublist and what is FHintCell. It's all just guesswork. But having pointer to pointer to character array feels odd to me.
  19. David Heffernan

    String on heap?

    It looks a bit odd but because we don't know for sure what all of the types and objects are, and your extracted code has arguments that aren't used, I don't think it's easy to offer specific advice. However, it's hard to imagine a scenario where this code would be the best way to do anything.
  20. David Heffernan

    String on heap?

    Yes that looks correct but it's also a very odd thing to do. What version of Delphi are you using?
  21. David Heffernan

    Package SynEdit library as Dll

    MPL allows any license of the derived product I think. And the source code in the synedit 2 repo says the license is MPL. But asker believes that putting the code in a dll means that they don't need to worry about the license. Which is nonsense obviously. And in any case, even if it did make a difference, use a package already!!
  22. David Heffernan

    Package SynEdit library as Dll

    Do remember to make sure that you meet the requirements of the open source MPL license
  23. David Heffernan

    TDICTIONARY

    Are you holding records or pointers to records? Because the question only makes sense if the latter. If the latter then something needs to allocate and deallocate. But i suspect that you are doing the former.
  24. David Heffernan

    Dynamic Linking in Delphi

    Dynamic linking won't solve your licensing problems. Synedit, the subject of your last question, has a dual GPL/MPL license. Dynamic linking doesn't allow you to evade the licence requirements. Why do you feel that you can't adhere to the requirements of the MPL? Incidentally there was no need to make a new question to ask the same as you did in your previous question. Perhaps you didn't like the answers you got but sometimes the answer to a question isn't the one you want to hear.
  25. David Heffernan

    Leak problem

    It's as if you don't want people to help you.
×