User Bruce McGee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T12:32:08Zhttp://stackoverflow.com/feeds/user/19183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874677/indy-10-1-5-which-ssl-dlls-work/1875443#18754430Answer by Bruce McGee for INDY 10.1.5 - Which SSL dlls work?Bruce McGee2009-12-09T17:19:11Z2009-12-09T17:19:11Z<p>You could resort to some trial and error using downloads from the <a href="http://indy.fulgan.com/SSL/" rel="nofollow">Fulgan site</a>.</p>
<p>You might want to think about updating your copy of Indy and using the most recent OpenSSL DLLs.</p>
http://stackoverflow.com/questions/1849960/enabling-xp-visual-themes-visual-styles-kills-performance/1850166#18501663Answer by Bruce McGee for Enabling XP visual themes / visual styles kills performanceBruce McGee2009-12-04T22:48:02Z2009-12-04T22:48:02Z<p>Wow. I'm not sure I've ever had 200 controls on a single form. Here are a couple of suggestions.</p>
<ul>
<li><p>This might be a special case where you want to create the dialog once when the application starts and display it when needed instead of creating it on demand.</p></li>
<li><p>I'd also look at what's going on in the constructor or OnShow event. Are you populating any lists where BeginUpdate/EndUpdate would be an advantage?</p></li>
<li><p>Do you have any code in an OnResize event or similar that gets fired more than once that could wait until after the form is created and be run once?</p></li>
<li><p>What kind of controls are you using? If one type of control paints particularly slowly, you might be able to replace it with one that paints more quickly. This would require some testing, though.</p></li>
</ul>
http://stackoverflow.com/questions/1840937/how-to-implement-the-onresizeend-event-for-tframe/1841253#18412531Answer by Bruce McGee for How to implement the OnResizeEnd Event for TFrame ?Bruce McGee2009-12-03T16:50:46Z2009-12-03T16:50:46Z<p>Listen for the WM_EXITSIZEMOVE message. There is an example <a href="http://delphi.about.com/od/adptips2005/qt/formmovenotify.htm" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1836204/will-datasnap-be-appropriate-for-up-to-8-non-communication-intensive-bi-direction/1836561#18365613Answer by Bruce McGee for Will Datasnap be appropriate for up to 8 non-communication intensive bi-directional multiplayer game?Bruce McGee2009-12-02T23:13:33Z2009-12-02T23:13:33Z<p>As Nick said, the answer is Yes.</p>
<p>Bob Swart wrote a white paper and produced some videos on the updated <a href="http://www.embarcadero-info.com/in%5Faction/radstudio/db.html" rel="nofollow">DataSnap in Delphi 2010</a> that can help get you started.</p>
http://stackoverflow.com/questions/1819591/compile-delphi-5-code-in-delphi-2009/1819768#18197685Answer by Bruce McGee for Compile delphi 5 code in Delphi 2009Bruce McGee2009-11-30T13:16:53Z2009-11-30T13:16:53Z<p>It depends on what you're trying to accomplish and what limitations you are willing to accept.</p>
<p>As far as I know, you can't use the Delphi 2009 IDE to maintain Delphi 5 projects directly. For example, even if you stick to functionality that's common between the two, some properties that are not supported in Delphi 5 are written to your DFMs, causing an error at run time.</p>
<p>I've maintained projects and library code that were written in Delphi 2005/2006/2007 that was also being used in Delphi 6/7. I usually edited and debugged these using the latest IDE. I had separate project files for each target version and made sure they all used the same <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">memory manager</a>. Finally, I had an automated build process and unit tests that would strip incompatible properties out of the DFMs (my own DFM Scrubber), make sure all of the targets always compile and run unit tests, which are also recompiled for each target.</p>
<p>All in all, it's more effort and I wouldn't recommend it unless you have a specific requirement to do so.</p>
http://stackoverflow.com/questions/1803583/how-can-i-disconnect-any-process-from-the-internet-using-delphi/1803933#18039332Answer by Bruce McGee for How can I disconnect any process from the Internet using Delphi?Bruce McGee2009-11-26T14:20:29Z2009-11-26T14:20:29Z<p>It sounds like you want to control which applications can access the network/Internet.</p>
<p>If you just want to pick and choose which applications can have network access or which protocols you want to be used, I recommend any free or commercial firewall product.</p>
<p>If you need more control, such as disconnecting existing connections for a given process/protocol, I don't know of a simple API call. It would mean more effort, but you could use a <a href="http://sourceforge.net/search/index.php" rel="nofollow">local proxy server written in Delphi</a>. If applications use this proxy to get to the outside world, you can add the ability to disconnect specific connections.</p>
http://stackoverflow.com/questions/1794610/getting-started-with-unmanaged-windows-application/1794667#17946670Answer by Bruce McGee for Getting started with unmanaged Windows application?Bruce McGee2009-11-25T04:39:00Z2009-11-25T04:39:00Z<p>For native Windows development, it's difficult to beat <a href="http://embarcadero.com/delphi" rel="nofollow">Delphi</a>, whether it's for network, database, multi-tier or (especially) UI intensive applications. The latest version includes specific support for Windows 7, including gestures.</p>
<p>Take a look at the <a href="http://edn.embarcadero.com/article/39909" rel="nofollow">Reviewer's Guide</a> for more details.</p>
http://stackoverflow.com/questions/1789606/my-gethttp-works-with-http-but-https-returns-invalid-data/1789818#17898182Answer by Bruce McGee for my GetHttp works with HTTP but HTTPS returns invalid dataBruce McGee2009-11-24T12:37:29Z2009-11-24T13:06:25Z<p>I have only done this in Indy, which uses <a href="http://indy.fulgan.com/SSL/" rel="nofollow">OpenSSL</a> and requires a couple of extra DLLs. You also need to explicitly create an IO handler for SSL. Here is a simplified code example.</p>
<pre><code>MyHTTP := GetIdHTTP(True);
MyHTTP.Get(SomeSecureURL, MyStream);
</code></pre>
<p>...</p>
<pre><code>function GetIdHTTP(aSecure: Boolean = False): TIdHTTP;
var
lSSLIOHandler: TIdSSLIOHandlerSocketOpenSSL;
begin
Result := TIdHTTP.Create(nil);
if aSecure then
begin
lSSLIOHandler := TIdSSLIOHandlerSocketOpenSSL.Create;
Result.IOHandler := lSSLIOHandler;
end;
end;
</code></pre>
http://stackoverflow.com/questions/1789741/delphi-64-bit-preview-compiler-available/1789858#17898584Answer by Bruce McGee for Delphi 64-bit Preview Compiler available?Bruce McGee2009-11-24T12:44:43Z2009-11-24T12:44:43Z<p>Not yet.</p>
<p>According to the <a href="http://edn.embarcadero.com/article/39934" rel="nofollow">latest roadmap</a> Delphi X and Chromium seem to be the current priorities, followed by Commodore, so I'm not sure when a 64 bit preview compiler will be available.</p>
<p>If you want an early peek at these things, it might be worth <a href="http://www.embarcadero.com/products/beta-programs" rel="nofollow">signing up for the betas</a>.</p>
http://stackoverflow.com/questions/1781443/how-can-i-get-the-compile-date-and-time-in-delphi/1781481#17814815Answer by Bruce McGee for How Can I Get the Compile Date and Time in DelphiBruce McGee2009-11-23T06:52:34Z2009-11-23T06:52:34Z<p>An obvious choice could be to use the last modified date for the exe, but this can be changed.</p>
<p>You could include the compile timestamp in the version information and read that resource. I seem to remember an IDE add-in that does this for you, but not which one.</p>
<p>Or you could read the <a href="http://www.mindspring.com/~tfiske/delphi.html" rel="nofollow">timestamp from the PE header</a>.</p>
http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010/1738866#17388661Answer by Bruce McGee for How to disable the Formatter in Delphi 2010Bruce McGee2009-11-15T21:19:32Z2009-11-15T21:19:32Z<p>Remove or rename the file Embarcadero.Modeling.Formatter.dll in Delphi's bin directory.</p>
http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1730922#17309225Answer by Bruce McGee for Help with strange Delphi 5 IDE problemsBruce McGee2009-11-13T18:03:06Z2009-11-13T18:03:06Z<p>I have never seen any version of Delphi delete files under any circumstances.</p>
<p>Do you have any IDE plug-ins installed? This would be my first guess.</p>
http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1729489#17294892Answer by Bruce McGee for What are the ways of interchanging string data between clients and a server in Delphi?Bruce McGee2009-11-13T14:19:54Z2009-11-13T14:19:54Z<p>There are a <a href="http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan">lot of options</a>. </p>
<p>Ultimately, I agree with Smasher and like using sockets. They're quick, easy and portable. If you're dealing with a fairly simple protocol and don't need a full n-tier solution, creating a TCP or HTTP server application is dead simple, very light weight, and easy to make compatible with any client. You can even add SSL support to these stand alone applications without having to configure a web server or interfering with it, if it's already running on the same box.</p>
http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725506#172550613Answer by Bruce McGee for When did my application start running?Bruce McGee2009-11-12T21:23:15Z2009-11-12T21:23:15Z<p>You can use the Windows API call to <a href="http://msdn.microsoft.com/en-us/library/ms683223%28VS.85%29.aspx" rel="nofollow">GetProcessTimes</a> (declared in Windows.pas) to get details for any process.</p>
<p>If it's your application, I would probably get the start time myself and log it somewhere to keep a history.</p>
http://stackoverflow.com/questions/1710644/what-technology-rules-the-shareware-business/1711925#17119250Answer by Bruce McGee for What technology rules the shareware business?Bruce McGee2009-11-10T23:12:30Z2009-11-10T23:12:30Z<p>Requiring an additional runtime can make distribution more troublesome. This has always been one of Delphi's advantages. Ask yourself how you can make it easy for someone to try your software.</p>
<p>I don't recall seeing a lot of shareware web applications, either.</p>
<p>I wouldn't concede the enterprise market to Java, either. Specifics might depend on your definition of "enterprise", but Delphi and .Net stack up pretty well. In fact, enterprises are seldom limited to a single technology.</p>
http://stackoverflow.com/questions/1705009/did-you-ever-encounter-commercial-vcl-component-suite-without-bugs/1705267#17052679Answer by Bruce McGee for Did you ever encounter commercial VCL component/suite without bugs?Bruce McGee2009-11-10T02:19:19Z2009-11-10T02:19:19Z<p>All software has bugs. Period.</p>
<p>The real question is how well a vendor responds to bugs, questions and feature requests.</p>
http://stackoverflow.com/questions/1700824/firebird-or-nexusdb/1701137#17011370Answer by Bruce McGee for Firebird or NexusDBBruce McGee2009-11-09T14:01:05Z2009-11-09T14:01:05Z<p>I haven't used NexusDB, but FireBird will easily handle the table sizes you mentioned. In fact, any database that can't deal with 100,000 records would be too limited for most purposes. In short, you probably won't go too far wrong regardless of which you choose.</p>
<p>Embedded and C/S databases serve different purposes. C/S has the advantage of allowing multiple clients to connect, and may scale better in large systems. Embedded is great when you want to deploy a turnkey system, possibly with just an XCopy install.</p>
<p>Because of the extra layer involved, I suspect that direct connection to a database in an embedded system would be faster than C/S. Only side by side testing will tell for sure.</p>
<p>You probably already know that FireBird can be deployed as C/S or embedded. If you haven't already considered it, <a href="http://www.elevatesoft.com/prodinfo?action=list" rel="nofollow">ElevateDB</a> is another option that offers the same flexibility.</p>
http://stackoverflow.com/questions/1680949/charting-recomendations-for-delphi1Charting recomendations for DelphiBruce McGee2009-11-05T14:35:54Z2009-11-09T07:31:09Z
<p>I'm looking for a decent charting library to use with Delphi 2010.</p>
<p>We dont want to require additional framework be installed on client PCs, so would like to avoid toolkits that use .Net, Java or Flash.</p>
<p>The chart types we need are pretty straight forward (2D and 3D pie/donut, bar, line), but the customer wants to have attractive charts with translucency, rounded edges, etc. Similar to what's available from <a href="http://www.dundas.com/Components/Gallery/Flash/Chart/" rel="nofollow">Dundas Charts</a>.</p>
<p><a href="http://www.steema.com/products/teechart/vcl/overview.html" rel="nofollow">TeeChart</a> seems like a natural choice and we looked at <a href="http://www.tmssoftware.com/site/advchart.asp" rel="nofollow">TMS Advanced Charts</a>, but they don't support the appearance the customer is asking for.</p>
http://stackoverflow.com/questions/1665902/how-to-manually-invoke-dsproxygen-exe-to-generate-delphi-datasnap-proxy-client/1666803#16668032Answer by Bruce McGee for How to manually invoke DSProxyGEN.EXE to generate Delphi DataSnap proxy client?Bruce McGee2009-11-03T11:42:54Z2009-11-03T11:42:54Z<p>DSProxyGen doesn't give you its parameters when run at the command line and doesn't respond to</p>
<pre><code>DSProxyGen /?
</code></pre>
<p>You could try replacing it with your own exe (make a backup!) that detects what command line parameters are sent (global CmdLine variable) and write them to a file. Launch this from TSQLConnection's context menu and you should have what you need to call DSProxyGen from the command line.</p>
http://stackoverflow.com/questions/1656993/how-to-debug-delphi-project/1657173#16571735Answer by Bruce McGee for How to debug Delphi project?Bruce McGee2009-11-01T13:27:39Z2009-11-01T13:27:39Z<p>I'm not sure why the pause button doesn't work, but I have seen Delphi 7 get "confused" and refuse to stop on legitimate breakpoints before.</p>
<ul>
<li>Make a backup of everything, just in case you don't have the source for all of the DCUs.</li>
<li>Delete the project's DCUs.</li>
<li>Make sure you're including debug information in the project's options.</li>
<li>Do a full build (not just a recompile).</li>
</ul>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/1631726/delphi-how-to-modify-the-library-path/1631854#16318540Answer by Bruce McGee for Delphi: How to modify the Library Path?Bruce McGee2009-10-27T16:01:31Z2009-10-27T16:01:31Z<p>You could always create your own. You might have some grief if Delphi is open at the time, though.</p>
<p>Library path details are stored in the registry under HKEY_CURRENT_USER\Software. I don't have Delphi 7 handy to track down the specific key, but here's where it is for Delphi 2010:</p>
<p>HKEY_CURRENT_USER\Software\CodeGear\BDS\7.0\Library</p>
http://stackoverflow.com/questions/1611325/book-recommendation-for-moving-from-delphi-6-to-delphi-2010/1611387#16113873Answer by Bruce McGee for Book recommendation for moving from Delphi 6 to Delphi 2010Bruce McGee2009-10-23T04:35:32Z2009-10-26T15:22:50Z<p>Two authors to look at are <a href="http://www.marcocantu.com/default.htm" rel="nofollow">Marco Cantu</a> and <a href="http://www.drbob42.com/" rel="nofollow">Bob Swart</a>.</p>
<p>Until <a href="http://www.marcocantu.com/md2005/" rel="nofollow">Delphi 2005</a> and <a href="http://www.marcocantu.com/md2005/UpdateDelphi2006.html" rel="nofollow">2006</a>, Marco wrote an all-encompassing books that tried to cover all of the features of the product. Beginning with <a href="http://www.marcocantu.com/dh2007/" rel="nofollow">Delphi 2007</a>, this would have been a REALLY big book. He changed strategies and started concentrating on the large number of new features. He also started publishing through <a href="http://stores.lulu.com/marcocantu" rel="nofollow">Lulu</a>. There is a volume for <a href="http://www.marcocantu.com/dh2009/" rel="nofollow">Delphi 2009</a> available, and one in the works for Delphi 2010.</p>
<p>You'll find lots of reference material on Bob Swart's site, and he is also publishing several books and an impressive amount of his courseware through <a href="http://stores.lulu.com/drbob42" rel="nofollow">Lulu</a> as well.</p>
<p>In both cases, you'll find lots of material on new features, how to use them and some problems you might run in to while upgrading.</p>
<p>The <a href="http://conferences.embarcadero.com/coderage/sessions" rel="nofollow">replays from CodeRage 4</a> are available, too, which you might also find useful.</p>
<p>Update:</p>
<p>Just found this "hidden" link on Lulu: <a href="http://www.lulu.com/content/paperback-book/getting-started-with-rad-studio-2009/6584251" rel="nofollow">Getting Started with Delphi and C++ Builder 2009</a>. You can get a printed copy, and it's available as a free download.</p>
http://stackoverflow.com/questions/1619748/enumerate-the-vcl-controls-in-a-external-application/1623063#16230630Answer by Bruce McGee for Enumerate the VCL controls in a external applicationBruce McGee2009-10-26T04:25:36Z2009-10-26T04:25:36Z<p>You could look at the DFMs, which are stored as resources in the executable.</p>
<p>Anders Ohlsson put together a <a href="http://edn.embarcadero.com/article/28438" rel="nofollow">VCL Scanner application</a> that does just this a while ago. The <a href="http://cc.embarcadero.com/Item/23078" rel="nofollow">source code</a> is also available.</p>
http://stackoverflow.com/questions/1619887/what-is-the-best-database-for-delphi-desktop-applications-that-supports-stored-pr/1619960#161996011Answer by Bruce McGee for What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures? Bruce McGee2009-10-25T03:54:41Z2009-10-25T03:54:41Z<p>How about <a href="http://ibphoenix.com/" rel="nofollow">Firebird</a>? It can be used as an embedded database (xcopy deployment).</p>
<p>Other options include <a href="http://www.elevatesoft.com/dbisam%5Fprodinfo.htm" rel="nofollow">DBISAM</a> and <a href="http://www.elevatesoft.com/edb%5Fprodinfo.htm" rel="nofollow">ElevateDB</a>.</p>
http://stackoverflow.com/questions/1594906/how-do-i-make-my-delphi-5-app-display-password-blobs/1595046#15950461Answer by Bruce McGee for How do I make my Delphi 5 app display password "blobs"?Bruce McGee2009-10-20T14:32:30Z2009-10-20T14:32:30Z<p>Up to Delphi 2007, using <code>"*"</code> for your password character would show as <code>"*"</code>. Starting with Delphi 2009, this <a href="http://glooscapsoftware.blogspot.com/2008/08/delphi-2009-passwordchar.html" rel="nofollow">shows properly</a>.</p>
http://stackoverflow.com/questions/1590983/low-level-keyboard-hook-issue-keyboard-state-losed-when-application-is-not-focu/1591421#15914211Answer by Bruce McGee for Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi)Bruce McGee2009-10-19T22:13:01Z2009-10-19T22:13:01Z<p>This is a local keyboard hook. You need to create a <a href="http://delphi.about.com/od/kbwinshell/a/delphi%5Fhook.htm" rel="nofollow">global hook</a> for it to work everywhere. Global keyboard (and mouse) hooks need to be implemented in a separate .dll.</p>
http://stackoverflow.com/questions/1369191/what-is-the-compiler-version-for-delphi-2010/1572351#15723512Answer by Bruce McGee for What is the compiler version for Delphi 2010?Bruce McGee2009-10-15T13:24:02Z2009-10-15T13:24:02Z<p>Here is a <a href="http://delphi.wikia.com/wiki/Borland%5FCompiler%5FConditional%5FDefines" rel="nofollow">wiki page</a> with conditional defines.</p>
http://stackoverflow.com/questions/1560878/how-to-add-code-inside-a-program-in-runtime-delphi-windows/1561096#15610960Answer by Bruce McGee for How to add code inside a program in runtime (Delphi/Windows)?Bruce McGee2009-10-13T15:43:56Z2009-10-13T15:43:56Z<p>I'm not quite sure what you mean by "alarms", so I'm making a couple of assumptions.</p>
<p>1) If you don't need additional code for the alarms, I would try to make them data driven. Keep the different kinds of alarms in a database or configuration file, which makes it easy to update applications in the field without recompiling or reinstalling.</p>
<p>2) If you need special code for each alarm, you could use run time packages as plug-ins for your application. Search for Delphi runtime packages to get some ideas and tutorials. Here are a couple of links I found:</p>
<p><a href="http://delphi.wikia.com/wiki/Creating%5FPackages" rel="nofollow">http://delphi.wikia.com/wiki/Creating_Packages</a></p>
<p><a href="http://delphi.about.com/od/objectpascalide/a/bpl%5Fvs%5Fdll.htm" rel="nofollow">http://delphi.about.com/od/objectpascalide/a/bpl_vs_dll.htm</a></p>
<p>3) Scripting, as skamradt already mentioned. If it makes sense for your application, this could also let your customers write their own add-on functionality without requiring a recompile on your part.</p>
http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1550677#15506771Answer by Bruce McGee for Delphi - most successful applications developedBruce McGee2009-10-11T13:20:01Z2009-10-11T13:26:49Z<p>In addition to Larry's link, here's a list of <a href="http://delphi.wikia.com/wiki/Good%5FQuality%5FApplications%5FBuilt%5FWith%5FCppBuilder" rel="nofollow">products made with C++ Builder</a>. The most prominent one for me was WinRAR. Please feel free to update the list.</p>
<p>Look <a href="http://delphi.wikia.com/wiki/Determine%5FDelphi%5FApplication" rel="nofollow">here</a> for some insight in to how to spot Delphi and C++ Builder applications. </p>
<p>Note that the latest versions of UPX hide certain resources, which can complicate things a little.</p>
http://stackoverflow.com/questions/1543959/does-it-make-more-sense-to-upgrade-to-delphi-2009-2010-or-to-buy-software-assuran/1544408#15444083Answer by Bruce McGee for Does it make more sense to upgrade to Delphi 2009/2010 or to buy Software Assurance?Bruce McGee2009-10-09T15:08:06Z2009-10-10T16:33:15Z<p>I agree with Ken. If you intend to upgrade to each new version, SA costs less than upgrading. More so for Enterprise and Architect SKUs than Professional.</p>
<p>SA makes the most sense in the long run. If the goal is to simply get the next release "free", then SA is going to be a gamble.</p>
<p>You can look at Delphi's <a href="http://delphi.wikia.com/wiki/Delphi%5FRelease%5FDates" rel="nofollow">release history</a> to make an educated guess about future releases and <a href="http://glooscapsoftware.blogspot.com/2007/09/is-software-assurance-worth-while.html" rel="nofollow">do the math</a> for yourself.</p>
<p>I've used SA in one form or another since Delphi 7, and my experience has been mixed. The worst single screw-up was the release that happened while the development teams were transitioning to CodeGear. In their defense, a lot of people worked hard to sort everything out, but it really was a mess. Since then, it's gotten much better. For the last two releases, I received my SA notice with download instructions within about a day of the RTM announcement. Much better turn around time than the Windows 7 release with my MSDN subscription.</p>
http://stackoverflow.com/questions/1874677/indy-10-1-5-which-ssl-dlls-work/1875443#1875443Comment by Bruce McGee on INDY 10.1.5 - Which SSL dlls work?Bruce McGee2009-12-11T13:18:14Z2009-12-11T13:18:14ZI think it will make things simpler.http://stackoverflow.com/questions/1849960/enabling-xp-visual-themes-visual-styles-kills-performanceComment by Bruce McGee on Enabling XP visual themes / visual styles kills performanceBruce McGee2009-12-07T18:12:32Z2009-12-07T18:12:32ZDid you track the performance problem down to one particular thing, or was it a combination?http://stackoverflow.com/questions/1840937/how-to-implement-the-onresizeend-event-for-tframe/1841253#1841253Comment by Bruce McGee on How to implement the OnResizeEnd Event for TFrame ?Bruce McGee2009-12-04T20:13:53Z2009-12-04T20:13:53ZLooks like you are right, making my response incorrect. My bad for making the assumption.http://stackoverflow.com/questions/1840937/how-to-implement-the-onresizeend-event-for-tframe/1841253#1841253Comment by Bruce McGee on How to implement the OnResizeEnd Event for TFrame ?Bruce McGee2009-12-03T18:38:54Z2009-12-03T18:38:54ZNo, I'm not sure. I assumed it would also work with frames. I'll take a look when I get a little time.http://stackoverflow.com/questions/1789741/delphi-64-bit-preview-compiler-available/1789858#1789858Comment by Bruce McGee on Delphi 64-bit Preview Compiler available?Bruce McGee2009-11-25T11:09:23Z2009-11-25T11:09:23Z@Stefan - Trust me, they've started, so at least some of the work is being done in parallel. You also shouldn't consider the cross platform work to be completely separate from the 64 bit work. They will both be taking advantage of cross compilation. <a href="http://edn.embarcadero.com/article/39174" rel="nofollow">edn.embarcadero.com/article/39174</a>http://stackoverflow.com/questions/1794610/getting-started-with-unmanaged-windows-applicationComment by Bruce McGee on Getting started with unmanaged Windows application?Bruce McGee2009-11-25T04:50:14Z2009-11-25T04:50:14Z@steven - Some issues with managed (.Net) environments for client apps include the requirement of a large runtime, delayed startup because of loading the .Net runtime and jitting, increased memory usage and potentially sluggish UI. I like .Net a lot for web apps, but it isn't my first choice for client side development.http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problemsComment by Bruce McGee on Help with strange Delphi 5 IDE problemsBruce McGee2009-11-23T19:05:19Z2009-11-23T19:05:19ZHappy to help...http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010Comment by Bruce McGee on How to disable the Formatter in Delphi 2010Bruce McGee2009-11-16T01:33:18Z2009-11-16T01:33:18Z@Nick, right-click in the source code.http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1730922#1730922Comment by Bruce McGee on Help with strange Delphi 5 IDE problemsBruce McGee2009-11-13T18:59:32Z2009-11-13T18:59:32ZWhat are they? There might be a known issue that someone recognizes. Regardless, I would try uninstalling them and see it it has any impact.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1729489#1729489Comment by Bruce McGee on What are the ways of interchanging string data between clients and a server in Delphi?Bruce McGee2009-11-13T14:33:19Z2009-11-13T14:33:19ZIt's one less external requirement for my application to worry about. I like XCopy install for servers as much as I do for client apps. :)http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725506#1725506Comment by Bruce McGee on When did my application start running?Bruce McGee2009-11-13T14:11:49Z2009-11-13T14:11:49Z@gabr. nice link. Thanks.http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725499#1725499Comment by Bruce McGee on When did my application start running?Bruce McGee2009-11-13T14:11:08Z2009-11-13T14:11:08Z@Ken, you're going to make me blush.http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725499#1725499Comment by Bruce McGee on When did my application start running?Bruce McGee2009-11-12T23:39:27Z2009-11-12T23:39:27ZPeter. No. His answer is close to the second part of my answer, except Ken posted his first and included source code. If that's the way you choose to go, you should select Ken's answer as the correct one.http://stackoverflow.com/questions/1715393/delphi-how-to-use-line-breaks-in-a-ini-file/1715443#1715443Comment by Bruce McGee on Delphi: How to use line breaks in a ini file?Bruce McGee2009-11-11T15:21:46Z2009-11-11T15:21:46ZI've used #7 to replace #13#10 when saving and convert it back when reading. It's certainly a character that won't occur naturally. :)http://stackoverflow.com/questions/1715393/delphi-how-to-use-line-breaks-in-a-ini-file/1715445#1715445Comment by Bruce McGee on Delphi: How to use line breaks in a ini file?Bruce McGee2009-11-11T15:20:14Z2009-11-11T15:20:14ZWhich URL Encoding function do you use?