User Luke CK - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:30:35Zhttp://stackoverflow.com/feeds/user/7947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1298031/including-resource-file-in-a-project-by-rc-file-rather-than-res-file3Including resource file in a project by .RC file rather than .RES fileLuke CK2009-08-19T06:05:17Z2009-08-19T20:25:35Z
<p>I remember reading an article or post somewhere years ago that suggested including a resource file in a project by referencing the .rc file instead of an already compiled .res file so that the resource is built as part of the project's build process.</p>
<p>I have a glyphs.rc file that I currently compile using the command brcc32 glyphs.rc. In my project file I then have the statement {$R Glyphs.res}.</p>
<p>I'd like to simplify this by changing it to something like {$R Glyphs.rc} but am unsure of the syntax. When I try using {$R Glyphs.rc} I get an error [DCC Error] E2161 Error: RLINK32: Unsupported 16bit resource in file "Glyphs.rc". Is this approach possible with Delphi 2007?</p>
http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications10What is the best set of tools to develop Win32 Delphi applications?Luke CK2008-09-15T15:29:32Z2009-07-22T12:44:13Z
<p>What is the best set of development tools to develop Win32 Delphi applications? Include support tools such as automated build servers and modelling software. It would be interesting to get a list of the best tools for Delphi development so please provide a brief description of the tool, state why you use it, why you selected it over alternatives and the impact it has had on your development process. One tool per post please so te more popular and hopefully more useful ones filter to the top. I will update my answer below with my opinion of the tools we use here when I get some time.</p>
http://stackoverflow.com/questions/325073/is-it-possible-to-have-multiple-header-rows-in-a-virtual-string-tree0Is it possible to have multiple header rows in a virtual string tree?Luke CK2008-11-28T04:52:18Z2009-05-30T11:29:32Z
<p>I have a need for multiple fixed rows for the header of a virtual string view. Something that looks like the effect you get if you set a StringGrid's FixedRows property to a value greater than 1. Is there a way to achieve this? Some searching on the Soft-Gems website and forums led me to a couple of mentions of an AdvancedHeaderDraw method and a HeaderQueryElements property on the virtual string tree but I can't work out how to use these.</p>
<p>I also found a demo that uses THeaderControls to achieve a similar effect but there has to be a more elegant solution.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665175#66517542Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:29:07Z2009-03-20T06:29:07Z<p>A working help file.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665174#66517435Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:28:28Z2009-03-20T06:28:28Z<p>Cross platform compilation.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665172#66517245Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:27:43Z2009-03-20T06:27:43Z<p>64 bit compiler.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665171#66517126Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:27:10Z2009-03-20T06:27:10Z<p>Multi-core support.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665169#6651694Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:26:12Z2009-03-20T06:26:12Z<p>Improved class modeling tool.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665167#6651678Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:25:03Z2009-03-20T06:25:03Z<p>Garbage collection.</p>
http://stackoverflow.com/questions/442848/when-asked-how-do-i-make-a-website-how-do-you-answer13When asked "How do I make a website?" how do you answer?Luke CK2009-01-14T12:57:58Z2009-02-10T05:14:35Z
<p>A (non-technical) friend of mine has asked me how to make a website. I get this question all the time. After a few questions I found out that she has an idea that could turn into a commercial site. I described three options to her:</p>
<p>a) Get a book/enroll in a class/follow some online tutorials and learn how to do it. She's pretty smart and her personality seems like a good match for this sort of thing so I'm sure she could learn but she doesn't have a lot of time spare. Maybe if she started with one of those WYSIWYG editors at first? I stressed that this would take a longer than a couple of weekends of playing around.</p>
<p>b) Hire someone to build it. Ranges from ultra cheap to ultra expensive, crappy to good and everything in between. I didn't mention sites like Rentacoder because she hasn't worked on a project like this before and doesn't know what to ask for. At this stage she'd likely ask for a Youtube-MySpace-Google for a few hundred bucks because she doesn't yet understand just how much is involved.</p>
<p>c) Find someone technical and partner up with them. I explained that this can either work really well or be a disaster because she'd have to give up some of her ownership of the idea.</p>
<p>How do you respond in these situations?</p>
http://stackoverflow.com/questions/445695/do-you-put-your-calculations-on-your-sets-or-your-gets/445715#4457150Answer by Luke CK for do you put your calculations on your sets or your gets . .Luke CK2009-01-15T05:03:04Z2009-01-15T05:08:34Z<p>I'd go with the approach of doing the calculation in the getter for TotalCash because less code is almost always better. It also ensures that the value of TotalCash is always correct. As a contrived example, if you had another method NewOrder(Price, Qty) and you forgot to call CalculateTotal at the end of this method you could very easily end up with an incorrect value for TotalCash.</p>
<p>Calculating it in the setter might be better if the calculation takes a while to process and changing the values of only one or two properties would require recalculation but it is almost always better to go for the approach that leaves less room for error, even if it takes slightly longer to execute.</p>
http://stackoverflow.com/questions/405955/best-error-names-failures-or-exceptions/405966#4059663Answer by Luke CK for Best error names, failures or exceptions.Luke CK2009-01-02T03:36:30Z2009-01-02T03:36:30Z<p>Stack Overflow but I'm pretty sure that's already taken.</p>
http://stackoverflow.com/questions/139684/delphi-free-and-open-source-components-that-are-still-maintained/319801#3198013Answer by Luke CK for Delphi Free and Open Source Components that are still maintained.Luke CK2008-11-26T05:07:17Z2008-11-26T05:07:17Z<p>tiOPF Free, Open Source Object Persistence Framework forFree Pascal & Delphi
<a href="http://tiopf.sourceforge.net/" rel="nofollow">http://tiopf.sourceforge.net/</a></p>
<p>The learning curve can be a little steep but there is an active community and the framework is very well suited to CRUD applications. Data can be persisted to xml or most of the major DBs. Except for very complicated object relationships, you do not need to write any SQL.</p>
http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application6Passing a string to an already running instance of an applicationLuke CK2008-10-21T03:52:43Z2008-10-22T05:19:41Z
<p>I have an application that detects if there is another instance of the app running and exits if one is found. This part seems to work reliably. My app takes a command-line argument that I would like to pass to the already running instance. I have the following code so far:</p>
<h2>Project1.dpr</h2>
<pre><code>program Project1;
uses
...
AppInstanceControl in 'AppInstanceControl.pas';
if not AppInstanceControl.RestoreIfRunning(Application.Handle) then
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end;
end.
</code></pre>
<h2>AppInstanceControl.pas</h2>
<p>{ Based on code by Zarko Gajic found at <a href="http://delphi.about.com/library/code/ncaa100703a.htm" rel="nofollow">http://delphi.about.com/library/code/ncaa100703a.htm</a>}</p>
<pre><code>unit AppInstanceControl;
interface
uses
Windows,
SysUtils;
function RestoreIfRunning(const AAppHandle: THandle; const AMaxInstances: integer = 1): boolean;
implementation
uses
Messages;
type
PInstanceInfo = ^TInstanceInfo;
TInstanceInfo = packed record
PreviousHandle: THandle;
RunCounter: integer;
end;
var
UMappingHandle: THandle;
UInstanceInfo: PInstanceInfo;
UMappingName: string;
URemoveMe: boolean = True;
function RestoreIfRunning(const AAppHandle: THandle; const AMaxInstances: integer = 1): boolean;
var
LCopyDataStruct : TCopyDataStruct;
begin
Result := True;
UMappingName := StringReplace(
ParamStr(0),
'\',
'',
[rfReplaceAll, rfIgnoreCase]);
UMappingHandle := CreateFileMapping($FFFFFFFF,
nil,
PAGE_READWRITE,
0,
SizeOf(TInstanceInfo),
PChar(UMappingName));
if UMappingHandle = 0 then
RaiseLastOSError
else
begin
if GetLastError <> ERROR_ALREADY_EXISTS then
begin
UInstanceInfo := MapViewOfFile(UMappingHandle,
FILE_MAP_ALL_ACCESS,
0,
0,
SizeOf(TInstanceInfo));
UInstanceInfo^.PreviousHandle := AAppHandle;
UInstanceInfo^.RunCounter := 1;
Result := False;
end
else //already runing
begin
UMappingHandle := OpenFileMapping(
FILE_MAP_ALL_ACCESS,
False,
PChar(UMappingName));
if UMappingHandle <> 0 then
begin
UInstanceInfo := MapViewOfFile(UMappingHandle,
FILE_MAP_ALL_ACCESS,
0,
0,
SizeOf(TInstanceInfo));
if UInstanceInfo^.RunCounter >= AMaxInstances then
begin
URemoveMe := False;
if IsIconic(UInstanceInfo^.PreviousHandle) then
ShowWindow(UInstanceInfo^.PreviousHandle, SW_RESTORE);
SetForegroundWindow(UInstanceInfo^.PreviousHandle);
end
else
begin
UInstanceInfo^.PreviousHandle := AAppHandle;
UInstanceInfo^.RunCounter := 1 + UInstanceInfo^.RunCounter;
Result := False;
end
end;
end;
end;
if (Result) and (CommandLineParam <> '') then
begin
LCopyDataStruct.dwData := 0; //string
LCopyDataStruct.cbData := 1 + Length(CommandLineParam);
LCopyDataStruct.lpData := PChar(CommandLineParam);
SendMessage(UInstanceInfo^.PreviousHandle, WM_COPYDATA, Integer(AAppHandle), Integer(@LCopyDataStruct));
end;
end; (*RestoreIfRunning*)
initialization
finalization
//remove this instance
if URemoveMe then
begin
UMappingHandle := OpenFileMapping(
FILE_MAP_ALL_ACCESS,
False,
PChar(UMappingName));
if UMappingHandle <> 0 then
begin
UInstanceInfo := MapViewOfFile(UMappingHandle,
FILE_MAP_ALL_ACCESS,
0,
0,
SizeOf(TInstanceInfo));
UInstanceInfo^.RunCounter := -1 + UInstanceInfo^.RunCounter;
end
else
RaiseLastOSError;
end;
if Assigned(UInstanceInfo) then UnmapViewOfFile(UInstanceInfo);
if UMappingHandle <> 0 then CloseHandle(UMappingHandle);
end.
</code></pre>
<h2>and in the main form unit:</h2>
<pre><code>procedure TFormMain.WMCopyData(var Msg: TWMCopyData);
var
LMsgString: string;
begin
Assert(Msg.CopyDataStruct.dwData = 0);
LMsgString := PChar(Msg.CopyDataStruct.lpData);
//do stuff with the received string
end;
</code></pre>
<p>I'm pretty sure the problem is that I'm trying to send the message to the handle of the running app instance but trying to process the message on the main form. I'm thinking I have two options here:</p>
<p>A) From the application's handle somehow get the handle of its main form and send the message there.</p>
<p>B) Handle receiving the message at the application rather than the main form level.</p>
<p>I'm not really sure how to go about either. Is there a better approach?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/224549#2245492Answer by Luke CK for Passing a string to an already running instance of an applicationLuke CK2008-10-22T05:19:41Z2008-10-22T05:19:41Z<p>I ended up saving the MainForm's handle into the InstanceInfo record in the file mapping then sending the message to the previous instance's main form handle if there was one.</p>
<p>In the project dpr:</p>
<pre><code> if not AppInstanceControl.RestoreIfRunning(Application.Handle) then
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFormMain, FormMain);
SetRunningInstanceMainFormHandle(FormMain.Handle);
Application.Run;
end else
SendMsgToRunningInstanceMainForm('Message string goes here');
</code></pre>
<h2>AppInstanceControl.pas</h2>
<pre><code>type
PInstanceInfo = ^TInstanceInfo;
TInstanceInfo = packed record
PreviousHandle: THandle;
PreviousMainFormHandle: THandle;
RunCounter: integer;
end;
procedure SetRunningInstanceMainFormHandle(const AMainFormHandle: THandle);
begin
UMappingHandle := OpenFileMapping(
FILE_MAP_ALL_ACCESS,
False,
PChar(UMappingName));
if UMappingHandle <> 0 then
begin
UInstanceInfo := MapViewOfFile(UMappingHandle,
FILE_MAP_ALL_ACCESS,
0,
0,
SizeOf(TInstanceInfo));
UInstanceInfo^.PreviousMainFormHandle := AMainFormHandle;
end;
end;
procedure SendMsgToRunningInstanceMainForm(const AMsg: string);
var
LCopyDataStruct : TCopyDataStruct;
begin
UMappingHandle := OpenFileMapping(
FILE_MAP_ALL_ACCESS,
False,
PChar(UMappingName));
if UMappingHandle <> 0 then
begin
UInstanceInfo := MapViewOfFile(UMappingHandle,
FILE_MAP_ALL_ACCESS,
0,
0,
SizeOf(TInstanceInfo));
LCopyDataStruct.dwData := 0; //string
LCopyDataStruct.cbData := 1 + Length(AMsg);
LCopyDataStruct.lpData := PChar(AMsg);
SendMessage(UInstanceInfo^.PreviousMainFormHandle, WM_COPYDATA, Integer(Application.Handle), Integer(@LCopyDataStruct));
end;
end;
</code></pre>
<p>This seems to work reliably. I was going to post full source but I'd like to incorporate some of gabr's code that looks like it much more reliably sets focus to the running instance first.</p>
http://stackoverflow.com/questions/147386/what-distracts-you-the-most-while-coding/147400#1474001Answer by Luke CK for What distracts you the most while coding?Luke CK2008-09-29T03:26:53Z2008-09-29T03:26:53Z<p>Stack Overflow</p>
http://stackoverflow.com/questions/99792/visual-studio-color-settings-for-better-eye/99818#998180Answer by Luke CK for Visual Studio color settings for better eyeLuke CK2008-09-19T05:11:34Z2008-09-19T05:11:34Z<p>Light yellow text on a blue background. The brightness of a white background gets to me after a while.</p>
http://stackoverflow.com/questions/80650/how-do-i-register-a-custom-url-protocol-in-windows4How do I register a custom URL protocol in Windows?Luke CK2008-09-17T06:57:30Z2008-09-17T10:48:55Z
<p>How do I register a custom protocol with Windows so that when clicking a link in an email or on a web page my application is opened and the parameters from the URL are passed to it?</p>
http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/64024#6402414Answer by Luke CK for What is the best set of tools to develop Win32 Delphi applications?Luke CK2008-09-15T15:37:08Z2008-09-16T07:43:50Z<p><strong>IDE</strong> Delphi 2007 Professional (soon to be Delphi 2009)</p>
<p><strong>Automated Build Server</strong> <a href="http://www.finalbuilder.com/" rel="nofollow">FinalBuilder 6</a></p>
<p><strong>Unit testing</strong> <a href="http://dunit.sourceforge.net/" rel="nofollow">DUnit</a></p>
<p><strong>Code profiling</strong> <a href="http://www.automatedqa.com/products/aqtime/index.asp" rel="nofollow">AQTime</a></p>
<p><strong>Installer creation</strong> <a href="http://www.innosetup.com/isinfo.php" rel="nofollow">InnoSetup</a></p>
<p><strong>Help file management</strong> <a href="http://www.ec-software.com/products_hm_overview.html" rel="nofollow">Help & Manual</a></p>
<p><strong>Code modeling and design</strong> <a href="http://www.modelmakertools.com/" rel="nofollow">ModelMaker 9</a></p>
<p><strong>Code formatting</strong> <a href="http://jedicodeformat.sourceforge.net/" rel="nofollow">Jedi Code Formatter</a></p>
<p><strong>Source Code Management</strong> <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> and <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a></p>
<p><strong>Issue tracking</strong> <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a></p>
<p><strong>Bug reporting and logging</strong> <a href="http://www.madshi.net/madExceptDescription.htm" rel="nofollow">MadExcept</a></p>
<p><strong>File comparison and merging</strong> <a href="http://www.scootersoftware.com/moreinfo.php" rel="nofollow">Beyond Compare</a></p>
<p><strong>Object persistence framework</strong> <a href="http://tiopf.sourceforge.net/" rel="nofollow">tiOPF</a></p>
<p><strong>UI testing</strong> ???</p>
<p><strong>Code documentation</strong> ???</p>
http://stackoverflow.com/questions/18291/unit-testing-in-delphi-how-are-you-doing-it/63782#637822Answer by Luke CK for Unit testing in Delphi - how are you doing it ?Luke CK2008-09-15T15:11:28Z2008-09-15T15:11:28Z<p>We do unit testing of all logic code using DUnit and use the code coverage profiler included in <a href="http://www.automatedqa.com/products/aqtime/index.asp" rel="nofollow">AQTime</a> to check that all paths through the code are executed by the tests.</p>
http://stackoverflow.com/questions/56222/learning-delphi/63650#636501Answer by Luke CK for Learning DelphiLuke CK2008-09-15T14:57:20Z2008-09-15T14:57:20Z<p>Essential Pascal and Essential Delphi by Marco Cantu were both written when older versions of Delphi were current although the layout of the IDE has changed and there have been some additions to the Object Pascal language the basic concepts remain the same.</p>
<p><a href="http://delphibasics.co.uk" rel="nofollow">Delphi Basics</a> provides some useful tutorials and is a useful reference that I often find quicker to use than Delphi's built in help.</p>
<p><a href="http://delphi.about.com" rel="nofollow">About Delphi</a> has some tutorials and a lot of interesting guides and articles but the site design makes navigation difficult.</p>
http://stackoverflow.com/questions/1298031/including-resource-file-in-a-project-by-rc-file-rather-than-res-file/1298131#1298131Comment by Luke CK on Including resource file in a project by .RC file rather than .RES fileLuke CK2009-08-19T06:47:43Z2009-08-19T06:47:43ZI realise that. What I was trying to say is that a while ago someone showed me that it's also possible to reference the .rc file and have it built automatically instead of referencing a .res compiled with brcc32.exe.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665175#665175Comment by Luke CK on Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-22T01:18:05Z2009-03-22T01:18:05ZThanks. I didn't know about that one.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666550#666550Comment by Luke CK on Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-22T01:15:41Z2009-03-22T01:15:41ZMy exprence with D2007 is similar to Mason's. Th only time the IDE crashes is when working with buggy 3rd party components. D2007 is definitely less responsive than D7 but for me the benefits outweigh the slower load times.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665172#665172Comment by Luke CK on Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-22T01:09:29Z2009-03-22T01:09:29ZI agree that not everyone needs 64 it support at the moment. The software our team maintains is used by electrical engineers to manage the power grid. In our case there are huge amounts of data to work with. We haven't hit the 32 bit limit yet but it will happen soon.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlistComment by Luke CK on Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:24:28Z2009-03-20T06:24:28ZIt might be worth posting those suggestions as individual items so they can be voted on.http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/398330#398330Comment by Luke CK on What is the best way to do nested TRY AND FINALLY statement in DelphiLuke CK2009-01-02T03:43:52Z2009-01-02T03:43:52Z@Rob: What do you mean by old stlye objects? TObject? What is the best alternative?http://stackoverflow.com/questions/368938/delphi-profiling-tools/369945#369945Comment by Luke CK on Delphi Profiling toolsLuke CK2008-12-16T02:18:22Z2008-12-16T02:18:22ZI'm pretty sure AQTime 6 will integrate with Delphi 2009.http://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics/246753#246753Comment by Luke CK on Best way to find if a string is in a list (without generics)Luke CK2008-10-31T03:40:00Z2008-10-31T03:40:00ZI didn't know about MatchStr. Thanks for that.http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/221263#221263Comment by Luke CK on Passing a string to an already running instance of an applicationLuke CK2008-10-22T05:21:26Z2008-10-22T05:21:26ZLooks like it still reliably does what it sets out to do though. I will incorporate some of your approach with my answer. Thanks for your help.http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/220852#220852Comment by Luke CK on Passing a string to an already running instance of an applicationLuke CK2008-10-21T05:41:14Z2008-10-21T05:41:14ZUnless I'm missing something?http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/220739#220739Comment by Luke CK on Passing a string to an already running instance of an applicationLuke CK2008-10-21T05:34:16Z2008-10-21T05:34:16ZInteresting. Looks like I'll be dong some reading tonight. I may use DDE in the end but I'd still like to get things going using the approach I've started with.http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/220852#220852Comment by Luke CK on Passing a string to an already running instance of an applicationLuke CK2008-10-21T05:32:54Z2008-10-21T05:32:54ZThe purpose of the file mapping is to make sure I only have AMaxInstances of my app running (in my case 1 instance). Sending the message to the right target is the bit I'm having trouble with. Thanks though.http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/77736#77736Comment by Luke CK on What is the best set of tools to develop Win32 Delphi applications?Luke CK2008-09-17T05:45:43Z2008-09-17T05:45:43ZI thought this was one of the features of AQTime which is made by AutomatedQA, who also make TestComplete. Is code profiling in TestComplete as well?http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/71594#71594Comment by Luke CK on What is the best set of tools to develop Win32 Delphi applications?Luke CK2008-09-16T12:25:35Z2008-09-16T12:25:35ZGood point I'll edit my question to reflect that idea.