-
Content Count
3701 -
Joined
-
Last visited
-
Days Won
185
Everything posted by David Heffernan
-
Can somebody help me to translate a short Delphi console app to C++ Builder?
David Heffernan replied to TurboMagic's topic in General Help
What pay rate are you offering? -
Log the floating point control word and see if it is the same in the two programs.
-
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.
-
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
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. -
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
What's your definition of magic string? -
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Speed isn't the issue. The mistake that you make again and again. Maintainability is the only concern here. -
Const Records and Class/Property Attributes (decoration)
David Heffernan replied to mvanrijnen's topic in Algorithms, Data Structures and Class Design
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. -
Const Records and Class/Property Attributes (decoration)
David Heffernan replied to mvanrijnen's topic in Algorithms, Data Structures and Class Design
Aren't they placed in read only memory? -
Const Records and Class/Property Attributes (decoration)
David Heffernan replied to mvanrijnen's topic in Algorithms, Data Structures and Class Design
Attribute syntax demands true constants -
Convert Double to Real
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
Given this definition type Real = Double; I'd say you don't have much to fear. Of course, this code doesn't compile. -
Why do this in a thread? Seems like much complexity for no possible gain.
-
It's not going to be sent many messages. Can you reproduce the behaviour in a cut down program?
-
Get rectangle of the button that was pushed on another form...
David Heffernan replied to RTollison's topic in General Help
The setup is pretty opaque for us here. These are the sort of details that matter. Without them it's just guesswork. -
Get rectangle of the button that was pushed on another form...
David Heffernan replied to RTollison's topic in General Help
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. -
Alfabetical order of a letter
David Heffernan replied to Henry Olive's topic in RTL and Delphi Object Pascal
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. -
Alfabetical order of a letter
David Heffernan replied to Henry Olive's topic in RTL and Delphi Object Pascal
Wbat if there are more than 26 columns? -
Can I force compiler to report on enum change that related code needs changing?
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Seems like you should be building the GUI in code rather than the designer. -
Running .Net Standard Assembly
David Heffernan replied to rcaspers's topic in RTL and Delphi Object Pascal
Who are you hoping does this? i.e. who is "you" in your question? -
Nah, that's not going be to the cause of the error reported in the original post. Hard to say what is the problem though without knowing the other side of the interface. How can we know how the function is declared in labview? My expectation is that the real issue is a mismatch at the binary interface layer.
-
The thing is, both resizing and compression will change the image and only you can judge which you prefer. It depends on what you are trying to do with these images, what sort of images they are. In my view you need to engage with that side of things first, not in a coding setting, to work out precisely what transformation you want. Then implementing it in code should be simple.
-
Do you want to resize the image or increase the compression? And which framework, vcl or fmx? And if you want to resize, what resampling do you want to use?
-
I have and Array of Word issue. Help me understand.
David Heffernan replied to Bernard's topic in Algorithms, Data Structures and Class Design
It's also pointless to use SetLength in this code because you then throw that array away and replace with a new one. -
How to handle delphi exception elegantly with logging feature.
David Heffernan replied to HalfBlindCoder's topic in Algorithms, Data Structures and Class Design
Isn't that what Ord() is for? -
That returns a UTF-8 encoded byte array which you can copy into your record. Are you familiar with TEncoding, it's a somewhat import tool for text encodings?
-
TEncoding.UTF8.GetBytes