HMcG

331
Reputation
103 views

Registered User

Name HMcG
Member for 12 months
Seen 2 hours ago
Website
Location
Age
Nov
8
awarded  Nice Question
Nov
6
asked What is the purpose of the ‘Tag’ property of Delphi VCL components?
Nov
2
comment What is the difference between types defined in the implementation as compared to the interface section of a unit?
Thanks both, that clarifies things. I have been in the practice of putting all class type defs into the interface section as that is how most examples show things. A classic case of cargo cult programming - I just had not really thought about it. Cheers.
Nov
1
comment What is the difference between types defined in the implementation as compared to the interface section of a unit?
Ok, so is there any overhead or saving in this, or is it purely a matter of information hiding? I have, as mentioned, not actually seen it used very often, which seems strange if it is 'better practice'.
Nov
1
asked What is the difference between types defined in the implementation as compared to the interface section of a unit?
Oct
28
comment How to increase the startup speed of the delphi app?
R.E. splash screen, how about a picture of the main form - it looks like it's started up quickly, even though you cannot do anything with it. A bit like Vista, really. ;-)
Oct
12
comment What is the most unreadable programming language?
You actually think it's unreadable? Yep, it's very long-winded, and Multiply Price By Quantity Giving SubTotal may take longer to read than Subtotal = Price * Quantity but I've never done any programming in Cobol and I'm pretty sure I understand what it means.
Oct
11
comment Can I map Caps Lock to something useful for the Delphi IDE?
Tried out Autohotkey, looks as if it does the trick. And whole bunch more stuff to boot. Cheers
Oct
10
answered Delphi - most successful applications developed
Oct
1
asked Can I map Caps Lock to something useful for the Delphi IDE?
Aug
3
awarded  Critic
Aug
1
comment Wrapping TStringList in a Record
That's pretty cool. To clarify, is there a problem only if the object instance contains a reference to it's own instance, or to any instance of the same class?
Aug
1
comment Wrapping TStringList in a Record
Although I have not even touched Generics yet - so much to learn, so little time................
Aug
1
comment Wrapping TStringList in a Record
Thanks Jim, I searched both CC and Googled before posting this, and didn't find this one. There are a bunch of utility class objects this would be convenient for. Although I kind of prefer RStringList ;-)
Aug
1
comment Wrapping TStringList in a Record
Already upgraded! Upgraded from Turbo Delphi Pro to Delphi 2009 Professional , so (as far a I am concerned) I got it at a steal. The BOGO offer would have been the icing on the cake, but I am looking at getting Prism as well anyway.
Aug
1
asked Wrapping TStringList in a Record
Jul
31
comment Recommendation needed for good database for Delphi desktop app
You can even embed Firebird in your Delphi .exe. fikrethasovic.com/fb_embedded_1.0_SRC.zip/…
Jul
26
comment Use of Frames in Delphi for GUI information hiding
So I create a record or class that the logic in the GUI layer sets the values on, then access that object in the main unit? This does sound like a better method than having a bunch of properties in the GUI form unit. Thanks.
Jul
24
comment Use of Frames in Delphi for GUI information hiding
Thanks for pointing out 1) - it is not something I had come across yet. Point 2) is what I doing with the MyFrame being private - only the MyForm unit associated with Frame can access the Frame and the frame components. None of the other units can see the (private) MyFrame. If the wrapper class method has the same effect, this would probably be a simpler way of achieving the same effect. HMcG
Jul
24
awarded  Commentator
Jul
24
comment Use of Frames in Delphi for GUI information hiding
Because I am moving the MyFrame: TMyFrame; into the private section, an exception occurs stating that 'TMyFrame not found' occurs if I don't register TMyframe.
Jul
24
comment Use of Frames in Delphi for GUI information hiding
You are quite correct in that my early apps had all the logic in the UI layer. So what I would like is a clean way to raise UI values/properties for use in the main app unit. The majority of my apps are interfacing to hardware and are doing fairly simple operations, but with a lot of specific settings, so it is not clear how to get away from the form (dialogs?) having a lot of Value properties. I am working (slowly) through the Head First Design Patterns book so I should get to MVC soon. What I had hoped for was a cleaner RAD style for simple tools/apps.
Jul
23
asked Use of Frames in Delphi for GUI information hiding
Jul
10
comment What are the advantages of c# over, say, delphi/realbasic for windows applications
@ShuggyCoUk - being better later is exactly what Microsoft have been doing all these years. Doesn't seem to have hurt them so far.