Jump to content

David Heffernan

Members
  • Content Count

    3710
  • Joined

  • Last visited

  • Days Won

    185

Everything posted by David Heffernan

  1. There is another issue here, which is that you check bits that are unused, it the base type has number of members not divisible by 8. Probably you get away with it because it's probably hard to get 1 in any of the unused bits in a set.
  2. Thinking again, the specifics are important here, the use of an untyped parameter that is overload with an absolute variable. This basically renders range checking close to useless, because of the unsafe typecast.
  3. That's wrong. The code reads absolute aSet rather than absolute aByte. Consequently this statement is also incorrect. aSet could be on the stack, or the heap, or a global. In any case, I took the question a bit more generally than you. Accessing arrays out of bounds can lead to AVs or corruption of other memory in the case of a write operation. Yes, I know that the example here is a read. I was generalising.
  4. Behaviour is undefined. You might get an AV, or a write might corrupt data. Definitely not graceful failure.
  5. David Heffernan

    How can I implement DLLs in my code?

    Your code doesn't load a dll. You have an abstract virtual method that is never implemented. You are trying to run before you can walk. You aren't going to learn anything useful this way. You need to go back to the basics.
  6. Enumerate the members of interest and persist them. If these classes are really that simple, what is the difficulty? What are you stuck with? Using the RTTI? Or working with INI files?
  7. David Heffernan

    Can an app beat a spreadsheet?

    Talk to other people and see what they want.
  8. David Heffernan

    Example of wasteful, innefficient string manipulation

    This was from the original post. I suspect you meant to say fragmented rather than defragmented. When I asked how you assessed fragmentation you said that you hadn't, and that you didn't understand virtual memory. I don't know what you think you have demonstrated, but I don't think you have demonstrated anything at all.
  9. David Heffernan

    Example of wasteful, innefficient string manipulation

    What's the point? You've already reached a false conclusion based on a flawed investigation. If we try to point this out you tell us that you aren't interested in learning the truth.
  10. David Heffernan

    Example of wasteful, innefficient string manipulation

    Why aren't you curious to learn about how virtual memory works? Why aren't you curious to learn how sub-allocating memory managers work? Why aren't you curious to learn what address space fragmentation is?
  11. David Heffernan

    Example of wasteful, innefficient string manipulation

    I understand that you'd like that conclusion. It would be nice if it were true though. It isn't.
  12. David Heffernan

    Example of wasteful, innefficient string manipulation

    If you don't know about address space fragmentation, don't you wonder whether or not it is relevant?
  13. David Heffernan

    Example of wasteful, innefficient string manipulation

    Are you measuring address space fragmentation?
  14. It's just calling methods and accessing attributes. No different for pandas than for any other library.
  15. David Heffernan

    Example of wasteful, innefficient string manipulation

    Delphi's memory manager is fastmm. Also, your tool to measure the effect of the program isn't really telling you anything. It says nothing about fragmentation of address space. Virtual memory is a very complex subject. I suspect you need to learn more of the details before you can reason about your program.
  16. David Heffernan

    FormDestory call order

    Agreed. Why would the main form destroy itself before the code in the dpr completes?
  17. David Heffernan

    madexcept inside a DLL

    There are lots of posts on this topic on the madExcept forum. Websearch with the obvious search terms will find them.
  18. David Heffernan

    Images in High DPI, how?

    You seem to be wanting to change your program, but now you tell us that you can't change it. Seems like a waste of time.
  19. David Heffernan

    Images in High DPI, how?

    If you can't change anything, I wonder what this topic is about. Is it a thought experiment?
  20. David Heffernan

    Images in High DPI, how?

    You don't need to change them. You just need new versions of your existing glyphs.. You'll need to hire a graphic designer.
  21. David Heffernan

    Error E2010 incompatile types are same types

    You need to spend some time and establish some basic facts. We can't give you meaningful help on this basis.
  22. David Heffernan

    Error E2010 incompatile types are same types

    Clearly you have got some code. The code is what you are trying to compile. The error message tells you what line of code causes the error. If it used to compile, something changed. What?
  23. David Heffernan

    Error E2010 incompatile types are same types

    Do you have any code?
  24. David Heffernan

    A library path manager...

    It's kinda lame that they still haven't addressed this. It's been an issue since Delphi 1. The tech exists. They can already dynamically load and unload packages.
×