User HMcG - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T07:10:56Zhttp://stackoverflow.com/feeds/user/45157http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1690764/what-is-the-purpose-of-the-tag-property-of-delphi-vcl-components11What is the purpose of the 'Tag' property of Delphi VCL components?HMcG2009-11-06T21:56:41Z2009-11-09T19:23:26Z
<p>Is there any specific purpose for the 'Tag' property of Delphi VCL components?
I have Googled a few examples using it as, for example, a 'color' property or using the value as a pointer address, but is it 'good practice' to use it, or is it considered 'bad practice' as it ties the program logic to the UI?</p>
http://stackoverflow.com/questions/1658347/what-is-the-difference-between-types-defined-in-the-implementation-as-compared-to4What is the difference between types defined in the implementation as compared to the interface section of a unit?HMcG2009-11-01T21:15:23Z2009-11-05T06:18:27Z
<p>Almost all of the Delphi code I have read has all the class type definitions in the units interface section, but I have seen occasional use of type definitions within the implementation section.</p>
<p>What exactly is the difference between these, and why would I use this?</p>
http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1549159#15491595Answer by HMcG for Delphi - most successful applications developedHMcG2009-10-10T21:50:19Z2009-10-10T21:50:19Z<p>KMPlayer, a beautiful, lightweight media player that will play every media file type I have ever come across, either with its own or external codecs, has more options and features than you could shake a stick at. And its free.<br />
<a href="http://www.kmplayer.com/" rel="nofollow">http://www.kmplayer.com/</a>
<a href="http://kmplayer.en.softonic.com/" rel="nofollow">http://kmplayer.en.softonic.com/</a> </p>
http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ide0Can I map Caps Lock to something useful for the Delphi IDE?HMcG2009-10-01T11:17:18Z2009-10-01T15:22:57Z
<p>OK, so I know I can remap the Caps Lock key in Windows registry, but is there something useful I can map it to in the Delphi 2009 IDE? I was hoping for Code Completion (Ctrl-Space), is there a way to map the single Caps Lock key to a Ctrl-key combination?</p>
http://stackoverflow.com/questions/1216819/wrapping-tstringlist-in-a-record2Wrapping TStringList in a RecordHMcG2009-08-01T15:27:34Z2009-08-01T19:37:43Z
<p>I tend to use Delphi's TStringList for text manipulation, so I write a lot of procedures/functions like:</p>
<pre><code>var
TempList: TStringList;
begin
TempList:= TStringList.Create;
try
// blah blah blah do stuff with TempList
finally
TempList.Free;
end;
end;
</code></pre>
<p>It would be nice to cut out the creation and freeing for such a common utility class.</p>
<p>Since we now have records with methods, is it possible to wrap a Class like TStringList in a
Record so I could just have: </p>
<pre><code>var
TempList: TRecordStringList;
begin
// blah blah blah do stuff with TempList
end;
</code></pre>
http://stackoverflow.com/questions/1171127/use-of-frames-in-delphi-for-gui-information-hiding1Use of Frames in Delphi for GUI information hidingHMcG2009-07-23T11:26:45Z2009-07-23T20:35:55Z
<p>Hi,
I have been learning Delphi for the last 3 years, on a hobby/occupational level. I am happy to say that I have now progressed to the point that I can look back on my early code with horror and embarrassment. So I am now going through some of my early apps and rewriting/ refactoring them.</p>
<p>One of the bad habits I am trying to get away from is accessing components on one form from another unit. In an effort to enforce this, I have been experimenting with using frames as a method of information hiding. So instead of having a form with components on it, I am creating a frame to hold all the form components, then placing the frame on a form, moving the frame declaration into the private declarations, </p>
<pre><code>type
TMyForm = class(TForm)
private
MyFrame: TMyFrame;
procedure SetTimeDate(const Value: TMyItem);
function ReadTimeDate:TMyItem ;
</code></pre>
<p>then registering the frame in the form initialization section</p>
<pre><code>initialization
begin
RegisterClasses([TMyFrame])
</code></pre>
<p>I am then declaring the properties I need in the public section of the form unit, which has access to the frame and its components.</p>
<pre><code> public
property TimeDate: TOverlayItem read ReadTimeDate write SetTimeDate;
</code></pre>
<p>I am also using frames to consolidate often repeated component groups.</p>
<p>This seems to work for the purposes I want (hiding Myframe and its components), but does anyone else have any experience of this method?</p>
<p>Are there any drawbacks with using frames?
Am I actually gaining any benefit from doing this?
Are there any problems with using nested frames within frames?
Are there any good practice guides to using frames in Delphi?
Are there better/ easier ways of achieving the same effect with regard to GUI information hiding in Delphi?</p>
<p>HMcG</p>
http://stackoverflow.com/questions/938793/vista-application-thumbnail4Vista application thumbnailHMcG2009-06-02T10:12:40Z2009-06-02T19:38:06Z
<p>By design, the toolbar application thumbnail on Vista does not update when an application is minimized, since the minimized window itself is not redrawing. For a monitoring application I have, it would be useful to update the application thumbnail while the application remains minimized. I am using Delphi 2009.
Can anyone suggest a good workaround for this?</p>
<p>HMcG</p>
http://stackoverflow.com/questions/373105/what-religion-is-delphi/392836#3928364Answer by HMcG for What religion is Delphi?HMcG2008-12-25T14:24:47Z2008-12-25T14:24:47Z<p>Obviously, Delphi is Jedism. The uninformed say that "Hokey religions and ancient weapons are no match for a good blaster" , but in the hands of a master it is immensely powerful.
Which of course makes C# Sith - the same power turned to the Dark Side ;-)</p>
<p>HMCG</p>
http://stackoverflow.com/questions/365634/as-a-technical-lead-is-it-appropriate-to-reject-a-language-based-upon-personal-pr/365703#3657030Answer by HMcG for As a technical lead is it appropriate to reject a language based upon personal preference?HMcG2008-12-13T20:49:04Z2008-12-13T20:49:04Z<p>/Flamebait On</p>
<p>If it's VisualBasic, then yes......</p>
<p>/Flamebait Off</p>
<p>HMcG</p>
http://stackoverflow.com/questions/1658347/what-is-the-difference-between-types-defined-in-the-implementation-as-compared-to/1658367#1658367Comment by HMcG on What is the difference between types defined in the implementation as compared to the interface section of a unit?HMcG2009-11-02T23:13:16Z2009-11-02T23:13:16ZThanks 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. http://stackoverflow.com/questions/1658347/what-is-the-difference-between-types-defined-in-the-implementation-as-compared-to/1658367#1658367Comment by HMcG on What is the difference between types defined in the implementation as compared to the interface section of a unit?HMcG2009-11-01T21:35:16Z2009-11-01T21:35:16ZOk, 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'. http://stackoverflow.com/questions/1115421/how-to-increase-the-startup-speed-of-the-delphi-app/1115432#1115432Comment by HMcG on How to increase the startup speed of the delphi app?HMcG2009-10-28T17:12:12Z2009-10-28T17:12:12ZR.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. ;-)
http://stackoverflow.com/questions/1584760/what-to-do-when-delphi-diesComment by HMcG on What to do when Delphi dies?HMcG2009-10-18T18:34:04Z2009-10-18T18:34:04ZDude, read the article, not the title.
http://stackoverflow.com/questions/18642/what-is-the-most-unreadable-programming-language/23824#23824Comment by HMcG on What is the most unreadable programming language?HMcG2009-10-12T12:43:03Z2009-10-12T12:43:03ZYou 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.
http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ide/1503520#1503520Comment by HMcG on Can I map Caps Lock to something useful for the Delphi IDE?HMcG2009-10-11T09:47:26Z2009-10-11T09:47:26ZTried out Autohotkey, looks as if it does the trick. And whole bunch more stuff to boot. Cheershttp://stackoverflow.com/questions/1216819/wrapping-tstringlist-in-a-record/1216856#1216856Comment by HMcG on Wrapping TStringList in a RecordHMcG2009-08-01T21:07:20Z2009-08-01T21:07:20ZThat'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?http://stackoverflow.com/questions/1216819/wrapping-tstringlist-in-a-record/1217316#1217316Comment by HMcG on Wrapping TStringList in a RecordHMcG2009-08-01T21:00:58Z2009-08-01T21:00:58ZAlthough I have not even touched Generics yet - so much to learn, so little time................http://stackoverflow.com/questions/1216819/wrapping-tstringlist-in-a-record/1217308#1217308Comment by HMcG on Wrapping TStringList in a RecordHMcG2009-08-01T20:48:32Z2009-08-01T20:48:32ZThanks 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 ;-)
http://stackoverflow.com/questions/1216819/wrapping-tstringlist-in-a-record/1217316#1217316Comment by HMcG on Wrapping TStringList in a RecordHMcG2009-08-01T20:35:34Z2009-08-01T20:35:34ZAlready 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.http://stackoverflow.com/questions/1189892/recommendation-needed-for-good-database-for-delphi-desktop-app/1195971#1195971Comment by HMcG on Recommendation needed for good database for Delphi desktop appHMcG2009-07-31T09:52:34Z2009-07-31T09:52:34ZYou can even embed Firebird in your Delphi .exe.
<a href="http://www.fikrethasovic.com/fb_embedded_1.0_SRC.zip" rel="nofollow">fikrethasovic.com/fb_embedded_1.0_SRC.zip/…</a>
http://stackoverflow.com/questions/1171127/use-of-frames-in-delphi-for-gui-information-hiding/1171162#1171162Comment by HMcG on Use of Frames in Delphi for GUI information hidingHMcG2009-07-26T11:07:14Z2009-07-26T11:07:14ZSo 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.
http://stackoverflow.com/questions/1171127/use-of-frames-in-delphi-for-gui-information-hiding/1174316#1174316Comment by HMcG on Use of Frames in Delphi for GUI information hidingHMcG2009-07-24T23:14:30Z2009-07-24T23:14:30ZThanks 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
http://stackoverflow.com/questions/1171127/use-of-frames-in-delphi-for-gui-information-hidingComment by HMcG on Use of Frames in Delphi for GUI information hidingHMcG2009-07-24T23:03:23Z2009-07-24T23:03:23ZBecause 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.http://stackoverflow.com/questions/1171127/use-of-frames-in-delphi-for-gui-information-hiding/1171162#1171162Comment by HMcG on Use of Frames in Delphi for GUI information hidingHMcG2009-07-24T21:36:17Z2009-07-24T21:36:17ZYou 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.