active questions tagged delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-07T15:55:58Z http://stackoverflow.com/feeds/tag/delphi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1687253/tclientdataset-and-big-insert 2 TClientDataSet and big insert silent 2009-11-06T12:25:04Z 2009-11-07T11:46:47Z <p>In my application I use TADOQuery with select (MSSQL) and linked with it TClientDataSet. I have to insert about million records and ApplyUpdates.</p> <p>So what I see in the SQL Server Profiler? I see that for <strong>each</strong> inserted row we have 3 queries: sp_prepare of insert script, sp_execute it with some values and sp_unprepare.</p> <p>I want just to prepare sql <strong>once</strong> for all of the records before insert and unprepare it after. How can I do it?</p> <p><strong>Added after</strong>:</p> <p>In the query I have a script for the stored procedure execution:</p> <pre><code>tmpQuery := DefineQuery(FConnection, [ 'exec up_getOperatorDataSet ', ' @tablename = :tablename, ', ' @operator = :operator, ', ' @forappend = :forappend, ', ' @withlinksonly = :withlinksonly, ', ' @ids = :ids ' ], [ Param(ftString, sTableName), Param(ftInteger, FOperatorId), Param(ftBoolean, opForAppendOnly in OpenParams), Param(ftBoolean, opOnlyWithModelLinks in OpenParams), Param(ftString, sIds) ], Result); </code></pre> <p>It selects all of the fields from table <em>sTableName</em> with some parameters.</p> <p>Example of inserting from profiler:</p> <p>step 1:</p> <pre><code>declare @p1 int set @p1=486 exec sp_prepare @p1 output,N'@P1 int,@P2 int,@P3 datetime,@P4 int,@P5 int,@P6 int,@P7 int,@P8 int,@P9 varchar(128),@P10 bit,@P11 numeric(19,4),@P12 smallint,@P13 smallint,@P14 smallint,@P15 smallint',N'insert into parser_prices (operator_id, request_id, date, nights, model_hotel_id, model_meal_id, model_room_id, model_htplace_id, spo, hotelstop, price, frout_econom, frout_business, frback_econom, frback_business) values (@P1, @P2, @P3, @P4, @P5, @P6, @P7, @P8, @P9, @P10, @P11, @P12, @P13, @P14, @P15) ',1 select @p1 </code></pre> <p>step 2:</p> <pre><code>exec sp_execute 486,21,2000450,'2009-12-04 00:00:00',14,2118,22,-9555,18,'2009-10.MSK.Bali.13.10.09-27.03.10',0,15530.0000,3,3,3,3 </code></pre> <p>step 3:</p> <pre><code>exec sp_unprepare 486 </code></pre> <p>and it is <strong>for all</strong> of the new rows.</p> http://stackoverflow.com/questions/1692350/need-a-help-in-tlistview-delphi 1 need a help in Tlistview delphi noob 2009-11-07T07:47:16Z 2009-11-07T09:20:25Z <p>hey all </p> <p>In my tlistview all lines caption and subitem[0] filled with some data , and i want to fill other subitems line by line after all stored in caption and subitem .</p> <p>Example </p> <p>my listview is like this </p> <pre><code>user pass working status valid data1 pass --- --- data2 pass2 ---- ----- - - - </code></pre> <p>I loaded them success fully </p> <p>now i got data for each acc like status and valid , how can i add them </p> <p>when i tried all data storing in nextline like </p> <pre><code>user pass working status valid data1 pass --- --- data2 pass2 ---- ----- yes 2009 no </code></pre> <p>how can i fix this issue </p> <p>thakns in advance </p> http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top 31 What is needed to get Delphi back on top? Jim McKeeth 2008-08-15T20:11:14Z 2009-11-07T08:10:40Z <p>Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of popularity before the Inprise fiasco. </p> <p>Many developers with Delphi backgrounds are moving to C# and many Delphi legacy applications are being rewritten in C#, despite the fact Delphi supports .NET and in many cases the existing application could be ported without rewriting. </p> <p>Is it just a losing battle to compete against Microsoft's tools on their platform? Is there something Code Gear / Delphi can do now that they are under new management to regain market share? What can enthusiasts do to help?</p> <p>Why do you do Delphi programming? or Why are you <em>not</em> doing Delphi programming?</p> http://stackoverflow.com/questions/1690908/more-memory-for-tmemo-trichedit 1 more memory for TMemo / TRichEdit Remus Rigo 2009-11-06T22:27:00Z 2009-11-07T07:02:12Z <p>hi all</p> <p>Is there any way to assign more memory for a Memo or RichEdit (if working with big files)</p> <p>thanks</p> http://stackoverflow.com/questions/674916/tools-which-can-parse-delphi-xmldoc-format-and-build-online-help 1 Tools which can parse Delphi XMLDoc format and build online help mjustin 2009-03-23T19:35:44Z 2009-11-07T05:53:12Z <p>The XMLDoc tool for API documentation is explained here:</p> <p><a href="http://edn.embarcadero.com/article/32770" rel="nofollow">http://edn.embarcadero.com/article/32770</a></p> <p>Are there any free or commercial tools which can be used to create documentation based on Delphi's XML doc format?</p> <p>Is there a newer version of the 'getting started' documentation? This page refers to Delphi 2005 and third party tools, some of them seem to have moved.</p> <p>The XMLDoc for Delphi 2005 required</p> <ul> <li>Python (tested with Python 2.3)</li> <li>Instant Saxon (tested with Instant Saxon 6.5.3)</li> <li>The Java SDK (tested with J2SE v 1.4.2_05 SDK)</li> <li>and also the Visual Studio Help Integration Kit </li> </ul> http://stackoverflow.com/questions/1685392/trouble-playing-with-indexed-propertes-via-new-rtti-d2010 1 Trouble playing with indexed propertes via new RTTI [D2010] utku_karatas 2009-11-06T04:22:43Z 2009-11-07T03:57:50Z <pre><code> ShowMessage(TRttiContext.Create.GetType(TStringList) .GetProperty('Strings').ToString); </code></pre> <p>Above code fails as .GetProperty returns nil on properties like "Strings", "Objects", "Values" (ones with indexers). I assume this is a known limitation and the question is if there's any way to access those indexed properties (preferably without falling back to the old RTTI utils).</p> http://stackoverflow.com/questions/1680949/charting-recomendations-for-delphi 1 Charting recomendations for Delphi Bruce McGee 2009-11-05T14:35:54Z 2009-11-07T02:47:52Z <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/1687724/delphi-loging-all-http-request 1 Delphi - loging all HTTP request benasio 2009-11-06T13:51:49Z 2009-11-07T00:51:10Z <p>Hi I need loging all HTTP request (from any application). I have Delphi 7.0. Anybody know how do that?</p> http://stackoverflow.com/questions/1690764/what-is-the-purpose-of-the-tag-property-of-delphi-vcl-components 8 What is the purpose of the 'Tag' property of Delphi VCL components? HMcG 2009-11-06T21:56:41Z 2009-11-07T00:10:08Z <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/741643/capturing-a-hidden-window-in-vista 0 Capturing a hidden window in Vista Mike Sutton 2009-04-12T11:35:14Z 2009-11-06T23:58:00Z <p>My understanding of Vista is that each window gets it's own screen buffer which is then alpha blended etc to create the screen.</p> <p>So, is there any way to screen capture a window which is obscured or partly off screen by directly reading these buffers? Vista does it when you alt-tab or hover the mouse over the taskbar.</p> <p>I'm doing this in Delphi, but code in any language will suffice.</p> http://stackoverflow.com/questions/1686107/what-is-a-good-library-for-creating-pdfs-in-delphi-2010 2 What is a good library for creating PDFs in Delphi 2010? Zartog 2009-11-06T08:04:47Z 2009-11-06T23:57:23Z <p>What is a good library for creating PDFs in Delphi 2010?</p> <p>Pre Unicode I used PowerPDF, which though obsolete, was flexible enough to do what I wanted to do (very customized non-db/table based reports)</p> <p>I currently have PowerPDF compiling in Delphi 2010, but not yet working, and I'd rather not port and debug if there are any good Open Source PDF libraries already available for Delphi 2010...</p> http://stackoverflow.com/questions/1616032/how-to-debug-exe-started-by-another-exe-in-delphi 1 How to debug .exe started by another .exe in Delphi Giel 2009-10-23T21:35:05Z 2009-11-06T23:02:08Z <p>I want to debug App2.exe, which is started by App1.exe. If App2.exe were a dll I could specify a host application, but this doesn't seem to work with an .exe.</p> <p>I now use 'attach to process', but this is useless if App2.exe crashes before I do that.</p> <p>Is there a way to do this with having to attach to the process manually?</p> http://stackoverflow.com/questions/1356993/asmx-in-delphi-studio 0 ASMX in Delphi Studio balexandre 2009-08-31T11:24:35Z 2009-11-06T22:16:45Z <p>Hi guys,</p> <p>I recently bought Bob's book <a href="http://www.lulu.com/content/paperback-book/delphi-xml-soap-and-web-services-development/5551656" rel="nofollow">Delphi XML, SOAP &amp; Web Services</a></p> <p>in page 85 of this book the (Delphi 2006 8used) comes with several New Item Categories such as</p> <ul> <li>C# Projects</li> <li>C++ Builder projects</li> <li>Delphi for .NET Projects</li> </ul> <p>something that you don't have in a fresh installation</p> <p>I need this <strong>ASP.NET Web Service Application</strong> that is inside Delphi for .NET Projects, but I can't find how do we get this plugin(?) to install in Delphi so we get all this new projects categories.</p> <p>Does any of you use this and can tell me what is the <strong>Plugin</strong>?</p> <p><em>image from the book showing what we are after</em> <img src="http://www.balexandre.com/temp/2009-08-31%5F1322%5Fasmx%5Fin%5Fdelphi.png" alt="alt text" /></p> <p>We tried Delphi prism but it is not that as Prism works in Visual Studio it self and not in Delphi Studio.</p> <p>We also tried to send an email to <strong><a href="http://www.drbob42.com/" rel="nofollow">Bob Swart</a></strong> but no answer from him :(</p> <p>We thought and we own <a href="http://www.drbob42.com/d4dn/index.htm" rel="nofollow">RAD Studio 2007 Professional</a>, and that comes with that <strong>Delphi for .NET Projects</strong> but not the ASP.NET Web Services, so, we are thinking that it only be available for the Enterprise or Architect versions, but I can't find any information regarding where is this (bundle details and what's inside what) :(</p> <p>Thanks</p> http://stackoverflow.com/questions/1392409/what-do-i-need-to-know-to-upgrade-a-complex-application-from-cbuilder-2007-to-2 3 What do I need to know to upgrade a complex application from C++Builder 2007 to 2010? David M 2009-09-08T07:05:19Z 2009-11-06T22:16:05Z <p>My company's main application is mostly written in C++ (with some Delphi code and components). We are upgrading from RAD Studio 2007 to 2010 for the next release, starting in about a week. What do I need to know to ensure this upgrade goes smoothly?</p> <p>Points I have thought of so far are:</p> <ul> <li><p>Unicode. This one looks <i>really</i> complicated. Our app contains a horrible mix of std::string-s and AnsiString-s with casts to and from them. I have lots of questions about this, such as "is wstring capable of holding everything a UnicodeString can, and should we just do a search/replace", or "should we avoid all C++ string types altogether and use UnicodeString", "can we change all event handlers to use String though the existing <strike>.HPPs</strike> event handler method prototypes were compiler-translated to AnsiString", right down to basics such as "should we prefix all strings with L, or is the compiler smart enough with Unicode enabled to use Unicode strings", etc. Any insight on this would be really appreciated.</p> <p>We also need backwards compatibility. Our app uses its own binary tuple format that currently stores strings as an array of bytes. I need to upgrade this to read old files and, presumably, write new Unicode strings as well. How do I handle Unicode strings embedded in a binary format? Is there any generic way where I can point a UnicodeString at an array of bytes, that may be originally written as either ANSI bytes or Unicode, and it will figure out what they are?</p></li> <li><p>Third-party components. We use <a href="http://www.silverpointdevelopment.com/sptbxlib/index.htm" rel="nofollow">SpTBX</a> mainly, and it appears to be compatible.</p></li> <li><p>Project upgrades. The standard advice in the Codegear forums seems to be to manually recreate all project files when upgrading. This is an awful lot of work (7 projects (mostly libs) in our main app, plus half a dozen DLLs, a <i>lot</i> of files.) Is there any way to automate this?</p></li> <li><p>How's the linker look? We traditionally have a lot of trouble with the linker randomly crashing or running out of resources, though it got a lot better in 2007. This is one reason our main application is split into several libs - the linker cannot (hopefully, "could not, but now can"?) handle it otherwise.</p></li> <li><p>I know there's a new type library editor and format (it stores the IDL, ie text, and generates the TLB dynamically?) How well does this handle upgrading existing COM projects with a TLB? We have Delphi code and TLB that are built into the C++ application.</p></li> <li><p>Is there anything else I should be considering or be aware of?</p></li> </ul> <p>I have found:</p> <ul> <li><a href="http://stackoverflow.com/questions/1382362/installing-rad-studio-2007-and-rad-studio-2010-in-same-machine">2007 and 2010 co-existing</a>. I'm not sure I trust this answer since I have had issues with 2006 and 2007 on the same machine before.</li> <li>several answers about Unicode: <a href="http://stackoverflow.com/questions/1291338/write-unicode-string-into-file-with-codegear-c-builder-2009">writing strings with 2009</a> and <a href="http://stackoverflow.com/questions/1004838/transition-to-unicode-for-an-application-that-handles-text-files">generic transition to Unicode text</a> but none are answers for concerns, or the C++Builder-specific parts at all.</li> <li><a href="http://stackoverflow.com/questions/152528/are-there-guidelines-for-updating-cbuilder-applications-for-cbuilder-2009">This question about guidelines upgrading to 2009</a> but though the answers are helpful, they don't answer all the Unicode-related issues above.</li> <li>[Edit: added] Codegear documents for <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/unicodeinide%5Fxml.html" rel="nofollow">Unicode in RAD Studio</a> and <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/enablingunicode%5Fxml.html" rel="nofollow">things to look for when converting to Unicode</a></li> </ul> http://stackoverflow.com/questions/1684112/onkeyup-delphi-skipping-ever-other-occurrence 0 onKeyUp Delphi skipping ever other occurrence Doug 2009-11-05T22:31:35Z 2009-11-06T19:55:32Z <p>Am using TJvUltimGrid, when pressing either the up or down arrow, to move from one record to the next, the event fires every other press. Does anyone have any ideas why it does not fire on every press and what I can do to fix it?</p> <p>The dataset is a TADODataSet. The onKeyDown fires on every press. The onKeyPress does not fire for arrow keys.</p> <p>REF: Delphi 2010 with Jedi JVCL Version 3.39, Windows XP</p> http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners 5 How can I test my applications against the popular virus scanners? mj2008 2009-11-06T11:42:21Z 2009-11-06T19:19:45Z <p>I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how others go about this. Some background:</p> <p>I have an application written in Delphi. Ever since the Delphi virus was found, I've had problems with false positives on my applications, particularly my demonstration versions for some reason (they all share the same code). AVG has been good, and I can now whitelist my files easily, but then I got the latest DevExpress installer and it was false-positived too. Given this is getting more widespread, it struck me that I need to find out if my apps are being flagged by the most popular anti-virus packages. I therefore would like to know how others go about this. I don't want people to be downloading our demonstration versions, getting an AV warning, and deciding not to try it.</p> <p>The only options I have so far are buying a load of AV packages and putting them in a VM, or using a service like <a href="http://www.virustotal.com/sobre.html" rel="nofollow">VirusTotal</a>. The latter seemed an ideal option but for the fact that they limit the test to files under 20Mb, and my files are bigger than this. There is no paid for option either to expand the capability. (I thought this an odd limit, but Kaperskis free checker is limited to 1Mb!)</p> <p>How do you check your applications?</p> http://stackoverflow.com/questions/1683708/delphi-mdi-application-next-window-menu-item 1 Delphi MDI Application Next Window menu item Mike Howard 2009-11-05T21:22:23Z 2009-11-06T17:53:49Z <p>How would I go about implementing the Ctrl+F6 Next Window action in the Windows menu for an MDI application in Delphi 7?</p> http://stackoverflow.com/questions/1686940/abort-a-thread 4 Abort a thread? Smasher 2009-11-06T11:13:01Z 2009-11-06T17:19:59Z <p>I want to implement interruptable tasks based on background threads. What is the cleanest way to implement the <code>TTask.Stop</code> method? How can I abort the background thread?</p> <p>The code executed within the thread context is passed to the task using an anonymous method and can contain blocking calls, so I can't rely on the fact, that the <code>Terminated</code> flag is checked regularly from within the code.</p> <p>Thanks for any input.</p> <p>Using D2010 in case it matters (some things in <code>TThread</code> seem to have changed)</p> http://stackoverflow.com/questions/1687755/why-are-tgenericbase-and-tgenericdescendant-incompatible-types 5 Why are TGeneric<Base> and TGeneric<Descendant> incompatible types? Petr Nehez 2009-11-06T13:57:31Z 2009-11-06T16:24:37Z <p>Hi,</p> <p>I have started using of generics in Delphi 2010 but I have a problem when compiling this piece of code:</p> <pre><code>TThreadBase = class( TThread ) ... end; TThreadBaseList&lt;T: TThreadBase&gt; = class( TObjectList&lt;T&gt; ) ... end; TDataProviderThread = class( TThreadBase ) ... end; TDataCore = class( TInterfacedObject, IDataCore ) private FProviders: TThreadBaseList&lt;TDataProviderThread&gt;; ... end; </code></pre> <p>Then I have some nested procedure:</p> <pre><code>procedure MakeAllThreadsActive(aThreads: TThreadBaseList&lt;TThreadBase&gt;); begin ... end; </code></pre> <p>And finally I want to call this nested procedure in the code of TDataCore class:</p> <pre><code>MakeAllThreadsActive(FProviders); </code></pre> <p>But compiler does not want to compile it and it says ('&lt;>' brackets are replaced by '()'):</p> <blockquote> <p>[DCC Error] LSCore.pas(494): E2010 Incompatible types: 'TThreadBaseList(TThreadBase)' and 'TThreadBaseList(TDataProviderThread)'</p> </blockquote> <p>I do not understand it although TDataProviderThread is descendant of TThreadBase.</p> <p>I had to fix it by hard typecasting:</p> <pre><code>MakeAllThreadsActive(TThreadBaseList&lt;TThreadBase&gt;(FProviders)); </code></pre> <p>Does anybody know why the compiler says this error?</p> http://stackoverflow.com/questions/1687239/getting-connected-usb-info-with-delphi-on-vista 0 Getting connected USB info with Delphi on Vista unknown (google) 2009-11-06T12:21:10Z 2009-11-06T15:03:40Z <p>Hello,</p> <p>How can I get 'connected usb info'(device instance id, driver key name ..) from Registry in Vista or Windows 7 by using delphi? Where is this information in Windows Registry? I have a code it's working on XP but not in Vista.(code: <a href="http://www.delphipraxis.net/post991546.html" rel="nofollow">http://www.delphipraxis.net/post991546.html</a>) Why the code is not working on Vista? I'm really stack about that. Please help.</p> <p>Thanks a lot for your answers. worker.db@gmail.com</p> http://stackoverflow.com/questions/1687935/how-do-i-remove-items-from-the-default-right-click-menu-in-delphi-2010 0 How do I remove items from the default right-click menu in Delphi 2010? frogb 2009-11-06T14:23:59Z 2009-11-06T14:46:23Z <p>Who or what inserts the Unicode, right-to-left and IME items at the foot of the default right-click popup menu in Delphi 2010 VCL applications? I would like to remove them for user environments where they are unlikely ever to be needed, without having to define a custom pop-up menu for every edit and memo. Most of the time only copy, cut, paste and select all are appropriate.</p> http://stackoverflow.com/questions/1687739/what-are-dispinterface-declarations-used-for 1 What are dispinterface declarations used for? Cobus Kruger 2009-11-06T13:55:21Z 2009-11-06T14:21:29Z <p>When you create a type library in Delphi and create an interface and the associated CoClass, Delphi also creates matching dispinterface declarations.</p> <p>My understanding is that these relate to the fact that my interface derives from IDispatch, but I thought that TAutoObject implements everything needed for IDispatch. So my question is threefold:</p> <ol> <li>What is the dispinterface used for?</li> <li>Why is it needed?</li> <li>How does one use it?</li> </ol> http://stackoverflow.com/questions/102254/hidden-features-of-delphi 25 Hidden Features of Delphi JosephStyons 2008-09-19T14:27:14Z 2009-11-06T09:16:36Z <p>The "Hidden Features" series here on StackOverflow has generated some really interesting feedback. So what about my favorite IDE, Delphi? What are some hidden features there?</p> <p>I'll start with one of my own:</p> <p>You can invoke inline find by typing Ctrl+E, then typing your search term.</p> http://stackoverflow.com/questions/1451495/questions-every-good-delphi-developer-should-be-able-to-answer 12 Questions every good Delphi developer should be able to answer? RRUZ 2009-09-20T17:20:16Z 2009-11-06T08:11:32Z <p>Following the spirit of these questions:</p> <ul> <li><p><a href="http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers">How to Recruit Great Developers?</a> </p></li> <li><p><a href="http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer">Questions every good .NET developer should be able to answer?</a></p></li> </ul> <p>...it would be interesting to know recommendations or advice for hiring a good Delphi developer.</p> <p>Some time ago <a href="http://www.stevetrefethen.com/" rel="nofollow">Steve Trefethen</a> published a series of great articles:</p> <ul> <li><a href="http://www.stevetrefethen.com/blog/DelphiIDEWisdom.aspx" rel="nofollow">Delphi IDE Wisdom</a></li> <li><a href="http://www.stevetrefethen.com/blog/DelphiRTLAndLanguageWisdom.aspx" rel="nofollow">Delphi RTL and Language Wisdom</a></li> <li><a href="http://www.stevetrefethen.com/blog/DelphiVCLWisdom.aspx" rel="nofollow">Delphi VCL Wisdom</a></li> <li><a href="http://www.stevetrefethen.com/blog/DelphiCommunityWisdom.aspx" rel="nofollow">Delphi community wisdom</a></li> </ul> <p>...that provide a great summary of topics that a good developer in Delphi should master.</p> <p>What are your suggestions?</p> http://stackoverflow.com/questions/679430/comprehensive-list-of-delphi-ide-shortcuts 4 Comprehensive list of Delphi IDE Shortcuts François 2009-03-24T21:59:54Z 2009-11-06T06:31:13Z <p>I've seen different lists based on Adam Markovitz's (<a href="http://web.archive.org/web/20060213081516/http://blogs.borland.com/AdamMarkowitz/archive/2005/12/15/22523.aspx" rel="nofollow">http://web.archive.org/web/20060213081516/http://blogs.borland.com/AdamMarkowitz/archive/2005/12/15/22523.aspx</a>) like <a href="http://firebirdpt.wordpress.com/2008/07/02/delphi-ide-code-editor-keyboard-shortcuts/" rel="nofollow">here</a> or on <a href="http://delphi.wikia.com/wiki/Default%5FIDE%5FShortcut%5FKeys" rel="nofollow">Delphi Wiki</a>, this other one from <a href="http://delphimiracles.blogspot.com/2006/12/delphi-editor-ide-shortcuts-all.html" rel="nofollow">DelphiMiracles</a>, or this table from <a href="http://www.stevetrefethen.com/wiki/Keybinding%20Information.ashx" rel="nofollow">Steve Trefethen</a>. </p> <p>And they are all somehow different.</p> <p>Is there somewhere a comprehensive list with all the Default IDE shortcuts for D2007 and/or D2009?<br /> Or do you know other lists that would complement those?</p> <p>note: for some reason the link to Adm Markovitz's archive does not work...</p> http://stackoverflow.com/questions/1678572/is-there-an-efficient-whole-word-search-function-in-delphi 1 Is There An Efficient Whole Word Search Function in Delphi? lkessler 2009-11-05T05:42:50Z 2009-11-05T23:15:40Z <p>In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the delimiters that define the word, e.g.:</p> <pre><code>function ContainsWord(Word, Str: string): boolean; const { Delim holds the delimiters that are on either side of the word } Delim = ' .;,:(){}"/\&lt;&gt;!?[]'#$91#$92#$93#$94'-+*='#$A0#$84; </code></pre> <p>where: </p> <pre><code>Word: string; { is the Unicode string to search for } Str: string; { is the Unicode string to be searched } </code></pre> <p>I only need this to return a true or false value if the "Word" is in the string.</p> <p>There must be something for this somewhere, because the standard Find Dialog has "Match whole word only" as one of it's options.</p> <p>How is this normally (or best) implemented?</p> <p><hr></p> <p>Conclusion:</p> <p>RRUZ's answer was perfect. The SearchBuf routine was just what I needed. I can even go into the StrUtils routine, extract the code, and modify it to fit my requirements. </p> <p>I was surprised to find that SearchBuf doesn't first search for the word and then check for delimiters. Instead it goes through the characters of the string one at a time looking for a delimiter. If it finds one, then it checks for the string and another delimiter. If it doesn't find it, it then looks for another delimiter. For efficiency's sake, that's very smart!</p> http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error 1 Delphi 2010 - package problem, File not found error Vegar 2009-11-05T22:22:40Z 2009-11-05T23:08:56Z <p>I have a problem with a application with plugins. Originally, everything was compiled into a single exe, but now, I want to take out some of the code into a bpl on its own. The code that is shared by both the exe and the new bpl is put into a third bpl. </p> <p>application.exe is compiled with package api.bpl api.bpl contains only one file, api.pas plugin.bpl requires api.bpl.</p> <p>I have the following structure on disk:</p> <p>.\ - final output for exe and bpls<br> .\src - sourcefiles for application.exe and api.bpl, including shared api.pas<br> .\dcu - dcu output for all projects<br> .\plugin - plugin source</p> <p>I can compile application.exe without a problem.<br> I can compile api.bpl without a problem.<br> But when I try to compile plugin.bpl, it tries to build api.bpl first, an then it complains that it can't find api.pas.</p> <p>Why is that?</p> http://stackoverflow.com/questions/1681434/registry-access-in-non-admin-mode 1 Registry access in non-admin mode Brian Frost 2009-11-05T15:52:07Z 2009-11-05T20:28:01Z <p>I've several long-standing apps written in Delphi that persist their settings in the registry. I've used HKEY_LOCAL_MACHINE for 'hard' settings such as configuration preferences and HKEY_CURRENT_USER for 'soft' info such as window positions, MRU lists etc.</p> <p>Now my users are telling me that in non-admin (standard user) mode the apps dont work. Looking, I see that I'm not able to read a setting put into HKEY_LOCAL_MACHINE when the app was in admin mode.</p> <p>What are my options for this? I know little about standard mode and how this affects access to the registry at all. Any info appreciated.</p> http://stackoverflow.com/questions/1680109/developing-nested-applications 3 Developing nested applications Dan Kelly 2009-11-05T12:00:33Z 2009-11-05T20:01:38Z <p>We're looking at moving our multiple database applications to a single platform - possibly web based.</p> <p>The Model that we've been thinking of is to have a number of nested applications something like this:</p> <p>1) Have a "Side bar" which manages the basic navigation of the applications, searching, etc. </p> <p>2) Making a selection in the sidebar loads the appropriate application in the main portion of the display. Links within each of these applications may call other applications as if changing web pages.</p> <p>However looking around I can't see a straight forward way of implementing this in either IntraWeb (our first choice - hosted in a browser) or Delphi, short of having coding it all as a single application.</p> <p>Any advice?</p> http://stackoverflow.com/questions/1671144/freeware-structural-highlighting-for-delphi-2007-ide 1 Freeware "Structural Highlighting" for Delphi 2007 IDE Jamo 2009-11-04T01:05:51Z 2009-11-05T19:20:19Z <p>I'm in the middle of sorting out a nested set of if/then begin/end pairs, and missing the heck out of CodeRush's structural highlighting (which I used to have in Delphi 6, and loved). Is there a freeware IDE add-in out there that will accomplish the same for Delphi 2007? </p> <p>Note: I know <a href="http://www.twodesk.com/castalia/structural%5Fhighlighting.html" rel="nofollow">Castalia does this</a> as well. I tried Castalia a while back, and had trouble w/its stability; also don't <em>really</em> feel like spending $99 at the meoment for just this one feature, (plus maybe the split-editor feature). I may anyway, but thought I'd ask here first to see if there are cheaper alternatives.</p> <p>Thanks in advance.</p>