Jump to content

David Heffernan

Members
  • Content Count

    3474
  • Joined

  • Last visited

  • Days Won

    171

Everything posted by David Heffernan

  1. David Heffernan

    Removing String

    What should happen here
  2. David Heffernan

    Delphi 12 is available

    I don't really know. There's a part of me that says C++ because I know I'll have good compilers forever. But porting would be hard. For instance, we use lots of nested functions, which don't exist in C++. Not sure how we'd handle that. I think there'd need to be a lot of refactoring of the code in Delphi first to enable a semi automated translation.
  3. David Heffernan

    Delphi 12 is available

    I don't care that much about the IDE. It's the compiler and the language that matters more to me.
  4. David Heffernan

    Removing String

    Your specification in the original post is incomplete so it's not surprising that people don't know what you want. Your clarification is still unclear. Until you can define precisely what you want the code to do how could you expect anyone, even yourself, to be able to write it.
  5. David Heffernan

    delphi 12 operator "in" error E2010

    All kinda moot since you'd never use set membership rather than InRange
  6. David Heffernan

    Delphi 12 is available

    No, your way is sure to work. Crack on.
  7. David Heffernan

    Delphi 12 is available

    Yeah, pretty sure that's all that's needed. Can't believe nobody thought of that before.
  8. David Heffernan

    Pos, SplitString

    What do you mean by "shortest"?
  9. David Heffernan

    Delphi 12 is available

    But that's not what it is. It's Delphi 12. Like last time it was Delphi 11 and then 11.1 and then 11.2. So maybe the next one after 12 will be 12.1. Or maybe it will be 13. Or maybe 14. The fact that so many people have such problems with knowing the versions is a sign that their policy is poor. I'm expecting to hear about XE12 before long.
  10. David Heffernan

    get gdi render output of invisible form

    Would you like a pony with that too? Honestly, the entitlement of that statement!
  11. David Heffernan

    Delphi 12 is available

    Wouldn't you just write an exhaustive unit test that ensured nothing could go wrong
  12. David Heffernan

    Delphi 12 is available

    To search out bad luck amongst our Japanese markets??
  13. David Heffernan

    Try-Finally-end; & Exit??

    None of us can do this though. Why are you posting here instead of submitting a QP request? We aren't the people you need to convince.
  14. David Heffernan

    Try-Finally-end; & Exit??

    Why are you arguing. Surely you have an actual problem to solve. Why don't you just do that. You know all you need to know now.
  15. David Heffernan

    Try-Finally-end; & Exit??

    Well, you say that, but it's the placement of the label that determines whether this an error or not so I think that's fine.
  16. David Heffernan

    Try-Finally-end; & Exit??

    Actually that's not where the compiler reports the error. The compiler reports the error as indicated in my post. At the label.
  17. David Heffernan

    Try-Finally-end; & Exit??

    For the sake of future readers, this example is not minimal. I can't imagine where there are two goto statements. The issue you raise needs one. Minimality is important. This is the example you should have posted: procedure Foo; label L1; begin try goto L1; finally end; L1:// E2127 here end; The other thing that is missing is what the compiler error says. Often there's information there. Why omit it. Again for future readers, it says:
  18. David Heffernan

    Locking an Object

    It's a mutex. One thread at a time through protected blocks. Is it the right structure? Maybe. But using a mutex is only going to be useful if you do it right. Do you see the code that accesses FOperationsLoaded outside the mutex. What's your rationale there? Anyway it's kinda hard to analyse your code with it spread over loads of different posts.
  19. David Heffernan

    Spring4D dictionary and record values

    I wrote my own set of collections years ago to escape from the bugs in the RTL collections, but I suspect there aren't so many these days
  20. David Heffernan

    Spring4D dictionary and record values

    waiting for @Stefan Glienke to show up and answer this
  21. David Heffernan

    Spring4D dictionary and record values

    Owns values, means "collection is going to call free on every vamue when it is no longer held in the list". Which implies it needs to be an instance of a class. A record is not.
  22. David Heffernan

    Looking forward to Delphi 12 Athens support

    Just as a general piece of advice, when new Delphi versions are released, you'd normally expect to go to the repo for latest source to work with that version. Getting used to using repos rather than relying on and waiting for packaged releases is a skill worth learning.
  23. David Heffernan

    Locking an Object

    If the methods here can all be called arbitrarily from multiple threads then you seem to have at the very least a race on FOperationsLoaded. I don't understand what that call to Wait is for either.
  24. David Heffernan

    Delphi 12 is available

    It's one of my goals to release a version 13 of my software, which is currently at 11.4. I'd be able to retire then!!
  25. David Heffernan

    Delphi 12 is available

    You can use QualityPortal to find info about bugs being fixed
×