active questions tagged delphi+ide - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:34:39Zhttp://stackoverflow.com/feeds/tag/delphi+idehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802819/how-can-i-add-a-new-application-new-file-wizard-to-the-delphi-ide-new-dia0How can I add a new application / new file wizard to the Delphi IDE "New ..." dialog?mjustin2009-11-26T10:18:26Z2009-11-26T13:53:13Z
<p>Are there examples and resources (source code and documentation) available which show how a 'New xyz Application' or 'New xyz Document' wizard can be created with Delphi which then will appear in the new project / new file dialog of the Delphi IDE?</p>
<p>What I want to do: for some of my libraries I would like to add a new project type and a new file type to the IDE dialogs, which will guide the developer through a wizard and then create some customized auto-generated source code.</p>
<p>So far I found this short overview:</p>
<p><a href="http://delphi.about.com/od/objectpascalide/a/wizardsexperts.htm" rel="nofollow">Experts and Wizards in Delphi</a></p>
<p>And this article
<a href="http://edn.embarcadero.com/article/28050" rel="nofollow">OTA: Visual design of Wizards</a> </p>
<p>Note that this question is not about wizard or GUI creation in general but on how the Delphi IDE can be extended to include my own new project / file type dialogs. The new project and file types should appear <strong>in the new file or new project type dialog</strong> in the matching category (or even a new one).</p>
http://stackoverflow.com/questions/1742759/delphi-ide-how-to-make-disabled-toolbar-buttons-grayscaled1Delphi IDE - How to make disabled toolbar buttons grayscaled?Frantic2009-11-16T15:08:40Z2009-11-18T12:22:38Z
<p>Seams like this one is for real Delphi geeks only.</p>
<p>This is how it looks (sorry, can't post images)<br />
<a href="http://i.piccy.info/i4/da/ac/6e4748778dcfdc13ec5fede3a7e0.png" rel="nofollow">Delphi IDE ugly toolbar</a></p>
<p><img src="http://i.piccy.info/i4/da/ac/6e4748778dcfdc13ec5fede3a7e0.png" alt="alt text"></p>
<p><strong>What's wrong</strong> - disabled Delphi IDE toolbar and menu buttons are ugly black/white images.<br />
<strong>What I want to do</strong> - make them look gray-scaled.</p>
<p><strong>How?</strong> I made some research. Main problem in virtual <code>TCustomImageList.DoDraw</code> method. When paramater <code>Enabled = False</code> it paints ugly things (see disabled buttons on screenshot). I created my own override for this function and it paints gray-scaled images when <code>Enabled = False</code></p>
<p>Now I want to <strong><em>replace default <code>DoDraw</code> with my own</em></strong> in IDE (using design-time package):</p>
<ol>
<li>I figured out that unit ImgList is compiled-in bds.exe, so trick with patching this function in <code>rtlXXX.bpl</code> will not work. </li>
<li>Searching for function's body content gave no result. Looks like bds.exe's implementation (I'm talikng about machine codes) of <code>DoDraw</code> is a bit different.</li>
</ol>
<p>Any suggestions or ideas of how can I make this possible? As base example of runtime code patching I took Andy's Midas Speed Fix: <code>FindMethodPtr</code>, <code>HookProc</code>, <code>UnhookProc</code></p>
http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems3Help with strange Delphi 5 IDE problemsTom2009-11-13T17:20:34Z2009-11-16T19:54:29Z
<p>Ok, I'm going nuts here. For the last (almost) four years, I've been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include:</p>
<ul>
<li>Seemingly random errors in coride50.bpl</li>
<li>floating point errors on compiling</li>
<li>occasional deletions of my source code files</li>
<li>form and object sizes shifting between instances of working on them</li>
<li>Loss of links between files on compile: messages that it can't find a function even though it is explicitly referenced</li>
<li>The linker frequently fails to include valid .DFM files unless a full build is performed instead of a smaller compile</li>
</ul>
<p>The biggest problem is that my boss isn't believing that this is happening without any user changes making these issues appear. I've already wiped and reloaded Delphi fresh a couple of times, but that is not something I can do again right now. Most of the issues listed can be easily recovered from (either reload the IDE or re-copy the files out of source control), but this is completely nuts. I've eliminated all the warnings and hints from compile time, haven't covered them up. I've done my best to follow <a href="http://www.marcocantu.com/" rel="nofollow">Marco</a> and <a href="http://cc2e.com/" rel="nofollow">Microsoft</a>'s best practices. Is this just me? Am I the crazy one? How can I stop Delphi from causing these headaches anymore?</p>
http://stackoverflow.com/questions/1734465/is-there-a-delphi-ide-plugin-for-xml-file-editing-validation-formatting1Is there a Delphi IDE plugin for XML file editing, validation, formatting?mjustin2009-11-14T15:01:22Z2009-11-15T22:17:42Z
<p>Are there (free or commercial) IDE editor plugins for Delphi which </p>
<ul>
<li>show valid XML tags and parameters automatically while editing (like CodeInsight for HTML does it already) or suggest the correct closing tags, matching the current open tag?</li>
<li>validate a XML file in the IDE editor against its XSD, or to check its well-formedness?</li>
<li>format a XML file which is open in the IDE editor (this would be useful for configuration files and scripts)?</li>
</ul>
<p>These editing capabilities could also be useful for XHTML web page documents in IntraWeb / WebSnap applications, WSDL (Web Service description) and XSD (XML Schema) files, making web application and web service development easier.</p>
http://stackoverflow.com/questions/1671144/freeware-structural-highlighting-for-delphi-2007-ide1Freeware "Structural Highlighting" for Delphi 2007 IDEJamo2009-11-04T01:05:51Z2009-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>
http://stackoverflow.com/questions/1600340/is-there-some-way-to-load-the-tsqlconnection-params-from-an-ini-file-in-design-ti1Is there some way to load the TSQLConnection params from an ini file in design time?Fabio Gomes2009-10-21T11:48:53Z2009-11-03T13:08:01Z
<p>I have a SQLConnection which is shared between projects, in runtine it reads the configuration from an ini file, is there some way to load this same configuration in design time?</p>
http://stackoverflow.com/questions/1616985/adding-delphi-6-third-party-component-to-delphi-20100Adding Delphi 6 third party component to Delphi 2010?Snackmoore2009-10-24T04:44:55Z2009-10-27T16:30:25Z
<p>Hi,</p>
<p>I have a few Delphi 6 third party components which I need to add to Delphi 2010 to begin my migration. Is it possible? The interface seem a lot different and I can't seem to find a way to do this?</p>
<p>This help...</p>
<p>My components: DBGridEasy, TSerial, Varian Async32.</p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/1533107/delphi-2010-ide-error-insight-error0delphi 2010 IDE 'error insight' errorFrancis Lee2009-10-07T17:38:57Z2009-10-07T19:01:12Z
<p>Hello
when I open concrete projects the error insight mark with red lines incorrect areas of the screen. Also when I compile It, error messages are shown, but the line number displayed in the message window points to a wrong line in the code window. When I double click over a error message the ide goes to another line. how do i correct this problem?</p>
<p>Regards,</p>
<p>Francis</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/937120/delphi-2007-browse-path-click-though-issue0Delphi 2007 Browse path / click-though issueJamo2009-06-01T22:28:01Z2009-09-30T14:00:03Z
<p>I have Raize 3.0 installed in D2007. For whatever reason, I can't seem to get the Ctr-click to work for loading up it's units, even though that feature works fine on all my other Delphi and Third-Party components.</p>
<p>Here's what I have for Raize on the Library Path:</p>
<p>$(ProgramFiles)\Raize\RC3\Lib6<br />
$(ProgramFiles)\Raize\RC3\Source</p>
<p>...and the Browsing Path:</p>
<p>$(ProgramFiles)\Raize\RC3\Source</p>
<p>Lib6 contains *.dcu and *.dfm files, and Source contains, obviously, the source code. Adding Lib6 to the Browsing path doesn't seem to affect things one way or the other.</p>
<p>I don't get why this Ctrl-click unit-loading feature isn't working, just for this one component. Any ideas what I may be missing?</p>
http://stackoverflow.com/questions/667798/how-to-set-delphi-bookmarks-on-vista-64-bit0How to set Delphi bookmarks on Vista 64-bitMike Sutton2009-03-20T20:13:08Z2009-09-28T21:22:51Z
<p>In Delphi (2007) I'm used to setting a bookmark with CTRL-SHIFT-0,1,2 etc.</p>
<p>Since I've upgraded to Vista x64 the above no longer works. I can still set a bookmark with CTRL-K-0,1,2 etc but I'm habituated to the traditional way (plus it's quicker).</p>
<p>Does anyone know why it's not working for me?</p>
http://stackoverflow.com/questions/1484927/winforms-floating-windows-like-delphi7-ide2WinForms floating windows (like Delphi7 IDE)Wessam Bahnassi2009-09-28T00:37:42Z2009-09-28T01:17:52Z
<p>I want to setup my WinForm to look like the Delphi7 IDE. Basically that means the window has no background (the desktop shows through), and child windows float around.</p>
<p>Here's a sample image:
<img src="http://www.builder.cz/images/delphi7-screenshot-big.png" alt="alt text" /></p>
<p>I can handle the floating windows, but how would I go for the main window (the menu bar and the toolbar)? What are the WinForm properties required to get this layout? I can't seem to be able to get rid of the window's client area.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1480216/delphi-2009-ide-structure-view-collapse-function0Delphi 2009 IDE Structure View Collapse function...Terrance2009-09-26T01:50:52Z2009-09-26T08:35:16Z
<p>Hi,</p>
<p>Does anyone know now to collapse all items in Delphi 2009 IDE structure View?</p>
<p>I have no idea to collapse all items and that make me hard to find my class from the view.</p>
<p>Thanks</p>
<p>Terrance</p>
http://stackoverflow.com/questions/375962/is-it-possible-to-turn-off-unicode-support-in-rad-studio-20092Is it possible to turn off Unicode support in RAD Studio 2009?chester892008-12-17T20:46:21Z2009-08-29T15:40:30Z
<p>Hi guys, I have a little trouble with RAD Studio 2009.<br>
As you know, it is possible to switch Unicode support off in MSVS (right click on solution->properties->character set=not set). I need to find this feature in RAD Studio, I know it exists but do not know where exactly.<br>
It`s the only thing that stops my work on a Socket Chat university project.<br>
P.S. The problem appeared after I have installed the update from CodeGear official site.<br></p>
http://stackoverflow.com/questions/1312920/i-have-a-problem-in-dll0I have a problem in dll?Tobassum Munir2009-08-21T16:21:30Z2009-08-22T22:39:56Z
<p>hello all friends..........</p>
<p>I create a form inside the Dll. But it compile is not successfully.Some Error below.</p>
<p>" Access violation at address 004EB784 in module 'Project1dll.dll'.Read of address 00000048"</p>
<p>Thanks..... </p>
http://stackoverflow.com/questions/1302462/is-there-a-way-to-change-the-default-generated-code-wrapping-width-in-the-delphi1Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?MarkF2009-08-19T20:29:50Z2009-08-19T23:01:13Z
<p>Now that I have a widescreen monitor, I can't seem to find a way to make the Delphi IDE wrap generated code at anything other than 80 chars. I've set the "Right margin" setting in the IDE Editor options to a high value, but it doesn't appear to affect the wrapping that happens on generated events and code lines. Does anyone know of a way to set it? Perhaps a hidden registry setting? Alternately, are there any IDE addons that do this? Thanks for any suggestions!</p>
http://stackoverflow.com/questions/1261482/how-to-open-windows-explorer-when-i-click-a-button3How to open windows explorer when I click a button?Tobassum Munir2009-08-11T16:25:43Z2009-08-14T14:49:41Z
<p>I have a form in a Delphi project. There is a button on the form. When the user clicks the button, I want it to open Windows Explorer. </p>
<p>What code will I need to achieve this?</p>
http://stackoverflow.com/questions/1215664/is-implicitly-imported-always-a-bad-thing-in-delphi-packages8Is "implicitly imported" always a bad thing in Delphi packages?Jamo2009-08-01T02:12:43Z2009-08-01T08:05:50Z
<p>Trying to rearrange my packages for a set of <a href="http://stackoverflow.com/questions/589040/tframe-inheritance-refactoring">TFrame-descendent components</a>, I'm finding it seemingly necessary to break out some of my utility TFrame descendents separate from the dialog forms which use them, mainly because the former are registered to the palette as true components and that seems to confuse the IDE sometimes with respect to the dialog forms which use them. The dialog forms in turn are called by non-visual components, which are part of a third package. This, <em>so far</em>, seems to make most of the compiler's <a href="http://stackoverflow.com/questions/1191602/cannot-load-package-a-it-contains-unit-x-which-is-also-contained-in-package-b">dependency-related complaints</a> / confusions go away. (I'm not out yet, however).</p>
<p><strong>When compiling the package with the dialog forms</strong> (which call the Frames), I am getting the warning <em>"Unit 'MyFrames' implicitly imported into package 'MyDialogForms'"</em></p>
<p>Given that it shows up as a compiler warning, I've long ago gotten the impression that "implicitly importing" a unit is generally not a good thing. Are there specific instances where that is not the case? i.e. where implicitly importing a unit is OK, and/or an appropriate practice?... and if so, what are those specific cases?</p>
http://stackoverflow.com/questions/667746/delphi-package-build-install-debugging1Delphi Package Build / Install debuggingJamo2009-03-20T20:02:54Z2009-07-31T09:24:41Z
<p>I'm using Delphi 2007 Pro. I have a runtime package that includes a number of compound components I'm developing, which are based on TFrames. There is also a related design package which installs these components to the tool palette. These TFrame descendents use a number of third-party components, for various reasons, and also inherit from one another, as a class hierarchy. So far (and with the help of some great advice here), this approach is working very well for what I want to accomplish.</p>
<p>Recently I ran into a problem, however, compiling/building the runtime package. Initially, it had to do with some conflict centering on nxEventLog.pas, the details of which unfortunately I failed to record, but was basically something along the lines of "the definition for this method does not agree with the previous definition for it," like what you get when your implementation declaration doesn't agree with your class declaration. This file is a NexusDB file (the application uses a NexusDB embedded server).</p>
<p>I tried various things, but never was successful in getting the conflict to go away. The closest I came was upon compiling, having the IDE request adding TRUCKLOAD of completely unrelated units to the contains/uses clause. More on this later, but if I proceeded with that, it still wouldn't work. The nxEventLog file had not changed from its original state.</p>
<p>Unable to ferret out why this error was showing up -- it was showing up in Nexus files, not my actual package or units, and I had changed nothing in the Nexus code -- I finally went ahead and just completely uninstalled Nexus, and manually searched to try to make sure I had deleted all related dcu and bpl files, and then reinstalled it. (I'm running Nexus 2.07)</p>
<p>Upon firing up the IDE, I got the following errors:</p>
<blockquote>
bds.exe - Entry Point Not Found<br>
---------------------------<br>
The procedure entry point<br>
@Nxsddatadictionary@TnxBaseTableDescriptor@LoadFromReader$qqrp15Classes@TReader could not be located in the dynamic link library NexusDB207sd110.bpl. <br>
---------------------------<br>
OK<br>
</blockquote>
<p>Followed by: </p>
<blockquote>
Can't load package ....NexusDB207dv110.bpl<br>
Can't load package ....cmTPPanels_D2007_DesignReg.bpl<br>
The specified procedure oculd not be found.<br>
Do you want to attempt to load this package the next time a package is loaded?
</blockquote>
<p>Once I uninstalled the cmTPPanels runtime/design packages (my component set), via Component -> Install Package -> Remove, my other "normal Nexus DB" applications seem to work fine, including those which include Nexus's nxEventLog ocmponent. This seems to indicate the problem is definitely in my install packages somewhere.</p>
<p>So, having confirmed that my Nexus installation does not seem to be the actual problem, I opened up the project group which contains both packages. Building (or compiling) the runtime package, the Delphi IDE gives me the same dialog box I mentioned above: </p>
<blockquote>
"The following changes are necessary to make this package compatible with other installed package. Choose OK to apply these changes and rebuild the package." <br>
<br>
Add dsnap.<br>
dsnap contains implicit unit(s) DBClient, Provider, DataBkr, MidConst, Midas, DSIntf.<br>
<br>
Add ibxpress.<br>
ibxpress contains implicit unit(s) IBUtils, IB, IBSQLMonitor, IBHeader, IBIntf, IBXConst, IBXMLHeader, IBSQL, IBBlob, IBCustomDataSet, IBDatabase, IBErrorCodes, IBDatabaseInfo,<br> IBExternals, IBInstallHeader, IBServices.<br>
<br>
Add IndyCore.<br>
IndyCore contains implicit unit(s) IdIOHandlerSocket, IdSocks, IdIOHandlerStack, IdBuffer, IdResourceStringsCore, IdIntercept, IdCustomTransparentProxy, IdExceptionCore, IdSocketHandle, IdIOHandler, IdTCPConnection, IdReplyRFC, IdReply, IdTCPClient, IdIPAddress, IdAssignedNumbers.<br>
<br>
Add IndySystem.<br>
IndySystem contains implicit unit(s) IdBaseComponent, IdGlobal, IdStreamVCL, IdSysNativeVCL, IdSysVCL, IdSysBase, IdSysWin32, IdResourceStrings, IdException, IdSys, IdStream, IdObjs, IdComponent, IdStack, IdStackWindows, IdWship6, IdWinSock2, IdStackConsts, IdStackBSDBase, IdAntiFreezeBase.<br>
<br>
Add Rz30DBCtls90.<br>
Rz30DBCtls90 contains implicit unit(s) RzDBNav, RzDBLbl, RzDBStat.<br>
<br>
Add lmdweb30_d10.<br>
lmdweb30_d10 contains implicit unit(s) LMDWebHTTPGet, LMDHTMLObjectUnit, LMDFSSupport, LMDHTTPSupp, LMDStringsSupport, LMDURLSupp, LMDRASSupport, LMDRASCF, LMDWebConst, LMDRAS, LMDSyncUnit, LMDWebBase, LMDWebLex, LMDWebHTMLLex, LMDWebDownloadFormUnit, LMDDownload, LMDInetConst, LMDWebConfig, LMDWebInfo.<br>
<br>
Add lmddsg30_d10.<br>
lmddsg30_d10 contains implicit unit(s) LMDDsgPropInsp, LMDDsgPropEditors, LMDDsgMenuEditor, LMDDsgObjects, LMDDsgClass, LMDDsgCst, LMDDsgCollectionEditor, LMDDsgStrsEditor, LMDDsgPropPage, LMDDsgModule.<br>
<br>
Add lmdstorage10_d10.<br>
lmdstorage10_d10 contains implicit unit(s) LMDStorFormProperties, LMDStorFormHook, LMDStorBase, LMDStorConsts, LMDStorPropertiesStorage, LMDStorCommon, LMDStorINIVault.<br>
<br>
Add ExceptionExpert11.<br>
ExceptionExpert11 contains implicit unit(s) ExceptionLog, EDisAsm, EHash, EListView, EConsts, ETypes, ELogManager, EEncrypt, EBase64, EXMLBuilder, ECore, EWebTools, EZip, EZlib, ESockets, ELang, EHook, EDebug, ELeaks.<br>
<br>
Add RemObjects_Core_D11.<br>
RemObjects_Core_D11 contains implicit unit(s) uROClasses, uROSerializer, uROXMLIntf, uROMSXMLImpl, uRORes, uROMSXML2_TLB, uROClient, uRODLToXML, uRODL, uROTypes, uROHTTPTools, uROClientIntf, uROEncryption, uROZlib, uROCipher1, uROHash, uRODECUtil, uRODECConst, uROCipher, uROCiphers, uROBinaryHelpers, uROCompression, uROEventRepository, uROServerIntf, uROSessions, uRODynamicRequest, uRORemoteService, uROThreadPool, uROServer, uROAsync, uROThread, uROBinMessage, uROStreamSerializer.<br>
<br>
Add RemObjects_Indy_D11.<br>
RemObjects_Indy_D11 contains implicit unit(s) uROSuperTCPChannel, uROSCHelpers.<br>
<br>
Add DataAbstract_Core_D11.<br>
DataAbstract_Core_D11 contains implicit unit(s) uDADataTable, uDASupportClasses, uDARes, uDABusinessProcessor, uDAEngine, uDASQL92QueryBuilder, uDASQL92Interfaces, uDAWhere, uDAInterfaces, DataAbstract4_Intf, DataAbstract3_Intf, uDAHelpers, uDAClasses, uDAMemDataTable, uDAMemDataset, uDAExpressionEvaluator, uDAMacros, uDAUtils, uDAXMLUtils, uDADriverManager, uDAInterfacesEx, uDADelta, uDARegExpr, uDAScriptingProvider, uDAOracleInterfaces, uDAMacroProcessors, uDADataStreamer, uDACDSDataTable, uDARemoteDataAdapter, uDAReconcileDialog, uDAReconcileDialogDetails, uDARemoteDataAdapterRequests, uDABinAdapter.<br>
<br>
Add VirtualTreesD11.<br>
VirtualTreesD11 contains implicit unit(s) VirtualTrees, VTAccessibilityFactory.<br>
<br>
Add VirtualShellToolsD11.<br>
VirtualShellToolsD11 contains implicit unit(s) VirtualExplorerTree, ColumnForm, VirtualResources, VirtualShellAutoComplete, VirtualShellNotifier, VirtualScrollbars.<br>
<br>
Add dxBarDBNavD11.<br>
dxBarDBNavD11 contains implicit unit(s) dxBarDBNav, dxBarDBNavStrs.<br>
<br>
Add dxBarExtDBItemsD11.<br>
dxBarExtDBItemsD11 contains implicit unit(s) dxBarExtDBItems.<br>
<br>
Add cxVerticalGridD11.<br>
cxVerticalGridD11 contains implicit unit(s) cxDBVGrid, cxVGridViewInfo, cxVGridUtils, cxVGrid, cxVGridNewCategory, cxVGridConsts.<br>
<br>
Add dxNavBarD11.<br>
dxNavBarD11 contains implicit unit(s) dxNavBar, dxNavBarExplorerViews, dxNavBarConsts, dxNavBarGraphics, dxNavBarStyles, dxNavBarBase, dxNavBarViewsFact, dxNavBarCollns, dxNavBarVSToolBoxViews, dxNavBarBaseViews, dxNavBarOffice11Views, dxNavBarOfficeViews, dxNavBarXPViews.<br>
<br>
Add dxLayoutControlD11.<br>
dxLayoutControlD11 contains implicit unit(s) dxLayoutControl, dxLayoutCustomizeForm, dxLayoutEditForm, dxLayoutCommon, dxLayoutLookAndFeels, dxLayoutControlAdapters.<br>
<br>
Add dxMasterViewD11.<br>
dxMasterViewD11 contains implicit unit(s) dxMasterViewColumns, dxMasterView, dxMasterViewStrs.<br>
<br>
Add dxdbtrD11.<br>
dxdbtrD11 contains implicit unit(s) dxdbtrel, dxlocate, dxtree, dxdbtree.<br>
<br>
Add dxPSCoreD11.<br>
dxPSCoreD11 contains implicit unit(s) dxPSEdgePatterns, dxPSUtl, dxPSImgs, dxPSRes, dxPrnDev, dxPSGlbl, dxPSEngn, dxPSSngltn, dxPSESys, dxBase, dxPSCore, dxPSPrVwStd, dxPSPopupMan, dxPgsDlg, dxWrap, dxPSHFToolBarBld, dxPSfmAutoHFTextFmt, dxPSEvnt, dxPrnPg, dxPpAttr, dxBkGnd, dxFEFDlg, dxPcPrVw,dxExtCtrls, dxExtCtrlsStrs, dxPSForm, dxPSAutoHFTextMnuBld, dxfmDfnStl, dxfmMnPg, dxfmClr, dxPreVw, dxPSPrVw, dxfmZoom, dxPSExtDlgs, dxfmPNFmt, dxfmDTFmt, dxPSPrVwOpt, dxPSfmCompositionDsg, dxPSfmCompositionAdd, dxPSCompsProvider, dxPSXplorerTreeView, dxPSfmReportProperties, dxPSPgsMnuBld, dxfmChFN, dxPSfmTtl, dxPSCPDsg, dxPSfmLnkAdd, dxPSfmEditDesc, dxPSFillPatterns, dxPrnDlg.<br>
<br>
Add dxPScxCommonD11.<br>
dxPScxCommonD11 contains implicit unit(s) dxPScxCommon.<br>
<br>
Add dxPScxGridLnkD11.<br>
dxPScxGridLnkD11 contains implicit unit(s) dxPScxGridLnk.<br>
<br>
Add NexusDB207se110.<br>
NexusDB207se110 contains implicit unit(s) nxseAutoComponent, nxseAllEngines, nxseRecordCompressionEngineSmart, nxseRecordEngineVariable, nxseFulltextEngineCursor, nxseFulltextEngineTable, nxseRefIntEngine, nxseJournalEngine, nxseSortEngineMerge, nxseTemporaryStorageChunked, nxseRecordEngineStatic, nxseIndicesEngineSimple, nxseIndexBase, nxseHeapEngineCached, nxseBlockHeapEngineNonfragmenting, nxseBlobEngineSimple, nxseIndexEngineStaticKeyBstarTree, nxseHeaderAccess, nxseEncryptionEngineBlowfishRC4, nxseBlobEngineSegmented, nxseAutoIncEngineSimple, nxseStreamEngineSimple.<br>
<br>
Add NexusDB207sr110.<br>
NexusDB207sr110 contains implicit unit(s) nxsrSqlEngineBase, nxExeConst, nxsrServerEngine, nxsrBlobHandlerCaching, nxsrTimeoutHandling, nxsrTypes, nxsrBlobHandlerBase, nxsrBufferManager, nxsrFileImplWin32, nxsrStrings, nxsrEncryptionEngineBase, nxsrConst, nxsrTemporaryStorageBase, nxsrBlobEngineBase, nxsrSubEngineBase, nxsrBlobHandlerPassthrough, nxsrRecordMapperEngine, nxsrFieldMapperEngineAutoInc, nxsrFieldMapperEngine, nxsrFieldMapper, nxsrSortEngineBase, nxsrFulltextEngineBase, nxsrIndexEngineBase, nxsrRecordEngineBase, nxsrRefIntEngineBase, nxsrAutoIncEngineBase, nxsrStreamEngineBase, nxsrTableLockContainer, nxsrDataDictionary, nxsrFileHandling, nxsrServerCursorMapping, nxsrSystemStorage, nxsrRecordCompressionEngineBase, nxsrHeapEngineBase, nxsrBlockHeapEngineBase.<br>
<br>
Add NexusDB207sq110.<br>
NexusDB207sq110 contains implicit unit(s) nxsqlEngine, nxsqlFunctions, nxsqlDataDef, nxsqlFunctionOrganizer, nxsqlCondExp, nxsqlTableExp, nxsqlViews, nxsqlProxies, nxSQLParse, nxsqlPSM, nxsqlTest, CocoaBaseW, nxsqlBase, nxsqlDataManip, nxSQLTok, nxSQLProxiesIntf.<br>
<br>
Add NexusDB207lg110.<br>
NexusDB207lg110 contains implicit unit(s) nxlgEventLogDispatcher, nxlgEventLog.<br>
<br>
Add NexusDB207dv110.<br>
NexusDB207dv110 contains implicit unit(s) nxServerManager, nxBaseServerComp, nxConfigSettings.<br>
<br>
Add MPCommonLibD11.<br>
MPCommonLibD11 contains implicit unit(s) MPDataObject, MPCommonObjects, MPCommonUtilities, MPResources, MPShellTypes, MPThreadManager, MPShellUtilities.<br>
<br>
</blockquote>
<p>What's weird about this, aside from the fact that includes just about everything but the kitchen sink, is that a number of the packages mentioned aren't even relevant to the components included in this package I'm trying to install; DataSnap, Indy, IBExpress, RemObjects Data Abstract, etc -- none of these are even referenced in my components.</p>
<p>If I click "OK" to all these added units/packages, more chaos ensues, and it doesn't compile.</p>
<p>The NexusDB folders, and the folders which these components I'm developing reside in, are all on my Library path, with my custom components listed last.</p>
<p>I'm working on a virtual machine, and can snapshot as needed, but I can't seem to get around this problem regardless, and it's clear that I don't have enough in-depth understanding of how the compiler works to know where to look for diagnosis of the problem. Anything anyone can mention which might help me do so, would be much appreciated.</p>
http://stackoverflow.com/questions/587979/adding-forms-and-frames-to-packages2Adding forms and frames to packagesJamo2009-02-25T21:35:25Z2009-07-20T20:38:59Z
<p>I am developing a package of IDE-registered components, most of which are derived from a base TFrame class. There are also various custom dialog forms that are called by these components, included in the package. I'm working in Delphi 2007.</p>
<p>I'm noticing that sometimes frame and form units, which normally have an associated DFM file, do not always show the DFM file "underneath" (accessible via the little [+] treeview node expander) underneath them. If I add an existing form-based PAS file, for instance, via right-clicking on the BPL project (in the Project Manager) -> Add, it doesn't show the DFM file in the listing. </p>
<p>If I Add New, though, and create a new form or frame unit in the project, it shows as the typical nested two-file item in the Project Manager. It also shows that way if I drag an existing form from another project in the Project Group to this BPL project in question.</p>
<p>Seems like this should be consistent, and I prefer both files showing when the unit is a Frame or Form. </p>
<p>Is this indicative of something wrong in the project file? Am I adding existing forms/frames to this package incorrectly? If so, how should I add existing form/frame units so that both files show in the Project Manager listing?</p>
<p><strong>* UPDATE *</strong></p>
<p>From Alen's suggestion below:</p>
<p>I tried adding the {$R *.dfm} directive to the form's unit, and it did not force the DFM file to show up when adding it to my BPL package/project. Adding {$R *.dfm} to the project file itself (which I don't think is what you meant, but I thought I'd try it) didn't work either. Does this technique only work with EXE projects?</p>
<p>Possibly (likely) related, trying to build with that directive in places gives me this:</p>
<p>[DCC Error] E2161 Warning: Duplicate resource: Type 10 (RCDATA), ID TTESTTREEVIEW; File E:\Projects\MyApp\Components\TTestTreeViewFrame.dfm resource kept; file
E:\Projects\MyApp\Components\TTestTreeViewFrame.dfm resource discarded.</p>
<p>"Keping" and "discarding" the same file??</p>
<p><hr /></p>
<p>Later: It looks like this "duplicate resource" issue MIGHT be related to
<a href="http://stackoverflow.com/questions/589523/delphi-ide-treating-tframe-as-if-it-were-a-form"> this</a>. Not certain, but at least in one instance both happened simultaneously. </p>
http://stackoverflow.com/questions/1113013/how-to-diagnose-cannot-access-package-information-error-in-delphi-ide0How to diagnose "Cannot access package information" error in Delphi IDEJamo2009-07-11T05:20:03Z2009-07-11T19:32:52Z
<p>I am developing a set of TFrame-based components that inherit from one another (as so many who have helped me <em>tremendously</em> along the way already know!), and am running into yet another little "snag," related to packages and installation.</p>
<p>I have essentially the following hierarchy:</p>
<pre><code>TFrame
TBaseFRame
TBaseSizeableFrame
TViewerType1
TViewerType2
</code></pre>
<p>...and a panel, <strong>TExtRzPanel</strong>, which inherits from a Raize Panel and adds some sizing / moving functionality to it, along w/a few other properties / features. <strong>TBaseSizeableFrame</strong> uses this component, and passes through much of it's functionality to the frame itself, so I can develop the compound Viewer components visually. Overall it works well.</p>
<p>The TFrame descendants are all registered to the palette (see
<a href="http://stackoverflow.com/questions/1039947/frame-inheritance-and-duplicate-files-in-packages"> this post</a> for related question I asked earlier). Currently, I have packages set up like this:</p>
<ul>
<li><strong>MyPanels</strong> - Contains the TExtRzPanel </li>
<li><strong>BaseFrames</strong> - Contains TBaseFrame, and TBaseSizeableFrame </li>
<li><strong>ViewerSet1</strong> - Contains one Viewer frame-based component, and a non-visual component which calls that Viewer as a dialog form. (I'm planning on this package having a few other viewers in it as well). </li>
</ul>
<p>The main error that started my current chaos was this one:</p>
<p><em>Cannot access package information for package 'MyPanels.bpl'</em></p>
<p>I'm dizzy enough with this thing now that I'm having trouble remembnering the exact sequences of what I've tried and in what order, but the trouble seems to have started when I added the dialog form to ViewerSet1, which uses a TViewer frame from the same project, and which (of course) thus uses a TExtRzPanel (which is the package the IDE is complaining about).</p>
<p>Based on <a href="http://www.delphikb.com/Default.aspx?db=122111&cat=0%5C58%5C61&topic=2145817418" rel="nofollow">this</a> I've deleted the DCP files (and DCU files too, I think at some point), uninstalled the packages, and then recompiled/reinstalled them MyPanels -> BaseFrames, and got them all working to that point, but upon installing ViewerSet1 the whole thing blows apart again.
Other errors I noted along the way of trying to figure this out include these:</p>
<ul>
<li><em>Package C:\Documents and Settings\All Users\Documents\RAD Studio\5.0\Bpl\MyPanels.bpl can't be installed because it was created with a different version of Delphi or CBuilder.
Do you want to attempt to load this package the next time a project is loaded?</em> (Note: I've only built this with ONE version of Delphi -- Delphi 2007)</li>
<li>At one point, I noticed that the package description for MyPanels didn't "take" (i.e. it showed up as just the file name is Tools -> Compoenent -> Install Packages), which makes me think <em>maybe</em> there are two versions of the file the IDE is finding / using, but I'm not seeing/finding that to be the case.</li>
<li>The warning Delphi gives when starting up, indicating it can't load an installed package, and do you want to load it next time, etc. </li>
<li><em>Cannot access package information for package 'MyPanels.bpl'</em> (Lather, rinse, repeat)</li>
</ul>
<p>Any and all help / direction re: how to diagnose, along with any conceptual explanation which could help me understand what to even look for, would be <em>most</em> appreciated. THANKS IN ADVANCE. You folks have been SO helpful here! Thank you. : )</p>
<p><hr /></p>
<p>Update later:</p>
<p>After setting this aside for a bit and coming back to it, I tried deleting all the DCP / DCU MyPanels files, and then installing the three packages step by step. (VMWare was worth its weight in gold here -- snapshots after each success, so as to not have to start over at the bottom if/when things went wrong)
http://stackoverflow.com/questions/1102668/how-do-i-write-a-delphi-galileo-ide-expert0How do I write a Delphi Galileo IDE Expert?plainth2009-07-09T08:59:43Z2009-07-09T10:59:24Z
<p>HI,</p>
<p>I want to write a small Delphi IDE Expert for D2007-D2009 (aka. Galileo IDE) in order to show a window with a TMemo instance on it, with all the component names and classes from the form designer in the above memo. The selected component will be marked with a '*'. The expert should appear on a menu/toolbar and have a shortcut assigned.</p>
<p><em>How do I do?</em></p>
<p>Ps: Actually the real code is more complicated than that, but I want to have a general framework to get started.</p>
<p>TIA</p>
http://stackoverflow.com/questions/990261/any-way-to-change-colour-of-the-code-insight-red-underline-in-delphi2007-ide3Any way to change colour of the Code Insight red 'underline' in Delphi2007 IDE?robsoft2009-06-13T07:53:22Z2009-06-28T08:36:37Z
<p>I hope the question says it all, really. I use the old Turbo Pascal type colours (navy blue background and white, yellow text etc) in all my Delphi IDEs, including D2007. I'm sufficiently colourblind that I can't really make out the red squiggly lines in my code - but I find the feature really useful when I do notice them.</p>
<p>I've tried switching to a much lighter background but it doesn't feel right - I've been using the classic background in Borland/Inprise/Borland/Codegear/Embarcadero products since about '91. :-)</p>
<p>Does anyone know of any slight-of-hand that would get the colour of that red line changed (white or yellow would be great)?</p>
<p>EDIT: Okay, further to this then - although I can't move most of my existing stuff to D2009 just yet, is this an option I <i><b>CAN</b></i> set in D2009?</p>
<p>EDIT : Seems like it can't be done, in 2007 or 2009. <b>Let's hope it gets picked up for the next version</b>. Bob S's link to the qc document for it can be used to help persuade Embarcadero - I opened that case last year when I first struggled to find a solution for this. In the interests of marking something as an answer, I'll tick Bob's reply. </p>
<p>In the meantime, I think I'm going to have to change my background colour to something that I can see the red against. Oh well. :-) </p>
http://stackoverflow.com/questions/1051283/delphi-package-the-following-changes-must-be-made-never-goes-away1Delphi Package: "The following changes must be made..." never goes away.Jamo2009-06-26T21:04:38Z2009-06-26T23:31:55Z
<p>On one of my packages, which was adapted from another using Save-As and edit, I keep getting the following message (this is in Delphi 2007):</p>
<p>=======<br />
The following changes must be made before this package can be compiled.
Choose OK to apply these changes and continue compiling.</p>
<pre><code> Remove cmSizePanel_Reg.
Unit(s) cmSizePanel_Reg were found in required package cmExtRzPanel_D2007.
</code></pre>
<p>=======</p>
<p>I click OK, and it then proceeds to compile fine. This message, however, never goes away -- I get it every time I compile the package.</p>
<p>Here is the project source, using right-click, "View Source" to get there:</p>
<pre><code>package cmBaseFrames_D2007;
{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'CM BaseFrames - Base Frames and related panels (TcmBaseFrame, etc)'}
{$IMPLICITBUILD ON}
requires
rtl,
vcl,
Rz30Ctls90,
vclx,
cmExtRzPanel_D2007;
contains
cmBaseFrames_Reg in 'cmBaseFrames_Reg.pas',
cmBaseFrameFrame in 'cmBaseFrameFrame.pas' {cmBaseFrame: TFrame},
cmBaseSizeableFrameFrame in 'cmBaseSizeableFrameFrame.pas' {cmBaseSizeableFrame: TFrame};
end.
</code></pre>
<p>"cmSizePanel_Reg" isn't in the project anymore, and doesn't show up in teh Project Manager panel. It would appear that it's "hiding" somewhere in one of the file Delphi uses for the package, but I'm not seeing where. Any ideas how to stomp out this little inconvenience without having to complete re-create the package from scratch?</p>
http://stackoverflow.com/questions/1049948/making-an-ide-using-pascal-script-and-synedit7Making an IDE using Pascal Script and SynEditBrian Frost2009-06-26T16:04:35Z2009-06-26T21:34:17Z
<p>Hi, I'm creating a built-in script engine using PascalScript from RemObjects (excellent) and the SynEdit editor. It's almost finished using the IDE example shipped with PascalScript and the IDE example in SynEdit - but - I can't see how to ask PascalScript whether a numbered source line is 'executable' or not. (I can then use this to mark the SynEdit gutter with the 'Delphi blue dot'). I guess I might have to do a dissassembly of the ROPS output? </p>
<p>Any PascalScript experts here? THanks. Brian.</p>
http://stackoverflow.com/questions/1040690/in-delphi-ide-how-to-quickly-determine-the-location-of-an-open-non-project-relat5In Delphi IDE, how to quickly determine the location of an open non-project-related file?Jamo2009-06-24T20:12:12Z2009-06-25T19:02:35Z
<p>This is probably a question that has an easy/simple/obvious answer, but I've found myself asking it many, many times, and never able to answer it:</p>
<p>When I Ctrl-click a class name, Delphi loads up the unit that defines it (assuming it's on the browse path). Once it's open in the IDE, is there a way to quickly find out where that PAS file resides folder-wise, on the hard drive?</p>
http://stackoverflow.com/questions/1039947/frame-inheritance-and-duplicate-files-in-packages2Frame inheritance and duplicate files in packagesJamo2009-06-24T18:02:15Z2009-06-25T00:01:11Z
<p>I have been developing a number of components using TFrames and ModelMaker -- I've found the combination of visual design/development + inheritance + ModelMaker to be very compelling. I then register these TFrame descendants w/a registration unit, and they become full-fledges palette-based components from there. I'm using Delphi 2007.</p>
<p>Early in my learning about the little "snags" of this process, I found that a number of the problems I would run into with TFrame descendants streaming incorrectly (often appearing as forms in the IDE, rather than frames) could be completely eliminated by introducing my own "TBaseFrame" class which inherits from TFrame with no chanegs, and then use THAT as the base class to develop components from (adding methods, properties, etc). If I added properties and methods, etc. to a class/frame inheriting directly from TFrame, the dfm file streaming would often get confused.</p>
<p>So, overall it's worked great, once I got the kinks worked out.</p>
<p>Yesterday, though, I ran into a new problem:</p>
<p>I install the resulting components in package sets, grouped in ways that make sense (i.e. all of the "panels" for App 1 are in one package, a number of "viewers" for App 2 are in another, etc).</p>
<p>If the TBaseFrame class is not included in the package, the inheriting TFrame-descendant component will not load in the IDE. BUT, if I add TBaseFrame to the package, I run into the conflict Delphi reports when it has the same source PAS file in more than one package.</p>
<p>I <em>could</em> put ALL of my frame=based components into one giant package, but I'd really, really prefer not to, as I can clearly see that will get too large / out of hand over time, given the nature of how many sets I plan on developing. Is there any other way to resolve this conflict?</p>
<p><hr /></p>
<p>Update -- there is a trick to getting this to work "properly" -- be sure to read the comments below.</p>
http://stackoverflow.com/questions/970633/how-can-i-tell-what-monitor-the-delphi-ide-object-inspector-is-on2How can I tell what monitor the Delphi IDE Object Inspector is on?Jeremy Mullin2009-06-09T15:06:01Z2009-06-09T17:04:02Z
<p>This is a follow up to <a href="http://stackoverflow.com/questions/967327/how-can-i-get-the-delphi-ides-main-form">http://stackoverflow.com/questions/967327/how-can-i-get-the-delphi-ides-main-form</a> which I now have working. </p>
<p>I'd like to go one step further and place my designer on the same form as the Object Inspector, for those who use the classic undocked desktop layout and may have the Object Inspector on a different screen than the main Delphi IDE form.</p>
<p>Any ideas on how I find which monitor the Object Inspector is on from inside my design time package?</p>
http://stackoverflow.com/questions/967115/how-to-temporarily-turn-off-snap-to-anything-in-delphi-ide-visual-designer1How to temporarily turn off "snap-to" (anything) in Delphi IDE /visual designer (D2007)Jamo2009-06-08T21:25:31Z2009-06-09T10:30:36Z
<p>Every once in a while this drives me crazy: I want to move a control to some precise location, WITHOUT <em>any</em> kind of "snapping" -- snap-to-grid, snap-to-guidelines, snap-to-border, etc... and Delphi won't let me. Is there a key combination that one can use while dragging to temporarily turn off any and all "snapping"? I seem to recall it being available in D6, but can't for the life of me find a similar combination in D2007, short of going into Tools -> Options, etc... (which kind of defeats the purpose). </p>
http://stackoverflow.com/questions/967327/how-can-i-get-the-delphi-ides-main-form2How can I get the Delphi IDE's Main Form?Jeremy Mullin2009-06-08T22:24:35Z2009-06-09T07:17:30Z
<p>I'm writing a property editor for Delphi and I would like it to show up on the correct screen for multi-monitor support. In order to position it, I would like a reference to the "main" form for the Delphi IDE.</p>
<p>I've tried using the Application's MainForm property, and the Application object itself, but neither seems to work. I believe this is because the MainForm is actually the hidden TApplication instance referenced in this article by Nathanial Woolls (search for "application form"): </p>
<p><a href="http://www.installationexcellence.com/articles/VistaWithDelphi/Original/Index.html" rel="nofollow">http://www.installationexcellence.com/articles/VistaWithDelphi/Original/Index.html</a></p>
<p>Does anyone know how to get a handle to the visible main form for the IDE. I'm trying to avoid something cheesy like iterating all forms and searching for "CodeGear RAD Studio" in the caption. </p>