The custom-component tag has no wiki summary.
49
votes
1answer
10k views
Android - Writing a custom (compound) component
The Android app I'm currently developing has a main activity that has grown quite large. This is mainly because it contains a TabWidget with 3 tabs. Each tab has quite a few components. The activity ...
9
votes
1answer
423 views
Transparent TCustomControl?
I need to create transparent component inheriting from TCustomControl.. so it is custom painted, yet is container for other components.
Can you tell me how to achieve this?
9
votes
2answers
1k views
Is “implicitly imported” always a bad thing in Delphi packages?
Trying to rearrange my packages for a set of TFrame-descendent components, I'm finding it seemingly necessary to break out some of my utility TFrame descendents separate from the dialog forms which ...
9
votes
6answers
6k views
JSF Lifecycle and Custom components
There are a couple of things that I am having a difficult time understanding with regards to developing custom components in JSF. For the purposes of these questions, you can assume that all of the ...
8
votes
2answers
341 views
Is there a `ProgressButton`?
I could like to have a button that does double duty as a progress bar.
+
= ........
E.g. a button that fills up with a green background as the task progresses.
I know I can create my own, but ...
6
votes
2answers
397 views
How to implement find as you type on a TComboBox descendant [closed]
What is the correct way to implement the "find as you type" behavior on a TComboBox descendant component whose style is csOwnerDrawFixed?
5
votes
2answers
1k views
How can I define custom 'contentGroups' in a custom Flex 4 component?
The spark panel component for example can be written like this
<Panel title="Skinny">
<child components ... />
<controlBarGroup>
<child control bar components ... />
...
5
votes
3answers
4k views
“Cannot load package A, it contains unit X, which is also contained in package B”
(More package/component install fun for me -- thanks everyone for all your help to date).
I am getting the error listed as the title, in Delphi 2007. Package A is my package of frame-based "viewer ...
5
votes
3answers
1k views
How do I create a custom control with a sub-panel that accepts other controls at designtime?
I have written a custom control, that has several sub panels. I want these sub panels to accept any additional controls dropped on them at design time.
Unfortunately any control that gets dropped at ...
4
votes
1answer
225 views
JSF Custom Component: How to get attribute of <f:ajax />
I have written a custom component for jsf. The renderer extends com.sun.faces.renderkit.html_basic.ListboxRenderer. My component is in "javax.faces.SelectMany"-Family.
The code in jsf-page looks like ...
4
votes
3answers
560 views
In my custom component, how can I augment the mouse-enter and -leave events?
I am making a custom Panel component which derives TPanel.
I want for my new component to have some code executed on the OnMouseEnter and OnMouseLeave events, however, i do not know how to implement ...
3
votes
2answers
76 views
BizTalk Custom Pipeline Component System.OutOfMemoryException
I'm currently developing a BizTalk Custom Send Pipeline that accepts an xml file and converts it to Excel. Unfortunately, after deploying the pipeline, I'm receiving a System.OutOfMemoryException. ...
3
votes
1answer
58 views
Delphi 2009 not assigning events of custom components
I created a custom component TCustomHTTPReqResp inheriting from THTTPReqResp.
I did also create a custom event for this component. The only problem I'm having is that although the event is published ...
3
votes
1answer
130 views
JSF 2: Create a custom component with CommandButton and get attribute to ActionListener
I am new to Stack Overflow and have a question about JSF 2.0 and custom components (i use primefaces 3 too, buts not that important i think). Here is the situation: I have a nested data object of ...
3
votes
1answer
499 views
TextView resized to fit text
I'm working on a custom view to resize the text inside a textview so it'll fit (i don't want to ellipsize).
The trouble i'm having is that when changing the text size, the textview itself is not ...
3
votes
3answers
341 views
Java Swing Customize Controls
I want to know how to create a new Swing Control.
My problem resides on the lack of some components on Swing(datepicker for example)
I looked over Stack Overflow(and some others sites) and found ...
3
votes
3answers
247 views
Delphi custom components, using in project when tpropertyeditor is involved
i have a problem with running my project built in Delphi CodeGear containing my own components. They (the components) use propertyeditors, so I use designide.dcp, and this compiles well and the ...
3
votes
1answer
606 views
Installing component in dclusr.dpk breakes other components
First I've installed RX library 2.75 and some others.
Then I'm trying to install custom (not mine) component TMyLookupEdit which is derived from TRxLookupEdit.
I do it thru main menu -> Component -> ...
3
votes
1answer
1k views
Component Design - “File not found: 'DockForm.dcu”?
I am writing a component that requires the use of both the units
DesignIntf, DesignEditors
When i build my package, i get the error
File not found: 'DockForm.dcu'
When I add "designide.dcp" to ...
3
votes
2answers
1k views
Programmatically creating scrollview(s) from custom component in android
I'm trying to build a compound control in Android, containing (among other things) a ScrollView. Things go wrong when I try to view the control in Eclipse, crashing with a NullPointerException after ...
3
votes
2answers
495 views
Why do I get error “prefix [..] is not defined” when I try to use my jsf custom tag?
I created a jsf custom tag (I'm not sure that it's correct, I could miss something easily, so I attached code below).
Now I'm trying to use this tag but I get an error:
error on line 28 at ...
3
votes
2answers
1k views
Passing constructor parameters for MXML-based custom Flex components
I've implemented a MXML custom components and I would like to pass parameters to the constructor:
newUser = new userComp("name");
instead of using set methods.
Is this possible if the custom ...
3
votes
1answer
3k views
Using TOwnedCollection descendant in Delphi
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. ...
3
votes
2answers
3k views
Array Property, TList, TStringList, or TCollection, etc (Delphi Win32)
I am developing various components, and regularly run into the need to have a property that has a "one-to-many" relationship, component-to-property-member. The components are often visual components, ...
3
votes
3answers
869 views
Delphi visual component - moving away from TFrame base?
I have a visual component that I built from a TFrame (but then registered to the palette, etc); it works great and I loved being able to build it VISUALLY using the IDE.
I would now like to create a ...
2
votes
2answers
23 views
Android Custom shaped dialog
I am trying to create a custom shaped dialog in android. What I want is instead of it being rectangularly shaped, to have any shape I might want to create. Like put a custom background which is a png ...
2
votes
1answer
95 views
How should I provide an inner private non visual window (handle) a non visual VCL component?
This is a follow-up question.
My prior questions:
How to paste a custom format clipboard data into a TMemo?
Joining the Clipboard Chain Best practices?
My problem:
TComponent doesn't own a ...
2
votes
3answers
188 views
How to make subcomponent TAction-s available at design time?
In my custom component I created some TAction-s as subcomponents. They're all published, but I could not assign them at design time since they were not available through object inspector.
How do you ...
2
votes
0answers
24 views
Event Flow between Siblings Objects in Flex
I have a menubar and a custom component in my main application in Flex. On clicking a menu item in the menubar, I need a custom event to be raised which could be listened by the custom component as ...
2
votes
1answer
89 views
Delphi TCollection - Possible to prevent changing items in run-time?
Using delphi 7, I have a TCollection/TCollectionItem set of descendents. They are intended to be set up in Design-time only, and should never be modified in Run-time. How can I do this? Design-time ...
2
votes
2answers
197 views
How to pass the value Custom Component to the Managed Bean?
I have created a custom component. I add a dynamic input text box to it (from the encode function).
The component is correctly is rendered as HTML.
But I want to bind the value of the text box to ...
2
votes
3answers
47 views
What can I do to make my sub-derived custom control appear in the Blend Assets library?
I am creating a series of window mockup templates based on the excellent Mockups library available on CodePlex.
I'm using their BaseMockup as the base for my control as well, and I followed the same ...
2
votes
3answers
220 views
How do I create a custom floating Swing component without a JFrame?
I'd like to create a custom swing component such as a desktop widget which does not require a JFrame (or to extend it) to be printed on the screen.
I don't want to extend the JFrame because my ...
2
votes
1answer
329 views
Cannot find annotated custom JSF2 component in jar
We are migrating JSF1.2 to JSF2 application and I have bumped into a problem with custom components. We have a seperate jar with components, and in that jar I have this:
@FacesComponent(value = ...
2
votes
1answer
197 views
How to pass ArrayList/lists/iterables argument to a JSF1.2 custom components
I am trying to show a list of images from my backing bean
which has a function
public getImgList(){
return ArrayList<string>imgPathList;
}
Now this List has to be rendered to a ...
2
votes
3answers
350 views
Arrow key not working in component
I use the Gecko SDK, a component that allows you to view web pages.
I use this component to create an html editor.
This problem happens when going off editing web pages.
The problem is that the ...
2
votes
2answers
185 views
flex show multiple sections in a single progress bar
I need to show multiple sections in single progress bar where each component is of different color. Can any one suggest me any external component or any idea to implement this.
Thanks
Anji
2
votes
1answer
274 views
How to create a Folder (Directory) property editor for my component?
Delphi 2010
How to create a Folder (Directory) property editor for my component?
I was able to easily create one for a FileName property using:
TFileProperty = class(TStringProperty)
public ...
2
votes
1answer
592 views
Importing PHP code in Joomla Component development
Can't figure out how to import php files into my joomla component- all of these fail:
require_once('code.php');
require_once(dirname(FILE).DS.'code.php');
require_once(JPATH_COMPONENT.DS.'code.php' ...
2
votes
2answers
1k views
How to put MXML child nodes within a custom Flex 4 component?
Here is an example of a custom component. It is just a box with a title label and a close image (X):
<?xml version="1.0"?>
<mx:Canvas ... >
<s:VGroup>
<s:Label ...
2
votes
1answer
91 views
Problem Installing My custom component that uses dll
I created a TCustomComponent and i am having problem on installing it. Error Message "????.dll not found and cannot install package". but it work if you copy it to the system directory.
My question ...
2
votes
1answer
165 views
Code Editor in C#
i am writing a small app to manage code snippets , so i want a component to display the code (keyword coloring , lines numbering ...) , so where to get this component and if it doesnt exist how to ...
2
votes
2answers
121 views
Howto restart MSRS on changed files in Extended Datareader
I'm using Microsoft Reporting Services (SSRS) 2008 with an Extended Datareader/Dataset Provider (i.e. using a Datareader that I wrote myself and integrated it in SSRS). Everytime I have an update ...
2
votes
3answers
576 views
FLEX: UIComponent Click Handler?
Thanks for reading.
I'm trying to put a label and an image on a UIComponent, side-by-side. I want to use UIComponent for efficiency reasons, and the entire component is more complicated than just a ...
2
votes
1answer
593 views
Flex: linking dataProvider with custom itemRenderer in a DataGrid
Im working at a DataGrid which has a custom itemRenderer with a checkbox and a Label inside. Im struggling adding the the values from a xml to the wright label dynamically... how can I make the ...
2
votes
1answer
2k views
Extend Richfaces components - for example customize Datatable component for specific implementation
How to extend the functionality of Richfaces components for example Data table with custom header and sorting techniques. i have seen extended data table but did not get much information from it. ...
2
votes
3answers
3k views
Delphi 2009 - Set default property values in custom delphi components
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 ...
2
votes
3answers
819 views
Creating a custom form designer
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 ...
2
votes
4answers
2k views
Delphi “E2161 Error: RLINK32: Error opening file ________.drf ” during Build All
I am trying to resolve a problem with a set of packages that apparently have dependency issues. Occasionally during a Build All, I get this error:
Delphi "E2161 Error: RLINK32: Error opening file ...
2
votes
1answer
278 views
Frame inheritance and duplicate files in packages
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 ...