| bio | website | |
|---|---|---|
| location | Ulverston, United Kingdom | |
| age | 42 | |
| visits | member for | 3 years, 8 months |
| seen | 45 mins ago | |
| stats | profile views | 24,336 |
Twitter @davidheff
Answers that I frequently refer to:
- How does accepting an answer work?
- How to return text from Native (C++) code
- How can I allow a form to accept file dropping without handling Windows messages?
- TLabel and TGroupbox Captions Flicker on Resize
- How do I make my GUI behave well when Windows font scaling is greater than 100%
- Buffered files (for faster disk access)
- TProgressBar never fills up all the way - seems to be updating too fast?
- Why should I not use "if Assigned()" before using or freeing things?
- Control enumerators to turn recursive parent/child walking into simple for/in loops
- List of Delphi language features and version in which they were introduced/deprecated
- Undefined Behavior and Sequence Points
- Reduce exe file
- How can I make a form that is not disabled when another form is shown modally?
- How can I stop my application showing on the taskbar?
- Simply code hooking
- Consumer thread / blocking queue
Other useful resources:
- Rob Kennedy's What is the exact value of a floating-point variable?
- Launching an interactive process from Windows Service in Windows Vista and later
- Teach Your Apps To Play Nicely With Windows Vista User Account Control
- Window Features
- Short, Self Contained, Correct (Compilable), Example
- Raymond Chen's epic series on modality
|
43m |
comment |
Error “Record, object or class type required” when using a wrapper type of an array @user Interesting. Care to say which aspect is like Java and dislike C#? |
|
1h |
comment |
Fully correct Unicode visual string reversal What is the question? |
|
1h |
comment |
Error “Record, object or class type required” when using a wrapper type of an array @bfont How can this question be improved. Code that demonstrates the problem, and a list of compiler errors to explain. |
|
1h |
comment |
Error “Record, object or class type required” when using a wrapper type of an array I'm guessing you are more familiar with C# no? |
|
1h |
answered | Is it safe to set SEM_FAILCRITICALERRORS on startup with VCL (Delphi/C++Builder)? |
|
2h |
answered | Error “Record, object or class type required” when using a wrapper type of an array |
|
3h |
revised |
Get name Drive Hardware deleted 272 characters in body |
|
4h |
revised |
ProcessID confusion added 111 characters in body |
|
6h |
comment |
Creating parallel threads using Win 32 API Well, unless the matrices are truly huge, the overhead of spinning up threads is going to outweigh the benefits. What's more, if you care about performance, you should use a format other than triplets if you want to multiply two matrices. |
|
6h |
comment |
Python struct.unpack in delphi @UlrichEckhardt Not on the platforms that Delphi code traditionally executes (x86/x64). I think it could be an issue on ARM, but that's not my area of expertise. |
|
6h |
answered | Python struct.unpack in delphi |
|
8h |
answered | WinAPI using SetfilePointer to test EOF |
|
8h |
comment |
Ported to VC6 32bit 64bit to appear iterator.h functions.h compile error It would be better if you formatted this properly. Also, why VC6 for 64 bit? |
|
8h |
revised |
ProcessID confusion edited tags |
|
8h |
answered | ProcessID confusion |
|
16h |
comment |
Multiple TThread Instances You appear to be doing this the wrong way. You need a pool of threads, and a list of tasks. The threads consume the tasks until there are no tasks left. |
|
1d |
comment |
Method's type signature is not PInvoke compatible Interop questions require both sides of the interface. This is half a question. Please fix it. |
|
1d |
comment |
TXSDateTime/TXSDecimal memory leaks in web services in Delphi XE Thank you, I was not aware of them at all |
|
1d |
comment |
TXSDateTime/TXSDecimal memory leaks in web services in Delphi XE Are we meant to know what TXSDateTime and TXSDecimal are? Does it matter? |
|
1d |
comment |
Malloc seemingly using less memory than new[] I guess that's because the actual block of memory might have some wasted space. And so you cannot calculate n by dividing the total block size by the element size. |