-
Content Count
3711 -
Joined
-
Last visited
-
Days Won
185
Everything posted by David Heffernan
-
Conceptual - callbacks that are called from background thread
David Heffernan replied to Fr0sT.Brutal's topic in Algorithms, Data Structures and Class Design
There are simply some rules of use for certain types of library that cannot be enforced effectively by the compiler, or even by runtime checks. For these rules you need documentation and developers that are prepared to read documentation. My personal view is that if a developer is not prepared to go to the trouble of reading the documentation, then any problems they have are their concern and not that of the library developer. -
IDE adds {$R} between units
David Heffernan replied to John Kouraklis's topic in Delphi IDE and APIs
Can you show a minimal dpr file and tell us which version of Delphi you use. -
Passing back a string from an external program
David Heffernan replied to dummzeuch's topic in Windows API
It really is -
[out] and [in] in records
David Heffernan replied to efortier's topic in RTL and Delphi Object Pascal
Where are the attributes defined? -
64-bit type libraries still not supported by the IDE ?
David Heffernan replied to A.M. Hoornweg's topic in Delphi IDE and APIs
Posting here is not going to have any impact on development of the Delphi IDE by Embarcadero. You would need to submit a QP report, although I guess at least one already exists. I assumed that your post was driven by a desire to get something done. Which can only be to import some actual type libraries. Hence my comments. -
Google Play Store - request extension for Delphi apps
David Heffernan replied to Darian Miller's topic in Cross-platform
Choosing a better tool for mobile development is surely an option -
Passing back a string from an external program
David Heffernan replied to dummzeuch's topic in Windows API
https://stackoverflow.com/q/19054789/505088 https://stackoverflow.com/q/19054789/505088 -
64-bit type libraries still not supported by the IDE ?
David Heffernan replied to A.M. Hoornweg's topic in Delphi IDE and APIs
You can locate the library and run the typelib importer on it using the command line tool. The format is the same for 32 and 64 bit. The issue is just that a 32 bit process doesn't see the 64 bit registry. But once you pass the 64 bit com dll to the type lib importer it will be fine. Often you just import the 32 bit version of the COM dll and the same import unit works for both. -
64-bit type libraries still not supported by the IDE ?
David Heffernan replied to A.M. Hoornweg's topic in Delphi IDE and APIs
There are plenty of command line tools for this. -
Relaxed JSON
David Heffernan replied to John Kouraklis's topic in Algorithms, Data Structures and Class Design
I don't think that toml is widely used, although I admire its goals. I also believe that it has some limitations. And I don't think there is a Delphi parser for it. -
August 2019 Roadmap released
David Heffernan replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
I expect that's exactly what happened, many times, but the money people decided otherwise. -
Relaxed JSON
David Heffernan replied to John Kouraklis's topic in Algorithms, Data Structures and Class Design
Yeah, seems pointless. Use YAML if you want more readable files. -
Conceptual - callbacks that are called from background thread
David Heffernan replied to Fr0sT.Brutal's topic in Algorithms, Data Structures and Class Design
Documentation is always an option. Don't rule it out. -
parsing Google search results
David Heffernan replied to David Schwartz's topic in Network, Cloud and Web
Isn't this the wrong approach. Don't you use the REST API? -
How to reliably know if there is data selected in TVirtualStringTree
David Heffernan replied to Mike Torrettinni's topic in VCL
What if the user has clicked without using the mouse? -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
The downside of adding checks is that the code bloat is huge. Imagine a function that accepts three args and just forwards them on to another method. You then have three checks against nil, and a single line to forward the call. That burden adds up. Having this checked statically, or even at runtime like range checking would be a boon. Of course, none of that helps with the much more invidious error of passing a reference to an already destroyed object. -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Not something I've ever experienced being a Windows only delphi dev. -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Erm, yes. -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Every function you write that accepts a reference type, you check that it is assigned on entry to the function? -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Examples aren't much use without understanding the rationale behind them. If exceptions are a PITA you must be doing something wrong. It's error handling without exceptions that is a PITA. -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Reasonable at certain interfaces between modules, but not in every single function. -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
Why even bother writing those checks? An exception will be raised as soon as you attempt to use the nil instances. -
looking for design ideas for an easily editable list
David Heffernan replied to David Schwartz's topic in VCL
I guess it depends on what motivates you. Do you want to optimise for the quality of your program's UX, or is it more important to you that you can create the UX as quickly as possible, irrespective of how well it works? -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
It still says exceptions to me. But you say that you don't want to use exceptions. Can you explain why you don't want to use exceptions? -
handling predicate conditions
David Heffernan replied to David Schwartz's topic in Algorithms, Data Structures and Class Design
This isn't using exceptions for control flow. It's using exceptions to deal with invalid parameters. If you don't use exceptions, and you show a message dialog to the user then what is code going to do next? How are you going to avoid following the normal execution path. You can exit this function. But what about the caller? And its caller? And its caller? And what about when you run your code through your program's API rather than interactively. Pretty debilitating to show a dialog to an API user.