Jump to content

David Heffernan

Members
  • Content Count

    3710
  • Joined

  • Last visited

  • Days Won

    185

Everything posted by David Heffernan

  1. Yeah I don't do a heap allocation. I use a local fixed length array.
  2. I prefer to replace dot or comma with the locale's decimal sep and then use StrToFloat. Although in reality I don't use the Emba conversion functions because they are defective, i.e. not accurate.
  3. David Heffernan

    Bug with formatfloat in crossplatform ?

    It depends on the locale rather than the os
  4. David Heffernan

    Bug with formatfloat in crossplatform ?

    Looks like it. Submit a bug report.
  5. David Heffernan

    EurekaLog vs MadExcept vs manual

    Subtract $00401000 from the address and look it up in your detailed map file. But yeah, get madExcept or EurekaLog.
  6. David Heffernan

    How to get the actual UTC time??

    You are concentrating on the time zone, but that's not your issue at all. When you get time from somewhere, you will be able to convert to UTC because you will know the time zone associated with the time. Your problem seems to be that you want to use an authorative time source. You should do research on that rather than worrying about time zone conversion.
  7. David Heffernan

    How to get the actual UTC time??

    What source do you want to use for the time, given that you've ruled out the local computer?
  8. "I need to have XXX translated to YYY" seems a little abrupt to me.
  9. What pay rate are you offering?
  10. David Heffernan

    Floating point arithmetics

    Log the floating point control word and see if it is the same in the two programs.
  11. David Heffernan

    gridlines in listboxes

    Use a list view. Part of problem solving is exploring the problem space and finding the best solution, given the pros and cons of all possible options. Deciding on the solution first and then trying to force it to work is not the way to solve problems.
  12. Nothing fundamentally wrong with your option 1, so long as that is the single place where those string literals are written. The array does have the useful benefit of leading to helpful compiler error when enums extended, as discussed. But yeah, none of these options is especially terrible. I'd actually rate option 2 as the worst.
  13. What's your definition of magic string?
  14. Speed isn't the issue. The mistake that you make again and again. Maintainability is the only concern here.
  15. So, the answer is a definitive no. Yeah, you are right, I just assumed that typed constants would be placed in read only memory, as they are in other tool chains. Oh well.
  16. Aren't they placed in read only memory?
  17. Attribute syntax demands true constants
  18. David Heffernan

    Convert Double to Real

    Given this definition type Real = Double; I'd say you don't have much to fear. Of course, this code doesn't compile.
  19. David Heffernan

    TListView filled by Thread = Freeze

    Why do this in a thread? Seems like much complexity for no possible gain.
  20. David Heffernan

    AllocHwnd + TTimer = lag?

    It's not going to be sent many messages. Can you reproduce the behaviour in a cut down program?
  21. David Heffernan

    Get rectangle of the button that was pushed on another form...

    The setup is pretty opaque for us here. These are the sort of details that matter. Without them it's just guesswork.
  22. David Heffernan

    Get rectangle of the button that was pushed on another form...

    Make a note of the coordinates in the code that handles the button click event, and pass that on to other other code. I'm assuming that you are in control of all of the code.
  23. David Heffernan

    Alfabetical order of a letter

    You should check that Length(Str)=1. This fails of course, it doesn't compile. But it's not the code that was suggested. You should take more care when copying code.
  24. David Heffernan

    Alfabetical order of a letter

    Wbat if there are more than 26 columns?
  25. Seems like you should be building the GUI in code rather than the designer.
×