-
Content Count
3701 -
Joined
-
Last visited
-
Days Won
185
Everything posted by David Heffernan
-
Inline var not working this time
David Heffernan replied to Marsil's topic in RTL and Delphi Object Pascal
Does it compile if you write TestProc() -
Do you need an ARM64 compiler for Windows?
David Heffernan replied to Lars Fosdal's topic in Cross-platform
Isn't that just recompiling VS with the ARM compiler. -
Do you need an ARM64 compiler for Windows?
David Heffernan replied to Lars Fosdal's topic in Cross-platform
That makes sense if you write programs that only run on computers that you buy. I write programs that run on computers that other people buy. I suspect that others do likewise. So I'll need a compiler for any architecture that a large number of customers and potential customers use. Whether Windows on ARM64 will fit that description anytime soon, I've no idea. -
How to compile against ASM versions of System unit code?
David Heffernan replied to kaarigar's topic in RTL and Delphi Object Pascal
You should profile your program to find out where the bottleneck is. Human intuition is usually wrong in such matters. -
No. It is not possible to read an excel file without opening it. However, I suspect that what you actually want to do is to read such a file without using an Excel process via its COM API. If that is what you want to do then it is indeed possible.
-
How to compile against ASM versions of System unit code?
David Heffernan replied to kaarigar's topic in RTL and Delphi Object Pascal
If there are faster asm versions in the system unit, that work on x64, then they will be used. But you can't compile an x86 asm procedure in x64 and expect it to work. You need a bespoke x64 version. In other words, I don't think what you describe is going to be possible. What is your specific performance issue? -
Embarcadero 11.1 access violation coreide280.bpl
David Heffernan replied to capi48's topic in Delphi IDE and APIs
My user is administrator, but because of UAC I run by default with restricted rights, as a standard user. Only if necessary do I run a process elevated. Do you have UAC disabled? -
Embarcadero 11.1 access violation coreide280.bpl
David Heffernan replied to capi48's topic in Delphi IDE and APIs
Why? We stopped doing that when Vista came out. -
Football Championship Group Stage Order
David Heffernan replied to PawelPepe's topic in Algorithms, Data Structures and Class Design
difficult to reconcile these two snippets -
Did you submit a PR for these changes?
-
Did you submit a PR for these changes?
-
2022 Stack Overflow Developer Survey
David Heffernan replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
These sort of shitty posts are precisely why SO ask these questions. -
Football Championship Group Stage Order
David Heffernan replied to PawelPepe's topic in Algorithms, Data Structures and Class Design
I guess you should just hire a programmer to do the work for you, if you don't know where to start. You already suggested this. Do a kickstarter or similar. -
2022 Stack Overflow Developer Survey
David Heffernan replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
I presume that they are concerned that their community isn't discriminating against any particular groups of people. -
Football Championship Group Stage Order
David Heffernan replied to PawelPepe's topic in Algorithms, Data Structures and Class Design
It's just a lexicographic order. If the primary comparison is equal, move on to the secondary etc until you separate the teams. -
Delphi can access all Windows APIs and the best reference is MSDN.
-
Er, yes, that's what I meant to type
-
Isn't it ExtractFileName(ExtractFileDir(ExeName))
-
Does this happen with a brand new VCL app with a single form that does nothing? If not then the answer is specific to your code.
-
This should not be necessary. It also seems like there would be scenarios which this would stop the user doing things they want to do.
-
Why would you try to put these two together. You use TortoiseGit inside explorer surely.
- 10 replies
-
Does ProgressBar Inside StatusBar Still Working?
David Heffernan replied to stacker_liew's topic in VCL
I also owner draw into a status bar panel for this need. It's pretty straightforward. -
Survey of Delphi Versions in use??
David Heffernan replied to Ian Branch's topic in Community Management
No they don't. I'm talking about actual statisticians as in a branch of mathematics. -
New Delphi job opportunity
David Heffernan replied to Berocoder's topic in Job Opportunities / Coder for Hire
It just seems so weird to me that there is such a thing as a Delphi developer. Are companies really not prepared to teach people? How can it be harder to learn a new language than to learn a new code base? Nothing here computes to me. -
Exception class EConvertError issue
David Heffernan replied to Minh Hoang's topic in OmniThreadLibrary
Bug in your code. Show a minimal reproduction.