active questions tagged customcomponents - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T20:10:31Zhttp://stackoverflow.com/feeds/tag/customcomponentshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789752/how-to-prevent-itemeditor-destruction0how to prevent itemeditor destruction?Giorgio Gelardi2009-11-24T12:23:07Z2009-11-24T12:23:07Z
<p>My custom item editor opens a titlewindow (too much stuff to show in an inline editor) which obviously steal the focus, so I get a itemeditend event and the datagrid destroy the editor at the wrong (for me) time. I think to have to keep the itemeditor alive until the titlewindow job is done, but how? DataGridEvent reason is "other" and livedocs said preventDefault() <a href="http://livedocs.adobe.com/flex/3/html/celleditor%5F7.html#196893" rel="nofollow">can't help</a>.
Any idea?</p>
http://stackoverflow.com/questions/1720678/how-to-put-my-component-in-a-new-group-in-visual-studio-toolbox1How to put my component in a new group in Visual Studio toolbox?Hemant2009-11-12T08:11:47Z2009-11-12T09:52:58Z
<p>I have created a component and it is automatically shown in toolbox when I open the solution. It can be placed on form, I can change properties etc.</p>
<p>When I close the solution and install it in toolbox (choose toolbox item menu), I want this component to be shown in a different group (other than "All Windows Forms" group). How can I do it?</p>
<p>EDIT: I want my components to be shown in a custom group such as "My Components".</p>
http://stackoverflow.com/questions/1709535/getting-handles-to-dynamically-generated-flex-components0Getting handles to dynamically-generated Flex componentscookiecaper2009-11-10T17:04:24Z2009-11-10T17:15:08Z
<p>I have a Flex application which references a separate MXML file as a template for a custom component. I create instances of the component dynamically several times in my program, but I need to get a handle that will allow me to modify that instance of the component as desired. </p>
<p>I pass specific information to this component on instantiation using bindable public variables in the component's MXML file. I add it to my main program using addChild(). </p>
<p>I want to update the component's progressbar as necessary and I want to remove it from the box to which I addChild'd it. </p>
<p>What's the easiest/best way to get a variable that will give me predictable access to each component so I can easily manipulate the components as necessary? Some research suggests creationComplete, but I decided it was faster to just ask than to go through lots of different experiments and come up blank.</p>
<p>Thanks for all the help. : )</p>
http://stackoverflow.com/questions/1633468/flex-datagrid-row-group-headers1Flex DataGrid, Row Group Headers.maclema2009-10-27T20:29:18Z2009-11-04T00:13:08Z
<p>I am trying to extend the DataGrid to allow headers for different groups of rows. However, I cannot figure out which method to extend from DataGrid that would allow me to accomplish this.</p>
<p>I do not want the headers to be included in the dataProvider, only the rows. I want to specify indexes to insert the headers at using a property of the custom datagrid. </p>
<p>Here is a quick photoshop showing what I am trying to do:
<img src="http://www.maclema.com/groupheaders.png" alt="Example" /> </p>
<p>Is there any custom component already built that will do this?</p>
<p>If not, does anyone know how I would go about doing this?</p>
<p>Thanks,</p>
<p>Matt</p>
http://stackoverflow.com/questions/1640922/to-restrict-size-of-components-at-design-time-codegear-c-builder1To restrict size of components at design time: CodeGear C++ BuilderGeorgie2009-10-29T00:06:35Z2009-10-29T21:48:18Z
<p>Hi, </p>
<p>I am trying to inherit from TButton in order to provide some size aware capabilities, where the buttons are able to resize themselves and/or their font size (within certain constraints) to allow for changes in text</p>
<p>e.g.</p>
<p>| small | </p>
<p><em>or</em></p>
<p>| this is a really long |<br />
| sentence on a button |</p>
<p>could happily be the same button on the same form, all I've done is reset the text and the button copes with the size change itself.</p>
<p>I've implemented all the text measuring functions, and the functionality works <em>to a point</em>.</p>
<p>what I have done is create new properties maxHeight, minHeight, defaultHeight and so forth for Width and Font.</p>
<p>When the user changes the default height, my design time component will change and reflect this new default height.</p>
<p>When the user uses the normal Height & Width properties however (or drags the corner) I don't know how to tie them to the default height and width.</p>
<p>I intercepted OnCanResize and created an event handler and tried to confirm that the new size is within the min max. If it's not, set to the min or max as required, but if within the boundaries then update. I am able to intercept runtime resize events, but not design time.</p>
<p>If it is possible to intercept the design time resizes, does anyone know how? </p>
<p>sorry if that's a bit long-winded, hope it makes sense!</p>
http://stackoverflow.com/questions/1644995/flex-3-embedding-movieclip-symbol-to-image-control-programmatically0Flex 3: Embedding MovieClip Symbol to Image Control programmaticallyBlueDude2009-10-29T16:36:41Z2009-10-29T17:22:33Z
<p>I've reviewed all the documentation and Google results surrounding this and I think I have everything setup correctly. My problem is that the symbol is not appearing in my app. I have a MovieClip symbol that I've embedded to my Flex Component. I need to create a new Image control for each item from my dataProvider and assign this embedded symbol as the Image's source. I thought it was simple but apparently not. Here's a stub of the code:</p>
<pre><code>[Embed(source="../assets/assetLib.swf", symbol="StarMC")]
private var StarClass:Class;
protected function rebuildChildren():void {
iterator.seek( CursorBookmark.FIRST );
while ( !iterator.afterLast ) {
child = new Image();
var asset:MovieClipAsset = new StarClass() as MovieClipAsset;
(child as Image).source = asset;
}
}
</code></pre>
<p>I know the child is being created because I can draw a shape and and that appears. Am I doing something wrong? Thank you!</p>
http://stackoverflow.com/questions/1498402/facelet-custom-component-prevent-rendering-uiinsert-content-in-custom-componen1Facelet Custom Component - prevent rendering ui:insert content in custom componentigor.beslic2009-09-30T14:16:59Z2009-10-06T15:57:08Z
<p>Hi, this is my custom component definition:</p>
<pre><code><ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:fn="http://java.sun.com/jsp/jstl/functions">
<c:if test="${empty required}">
<c:set var="required" value="false" />
</c:if>
<c:if test="${empty disabled}">
<c:set var="disabled" value="false" />
</c:if>
<c:if test="${not disabled}">
<div id="#{id}DIV">
<label for="#{id}" class="portlet-form-label">${label}</label>
<ui:insert name="field" />
<c:if test="${required}">*</c:if>
<strong class="portlet-msg-error" style="display: none;"><h:message for="#{id}" /></strong>
</div>
</c:if>
</ui:composition>
</code></pre>
<p>this is how I use it:</p>
<pre><code><my:editLineInsert id="itSIN" label="#{label['label.stocks.income']}" tip="#{label['message.default.tooltip']}" disabled="#{engine.disabled['itSIN']}" required="#{engine.required['itSIN']}" >
<ui:define name="field">
<h:inputText id="itSIN" value="#{order.income}" disabled="#{engine.disabled['itSIN']}" required="#{engine.required['itSIN']}" >
<f:converter converterId="javax.faces.BigDecimal" />
<f:validator validatorId="V12DGS6DECS" />
</h:inputText>
</ui:define>
</my:editLineInsert>
</code></pre>
<p>I have trouble with <code><ui:insert name="field" /></code>. It renders ALWAYS. If disabled=true I got just <code><input type="text" disabled="disabled" value="" name="itSIN" id="itSIN"/></code> element at the top of view. NOTE: I use ui:insert to pass jsf component because I have no clue how to pass validators to an h:inputText inside custom component.</p>
http://stackoverflow.com/questions/1215289/delphi-e2161-error-rlink32-error-opening-file-drf-during-build-all2Delphi "E2161 Error: RLINK32: Error opening file ________.drf " during Build AllJamo2009-07-31T23:00:06Z2009-09-30T20:15:16Z
<p>I am trying to resolve a problem with a set of packages <a href="http://stackoverflow.com/questions/1191602/cannot-load-package-a-it-contains-unit-x-which-is-also-contained-in-package-b">that apparently have dependency issues</a>. Occasionally during a Build All, I get this error: </p>
<p>Delphi "E2161 Error: RLINK32: Error opening file <strong>____</strong>.drf " </p>
<p>What does it mean / indicate, and what is a "drf" file?</p>
http://stackoverflow.com/questions/1487312/visual-studio-designer-problem-with-custom-component-selection-change0Visual Studio Designer: problem with custom component selection changenightcoder2009-09-28T14:21:28Z2009-09-28T14:21:28Z
<p>I have a component derived from IComponent (also tried to derive from Component)</p>
<p>The problem:<br />
If I have 2 my custom components on the form, and one of them is selected, then I can't straightly select another my component, I have to click on something else first. Changing selection between my component and any another component (for example System.Windows.Forms.Timer) goes without any problems in both directions.</p>
<p>What can be the problem?</p>
<p>Any help is highly appreciated.</p>
<p>PS. VS 2008.</p>
http://stackoverflow.com/questions/1476371/android-writing-a-custom-compound-component4Android - Writing a custom (compound) componentTom van Zummeren2009-09-25T09:35:35Z2009-09-25T12:40:05Z
<p>The Android app I'm currently developing has a main activity that has grown quite large. This is mainly because it contains a <code>TabWidget</code> with 3 tabs. Each tab has quite a few components. The activity has to control of all those components at once. So I think you can imagine that this Activity has like 20 fields (a field for almost every component). Also it contains a lot of logic (click listeners, logic to fill lists, etc).</p>
<p>What I normally do in component based frameworks is to split everything up into custom components. Each custom component would then have a clear responsibility. It would contain it's own set of components and all other logic related to that component.</p>
<p>I tried to figure out how this can be done, and I found something in the Android documentation what they like to call a "Compound Control". (See <a href="http://developer.android.com/guide/topics/ui/custom-components.html" rel="nofollow">http://developer.android.com/guide/topics/ui/custom-components.html</a> and scroll to the "Compound Controls" section) I would like to create such a component based on an XML file defining the view structure.</p>
<p>In the documentation it says:</p>
<blockquote>
<p>Note that just like with an Activity,
you can use either the declarative
(XML-based) approach to creating the
contained components, or you can nest
them programmatically from your code.</p>
</blockquote>
<p>Well, that's good news! The XML-based approach is exactly what I want! But it doesn't say how to do it, except that it is "like with an Activity"... But what I do in an Activity is call <code>setContentView(...)</code> to inflate the views from XML. That method is not available if you for example subclass <code>LinearLayout</code>.</p>
<p>So I tried to inflate the XML manually like this:</p>
<pre><code>public class MyCompoundComponent extends LinearLayout {
public MyCompoundComponent(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.my_layout, this);
}
}
</code></pre>
<p>This works, except for the fact that the XML I'm loading has <code>LinearLayout</code> declared as the root element. This results in the inflated <code>LinearLayout</code> being a child of <code>MyCompoundComponent</code> which itself already is a <code>LinearLayout</code>!! So now we have a redundant LinearLayout in between <code>MyCompoundComponent</code> and the views it actually needs.</p>
<p>Can somebody please provide me with a better way to approach this, avoiding having a redundant <code>LinearLayout</code> instantiated?</p>
http://stackoverflow.com/questions/1447365/tform-property-thats-an-array-or-collection-of-tframe-descendants0TForm property that's an array (or collection) of TFrame descendantsJamo2009-09-19T00:50:00Z2009-09-19T06:33:43Z
<p>I am exploring <a href="http://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win32">this subject</a> again, from a slightly different angle than before: </p>
<p>I have TForm descendant which is used in a couple of other components as a dialog, that I'd like to add as a property an array of counted TFrame descendants. </p>
<p>What multi-item property approach should I use for this? (Array, TList, TObjectList, TCollection, TOwnedCollection, etc). </p>
<p>(I'd also love to know, conceptually, "why")</p>
http://stackoverflow.com/questions/1447384/using-tcollection-with-an-already-defined-class0Using TCollection with an already-defined classJamo2009-09-19T01:00:01Z2009-09-19T06:22:35Z
<p>(Note: This is somewhat related to <a href="http://stackoverflow.com/questions/1447365/tform-property-thats-an-array-or-collection-of-tframe-descendants">my last question</a>).</p>
<p>I am new to using TCollection in Delphi, and am still wrapping my head around <a href="http://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win32">the various ways</a> to handle one-to-many class/property-item relationships. Exploring TCollection and TCollectionItem, I ran into a couple questions: </p>
<p>1) Is it possible to use TCollection or TOwnedCollection for a TForm property? (Haven't tried it yet, but am wondering in advance if its built-in Object Inspector capacities will cause problems).</p>
<p>2) If one ever wants to use some already-defined-elsewhere class, which can't directly descend from TCollectionItem, with TCollection (i.e. kind of "as" a "TCollectionItem"), can that be accomplished? If so, is that something one would accomplish via interfaces?... or what would be the best approach?</p>
http://stackoverflow.com/questions/1429953/when-to-install-vs-when-to-just-build-visual-component-packages-that-are-part1When to Install, vs. when to just build, visual component packages that are part of a larger projectJamo2009-09-15T22:26:58Z2009-09-15T22:37:22Z
<p><strong>Context:</strong></p>
<p>I have been working on and off on an application which uses a number of custom frames-based components (which folks around here have been <a href="http://stackoverflow.com/questions/1215664/is-implicitly-imported-always-a-bad-thing-in-delphi-packages">super</a> <a href="http://stackoverflow.com/questions/1191602/cannot-load-package-a-it-contains-unit-x-which-is-also-contained-in-package-b">helpful</a> <a href="http://stackoverflow.com/questions/1039947/frame-inheritance-and-duplicate-files-in-packages">with</a> as I've been learning!). </p>
<p>Since I am modifying the visual component that the app uses very often, and those components are fairly numerous and interrelated (quite a bit of inheritance going on, etc), I'd like to streamline the modify/build process as much as possible. </p>
<p><strong>Question:</strong></p>
<p>When is it necessary to actually <em>install</em> a visual component package, vs. just <em>building</em> (or only "compiling"?) the EXE project which uses and references those components? Do I only need to truly "re-install" a package to the palette when I change a member that would be affect the Object Inspector? Any conceptual guidance here would most welcome.</p>
<p>Thanks again, in advance. : )</p>
http://stackoverflow.com/questions/1343409/delphi-2009-set-default-property-values-in-custom-delphi-components2Delphi 2009 - Set default property values in custom delphi componentsRafe2009-08-27T19:49:14Z2009-08-28T12:20:09Z
<p>This should be very simple but I can't find the exact answer I want. I have a custom delphi control based on TSpeedButton. I want the Caption Property of the SpeedButton to always be 'Comments' but I don't want to set it at run-time I want to set it in the component itself so that when I place it on my form it's already populated with this text. I also want to set the height and width of the button but I imagine the method for doing this will be the same as for setting the caption.</p>
<p>For the sake of completeness, here is the component code:</p>
<pre><code>unit CustomSpeedButton;
interface
uses
SysUtils, Classes, Controls, Buttons;
type
TCustomSpeedButton = class(TSpeedButton)
private
FCommentText: string;
FCommentTitle: string;
procedure SetCommentText(const Value: string);
procedure SetCommentTitle(const Value: string);
{ Private declarations }
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
property CommentTitle: string read FCommentTitle write SetCommentTitle;
property CommentText: string read FCommentText write SetCommentText;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Standard', [TCustomSpeedButton]);
end;
{ TCustomSpeedButton }
procedure TCustomSpeedButton.SetCommentText(const Value: string);
begin
FCommentText := Value;
end;
procedure TCustomSpeedButton.SetCommentTitle(const Value: string);
begin
FCommentTitle := Value;
end;
end.
</code></pre>
http://stackoverflow.com/questions/1338201/delphi-2009-pass-component-name-onclick-event-then-set-property0Delphi 2009: Pass component name onclick event then set propertyRafe2009-08-26T23:59:22Z2009-08-27T06:24:52Z
<p>I have a custom component of type TSpeedButton that has two extra properties defined:</p>
<pre><code>CommentHeading: string;
CommentText: string;
</code></pre>
<p>I set CommentHeading at design time. </p>
<p>When the speed button is pressed a memo is shown with a button beneath it for saving its contents. The procedure that handles this:</p>
<pre><code>procedure CustomSpeedButton1Click(Sender: TObject);
begin
Receiver := CustomSpeedButton1.Name; // possibly used to save the memo text back to this speedbuttons property after comments are submitted
ViewComments(CustomSpeedButton1.CommentTitle,CustomSpeedButton1.CommentText);
end;
</code></pre>
<p>And the ViewComments procedure itself:</p>
<pre><code>procedure ViewComments(comment_caption:string; comment_text:string);
begin
label15.Hide; // label showing editing in progress, hidden until user begins typing
Button1.Enabled := false; // the button for saving the memo text, hidden until user begins typing
CommentsBox.Visible := true; // pop up the comment box at the bottom of the form
CommentsBox.Caption := 'Comments: ' + comment_caption;
CommentsMemo.Text := comment_text; // if there are existing comments assign them to memo
end;
</code></pre>
<p>The contents of the memo need to be assigned to the CommentText property of the custom SpeedButton. </p>
<p>What I was initially thinking was that I could pass the component name to a variable when the custom SpeedButton gets pressed and then retrieve that name when the save button on the memo is pressed and use it to assign the memo text to the speedbuttons CommentText property. But then I realized that to do this I'd have to use some kind of case..of statement that checked for each possible speedbutton name and then assign the memo value to its properties and this just seems ridiculously tedious. </p>
<p>Is there an easier way to assign the memo text to the speedbutton that opened the memo to begin with?</p>
http://stackoverflow.com/questions/1248357/creating-a-custom-form-designer2Creating a custom form designerHarriv2009-08-08T08:31:33Z2009-08-10T08:35:20Z
<p>I'd like to create a custom "datamodule" in Delphi, a TDataModule like (maybe inherited) class which would have a custom grid based design interface (one component per line, some properties as columns). Is this possible? Where should I start?</p>
<p>I'm currently using Delphi 2007.</p>
http://stackoverflow.com/questions/1224858/are-topcoder-components-or-applications-quality-products0Are TopCoder Components or Applications Quality Products?David Glass2009-08-03T22:04:26Z2009-08-04T14:50:56Z
<p>Does anyone have experience with buying or using any <a href="http://www.topcoder.com/" rel="nofollow">TopCoder</a> components or applications and do they seem like they are useful and worth the money?</p>
http://stackoverflow.com/questions/1191602/cannot-load-package-a-it-contains-unit-x-which-is-also-contained-in-package-b3"Cannot load package A, it contains unit X, which is also contained in package B" Jamo2009-07-28T02:08:07Z2009-07-31T22:13:16Z
<p>(More package/component install fun for me -- thanks everyone for all your help to date). </p>
<p>I am getting the error listed as the title, in Delphi 2007. Package A is my package of frame-based "viewer panels." Package B is a package containing a couple of components that are used to show information about datasets linked to a gven database (their SQL, state, class type, etc), one of which is a non-visual component (we'll call it the Inspector) which creates and calls a form showing that information. Unit X is the unit of that form.</p>
<p>I added the Inspector component to one of my viewer panels in Package, but have since deleted it, and cannot find any reference to it in View Source for the project, nor in the unit of the frame-based viewer panel I added it to. Where is the reference hiding?</p>
<p>Also, what would make adding that Inspector component to one of the view panel frames (which also get installed as registered components), cause this problem? </p>
<p>This is likely related to <a href="http://stackoverflow.com/questions/1113013/how-to-diagnose-cannot-access-package-information-error-in-delphi-ide">this previous question</a> and <a href="http://stackoverflow.com/questions/667746/delphi-package-build-install-debugging">this one</a> as well, but I decided to start fresh with this specific symtpom / issue, just to keep it succinct and clear, and hopefully thus useful to someone else later. Thanks in advance for any and all help. </p>
<p><hr /></p>
<p>Update:</p>
<p>Thanks to Loren, I was able to find and remove the USES reference that remained and was causing the problem. HOWEVER, I'm still not clear on how to accomplish what I'm trying to accomplish. : \ Here's the latest:</p>
<p>The Inspector is a simple non-visual component which contains a DataSet property, and an internal "Info Form." Calling a ShowInfo method creates the form, and populates it with various information related to the linked DataSet. I'm wanting to used it to debug the SQL driving the viewers.</p>
<p>As mentioned above, the Inspector is contained in Package B. The viewers are in Package A. I want to use the Inspector component on some of the TFrame descendents (which register as true palette components). When I drop that component on the given TFrame however to use it, and compile/install Package A, I get the "Cannot load package A, it contains unit X, which is also contained in package B" error. It's now clearly the cause, and I can re-create the problem on demand.</p>
<p>moobaa's suggestion below makes sense, and yet it <em>seems</em> that even though I am trying to do approach #2 of what he suggest, it does not work. What am I missing? It seems like this should be doable, and in fact it seems like most packages I've seen use other installed packages all the time (included the VCL itself). </p>
<p>Note: Package B does not depend on Package A, as far as I can tell (and I've installed it stand alone, so that seems to agree). </p>
<p>(BTW, are there any tools to "chart out" package dependencies like this? I'm using D2007)</p>
<p>As always, thanks for your time and help.</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/1176677/delphi-2006-loses-component-package1Delphi 2006 loses component packageRalph Rickenbach2009-07-24T09:47:26Z2009-07-24T11:24:09Z
<p>Delphi 2006, whenever started afresh, loses component package. This happens on a daily bases. We have component packages with custom VCL components that we wrote ourselves. When starting up Delphi 2006, nothing is noted. But as soon as I open a form that has some of these components on it, I receive</p>
<blockquote>
<p><strong>bds.exe - Unable To Locate Component</strong></p>
<p>This application has failed to start
because DclOpusRep2006.bpl was not
found. Re-installing the application
may fix this problem.</p>
</blockquote>
<p>When I then try to reinstall the component package, two things might happen:</p>
<ol>
<li>I get an empy list of design packages and have to go to regedit to delete the package in question before being able to add it anew.</li>
<li>I get the list of design packages allright and it does show me the package in question as loaded and available.</li>
</ol>
<p>The package is alsways available on a local drive, yet not the one Delphi resides on. Any ideas in troubleshooting?</p>
<p>Just to clarify my problem based on first answer: I am the sole developer on this project. The library has been installed from the same location it still resides and the path in the component packages list is correct.</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/1134604/why-wont-my-facelets-loop-variable-go-out-of-scope0Why won't my Facelets loop variable go out of scope?Nick2009-07-15T23:13:24Z2009-07-16T14:15:30Z
<p>Hi! I know this looks like a lot of text, but I think it's a pretty simple concept I'm missing.</p>
<p>I'm writing a web application with Facelets. I've got a custom tag rq:request-list that takes a list of requests as a parameter and outputs a lovely table to display them. So far, so good.</p>
<p>rq:request-list starts out like you'd expect:</p>
<pre><code><!-- ... -->
<ice:dataTable value="#{list}" var="req">
<ice:column>
<f:facet name="header">Date last edited</f:facet>
<ice:outputText value="#{req.dateModified}" />
</ice:column>
<!-- ... -->
</code></pre>
<p>And that turns out just fine. It even has a link in the table to edit the request. Yippee!</p>
<pre><code><ice:column rendered="#{spokespersonView}">
<f:facet name="header">Edit</f:facet>
<h:commandLink value="Edit" action="edit_r" rendered="#{RequestSessionBean.mutable}">
<f:setPropertyActionListener target="#{RequestSessionBean.request}" value="#{req}"/>
</h:commandLink>
</ice:column>
</code></pre>
<p>That takes us to the editing page, after setting the request in the backing bean to the one represented by the table row we're at. This is where the problem's at. And it's subtle.</p>
<p>rq:request-list is used several times in one page; as such:</p>
<pre><code><ui:repeat value="#{ExperimentListBean.usersExperiments}" var="exp">
<rq:request-list list="#{RequestListBean.requestsByExperiment[exp]}" showExperiment="false" spokespersonView="true" />
</ui:repeat>
</code></pre>
<p>Now the tables <em>appear</em> OK; that is, all the text is right. However, the commandLinks point to the wrong Requests ... they point to the Request of the corresponding row of the <em>last</em> rq:request-list on the page. The data pertaining to the Requests is outputted as it should be in the table, but {req} points to the wrong request when it comes to clicking on a commandLink.</p>
<p>To reiterate, if I have a few rq:request-lists on a page, the Edit link for the first row of <strong>every</strong> rq:request-list points to the first request (row) in the last rq:request-list on the page. The Edit link for the second row of <strong>every</strong> rq:request-list points to the second request (row) of the last rq:request-list on the page. Etc.</p>
<p>How can I get {req} to point to what I it was, and not just be an index in a list that is outdated?</p>
<p>Thanks!</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/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/1050724/using-tcollection-in-delphi2Using TCollection in DelphiHarriv2009-06-26T19:09:15Z2009-06-26T19:30:45Z
<p>I'm trying to create a custom component with a collection property. However if I try to open the collection editor during design time by clicking "..." button in object inspector, nothing happens. What I am missing?</p>
<p>Here's my TCollection descendant:</p>
<pre><code> TMyCollection = class(TOwnedCollection)
private
function GetItem(Index: Integer): TMyCollectionItem;
procedure SetItem(Index: Integer; const Value: TMyCollectionItem);
public
function Add : TMyCollectionItem;
property Items[Index: Integer]: TMyCollectionItem read GetItem write SetItem;
end;
</code></pre>
<p>And the item:</p>
<pre><code> TMyCollectionItem = class(TCollectionItem)
private
FValue: integer;
protected
function GetDisplayName: string; override;
public
procedure Assign(Source: TPersistent); override;
constructor Create(Collection: TCollection); override;
destructor Destroy; override;
published
property Value : integer read FValue write FValue;
end;
</code></pre>
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/903327/how-windows-or-other-oses-update-clients-background-area0How Windows (or other OSes) update client's background area?Nick D2009-05-24T08:22:53Z2009-05-24T20:09:50Z
<p>Or to ask it another way, how OnEraseBkgnd() works?</p>
<p>I'm building a custom control and I hit on this problem.<br><br> Childs are rectangles, as usual. I had to <em>disable</em> OnEraseBkgnd() and I use only the OnPaint().<br> What I need is to <strong>efficiently clear the area behind the childs</strong> and without flickering.<br><br> Techniques like using <em>back buffers</em> are not an option.<br><br></p>
<p><strong>Edit</strong>: I am very interested in the algorithm that's under the hood of OnEraseBkgnd(). But any helpful answer will also be accepted.</p>
http://stackoverflow.com/questions/870862/delphi-compiler-warnings-pointing-to-delphis-own-units0Delphi compiler warnings pointing to Delphi's own unitsJamo2009-05-15T21:03:16Z2009-05-17T21:29:09Z
<p>In Delphi 2007, working on a project which includes a custom component, I'm getting this set of warnings as the first four in Messages when I do a full build (but not when I do a straight compile):</p>
<pre><code>[DCC Warning] Dialogs.pas(1426): W1002 Symbol 'TFileOpenDialog' is specific to a platform
[DCC Warning] Dialogs.pas(1446): W1002 Symbol 'TFileSaveDialog' is specific to a platform
[DCC Warning] ComCtrls.pas(6757): W1036 Variable 'Section' might not have been initialized
[DCC Warning] ComCtrls.pas(19268): W1023 Comparing signed and unsigned types - widened both operands
</code></pre>
<p>I generally try to eliminate compiler warnings where I can, but these are "stock" Delphi units. Are these warnings the indirect result of something in my code? If so, how do I figure out what/where? If not, what should I do about them?</p>
http://stackoverflow.com/questions/848674/delphi-component-not-painted0Delphi Component Not PaintedDumitru2009-05-11T15:34:41Z2009-05-14T10:04:37Z
<p>Hi all,</p>
<p>I have component (descendat of TPanel) where I implemented Transparency and BrushStyle (using TImage) properties.</p>
<p>All it's ok when I have one component of this type on the form. Bun when I pun on the form more components of this type only first visible component is painted. When form is moved and first component is under other window or outside desktop next component is painted.</p>
<pre><code>unit TransparentPanel;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, stdctrls;
type
TTransparentPanel = class(TPanel)
private
FTransparent: Boolean;
FBrushStyle: TBrushStyle;
FImage: TImage;
procedure SetTransparent(const Value: Boolean);
procedure SetBrushStyle(const Value: TBrushStyle);
protected
procedure CreateParams(var Params: TCreateParams); override;
procedure Paint; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Transparent: Boolean read FTransparent write SetTransparent default
True;
property BrushStyle: TBrushStyle read FBrushStyle write SetBrushStyle default
bsBDiagonal;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('TransparentPanel', [TTransparentPanel]);
end;
constructor TTransparentPanel.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FTransparent := True;
FBrushStyle := bsBDiagonal;
FImage := TImage.Create(Self);
FImage.Align := alClient;
FImage.Parent := Self;
FImage.Transparent := FTransparent;
end;
procedure TTransparentPanel.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
if ((not (csDesigning in ComponentState)) and FTransparent) then
Params.ExStyle := Params.ExStyle or WS_EX_TRANSPARENT;
end;
destructor TTransparentPanel.Destroy;
begin
if Assigned(FImage) then
FreeAndNil(FImage);
inherited Destroy;
end;
procedure TTransparentPanel.Paint;
var
XBitMap,
BitmapBrush: TBitmap;
XOldDC: HDC;
XRect: TRect;
ParentCanvas: TCanvas;
begin
{This panel will be transparent only in Run Time}
if (csDesigning in ComponentState) or (not FTransparent) or (FBrushStyle in [bsClear, bsSolid]) then
inherited Paint
else
begin
XRect := ClientRect;
XOldDC := Canvas.Handle;
XBitMap := TBitmap.Create;
BitmapBrush := TBitmap.Create;
try
XBitMap.Height := Height;
XBitMap.Width := Width;
Canvas.Handle := XBitMap.Canvas.Handle;
inherited Paint;
RedrawWindow(Parent.Handle, @XRect, 0,
RDW_ERASE or RDW_INVALIDATE or
RDW_NOCHILDREN or RDW_UPDATENOW);
BitmapBrush.Width := FImage.Width;
BitmapBrush.Height := FImage.Height;
BitmapBrush.Canvas.Brush.Color := clBlack;
BitmapBrush.Canvas.Brush.Style := FBrushStyle;
SetBkColor(BitmapBrush.Canvas.Handle, clWhite);
BitmapBrush.Canvas.FillRect(BitmapBrush.Canvas.ClipRect);
FImage.Canvas.Draw(0, 0, BitmapBrush);
finally
Canvas.Handle := XOldDC;
Canvas.BrushCopy(XRect, XBitMap, XRect, Color);
XBitMap.Free;
BitmapBrush.Free;
end;
end;
end;
procedure TTransparentPanel.SetBrushStyle(const Value: TBrushStyle);
begin
if (FBrushStyle <> Value) then
begin
FBrushStyle := Value;
Invalidate;
end
end;
procedure TTransparentPanel.SetTransparent(const Value: Boolean);
begin
if (FTransparent <> Value) then
begin
FTransparent := Value;
FImage.Transparent := Value;
Invalidate;
end;
end;
end.
</code></pre>
<p>What is wrong?</p>
http://stackoverflow.com/questions/775561/distributing-a-design-time-package-w-third-party-ui-elements1Distributing a design-time package w/third-party UI elementsJamo2009-04-22T03:05:31Z2009-04-22T05:49:45Z
<p>Now that I am learning more about design time aspects of component development, I have what may turn out to be a couple of IDE "plugins" targeting Delphi 2007 (+ others if compatible).</p>
<p>The forms / UI for these, ideally, will utilize some of the third party components I use regularly. Assuming the licensing is okay to distribute those components for an IDE plugin, etc., what do I need to do differently to prepare the distribution package, as compared to from what one would do on a package with "full source"? </p>
<p>(I hope this question makes sense. Please be kind and ask questions if not).</p>