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.