Mason Wheeler

12,888
reputation
1885 views

Registered User

name Mason Wheeler
member for 1 year
seen 3 hours ago
website
location Seattle
age 27
A lifelong programmer who's been coding in Delphi since its initial release and currently makes a living at it.
13h
answered Discrepancy in channel size between BASS_GetChannelLength() and BASS_GetChannelData()
1d
answered How do I get the handle for locking a file in Delphi?
1d
comment Ensuring functions within a webservice are secure in delphi
No stored procedures? Ouch! Doesn't sound very advantageous to me. :P
1d
answered Ensuring functions within a webservice are secure in delphi
2d
comment What does ShFileOperation do when the recycle bin is full?
I wasn't aware that the Recycle Bin can be "full". How does that work?
Dec
15
comment What bookkeeping data does a Delphi dynamic array contain?
Yes. What I meant by that was that Task Manager accurately measures what it measures, which is how much the app has requested from Windows, not necessarily how much the app is actually using internally.
Dec
14
comment What bookkeeping data does a Delphi dynamic array contain?
You're right. It's right there in the code. And Task Manager is pretty accurate, but what it measures is the amount of RAM that the app has allocated from Windows. So the real question is, why is FastMM grabbing so much more memory than it needs from the OS? Maybe to reduce the total number of memory requests required, and keep fragmentation down?
Dec
14
comment What bookkeeping data does a Delphi dynamic array contain?
I don't think so. All the relevant routines seem to take type info as a separate parameter, which the compiler keeps track of.
Dec
14
answered Problem adding lots of strings to a TStringList
Dec
14
asked What bookkeeping data does a Delphi dynamic array contain?
Dec
14
comment Delphi - Creating controls before form Create is run?
I think we found the problem. See the edit to my reply.
Dec
14
revised Delphi - Creating controls before form Create is run?
added 398 characters in body
Dec
14
comment Delphi - Creating controls before form Create is run?
TRadioPanel is a VCL Form, which is placed on other forms? Do you mean it's a frame?
Dec
14
comment Delphi - Creating controls before form Create is run?
It should be created. If you check, all the other objects on the form will already be created by then. Maybe something's going wrong while deserializing the component? Hard to tell without more information. BTW is this a button directly on your form, or is it a sub-component of a larger component that you've placed on your form?
Dec
14
comment Delphi - Creating controls before form Create is run?
Welcome to Stack Overflow, Michael. :)
Dec
14
answered Delphi - Creating controls before form Create is run?
Dec
14
answered Why does building with runtime packages make the EXE file smaller?
Dec
14
revised How to get enumeration type into stringlist?
fixed a typo
Dec
14
comment How to get enumeration type into stringlist?
Oh, well if you're looking for an Object Inspector, I believe the JVCL has one. Try looking through the code and seeing how it works.
Dec
13
answered How to get enumeration type into stringlist?
Dec
13
comment JSplitPane analogue for Delphi
What sort of problems are you having with TSplitter?
Dec
13
accepted Does single-paradigm OOP lead to abstraction inversion?
Dec
13
comment Delphi OnClick Problem with Multiple Units
Declare a method on your form with the correct signature, and put the code you're trying to execute in there.
Dec
13
answered Delphi OnClick Problem with Multiple Units
Dec
13
revised Delphi OnClick Problem with Multiple Units
added 304 characters in body
Dec
12
comment How can a shared event handler know which control’s event it’s handling?
As-casting basically walks a linked list from the object's actual type to the type you're casting to, looking for matches. If you do it in a tight loop and the "as type" is several levels of inheritance above the actual type, it can give a definite performance hit, but aside from that you'll probably never notice it.
Dec
12
answered Could Free Pascal benefit of something like Apache Maven?
Dec
12
comment How can a shared event handler know which control’s event it’s handling?
tech.turbu-rpg.com/56/as-sertion-casting As is a cast, not a conversion, but it checks to make sure you've got the type right and raises an exception otherwise.
Dec
12
answered How can a shared event handler know which control’s event it’s handling?
Dec
12
comment Upgrade to Delphi 2010, or stick with Delphi 7 “forever”?
I had a friend who wanted to learn just yesterday, but was driven off by the sticker shock. That particular barrier to entry is way too high.
Dec
11
comment Records and Generic Containers in Delphi
Yep! The reason this works fine for objects is because objects are reference types, and so all that gets copied is the pointer to the object. This isn't the case for records.
Dec
11
revised Records and Generic Containers in Delphi
Fixed the code formatting
Dec
10
comment D2007: Installed IDE Extensions - now one important component doesn’t work
If this happened when you installed Andreas's plugins, I'd report it to him and see if he can help out with fixing it.
Dec
10
accepted How do I create an instance from a string that provides the class name?
Dec
10
accepted Generic Containers in Delphi
Dec
10
answered Generic Containers in Delphi
Dec
10
accepted Records in Delphi
Dec
9
comment Records in Delphi
No, pointer to record = pointer to record. An object (class instance) is different from a record in several ways.
Dec
9
answered Records in Delphi
Dec
8
comment delphi records and c structs
I'm not sure what your struct-packing options are in C. Try checking your compilerr documentation.
Dec
8
comment How do I create an instance from a string that provides the class name?
Glad to be able to help!
Dec
8
answered How do I create an instance from a string that provides the class name?
Dec
8
accepted delphi records and c structs
Dec
7
accepted Is it safe to cast generics in Delphi?
Dec
7
answered Is it safe to cast generics in Delphi?
Dec
7
accepted Reference or tutorial to clarify object reference confusion
Dec
7
revised Determine the parent process of the current app
cleaned up this post to make it easier to find the question the OP wanted answered
Dec
7
comment Determine the parent process of the current app
I've got SysInternals ProcessExplorer, which shows me a tree of all the currently running processes and what each one was launched by, so the information is definitely available. The question is how to access it, which I don't know, unfortunately. I'll add the "winapi" tag to your post and make it a bit clearer that that's what you're looking for.
Dec
7
comment Determine the parent process of the current app
It looks like what he's asking is if it's possible to verify the identity of the process that launched the app, and then immediately terminate if it's the wrong one. That should be possible.
Dec
7
answered delphi records and c structs