components

Removing the CENTER element from a JPanel using BorderLayout

Is there any way of removing the Component added to the CENTER of a JPanel with a BorderLayout, without having to reference the Component itself? ...

flash cs3 component problem

I have been using custom swc based components for my new flash game. I was nearly through with the engine development when I decided to update some of my placeholder graphics. I made the necessary changes only to find that my component wouldn't compile. I found this strange because I merely updated the graphics and some non-essential cod...

SSIS Script Component Store all rows

I have an SSIS script component which takes in rows from input. One of the rows on the input is a boolean which identifies if the row is of type A or B. How do I get the script to load all of the input rows into the correct collection of rows. Also any guides on how to use the row collections and then output them would be great too. ...

Best way to skin flash player

Is there a good pattern to creating a flash player that is easily skinned, providing different dimensions, buttons, background color, etc? I've considered 2 approaches: 1 The player skin is flat. The logos and buttons are on one large background image. The actual trigger areas are transparent sprites, positions and dimensions defined by...

Is it commonplace/appropriate for third party components to make undocumented use of the filesystem?

Hello, I have been utilizing two third party components for PDF document generation (in .NET, but i think this is a platform independent topic). I will leave the company's names out of it for now, but I will say, they are not extremely well known vendors. I have found that both products make undocumented use of the filesystem (i.e. pu...

silverlight - reusing components

I am trying to create some reusable components in Silverlight2. The difficulty comes when my components are using templates/styles that are shared with other components. From what I know, in silverlight you can add the style/template in the component itself (not good enough due to duplicate styles) or in the main app file (this does n...

.NET Licensing Components

I'm looking for not too intrusive to the end user and decently priced .NET Licencing components. Especially something allows serial key and time based expiration. Any recommendations? ...

options in dbgrid or combobox in dbgrid

Hello I want to give 3 options for a column in a DBGrid. How to achieve this. How to drop and incorporate a combobox for the same in dbgrid. regards sridhar ...

How to draw on a TPanel

I need to draw on a TPanel, ideally directly so I don't have another component on top of it getting in the way of mousevent-event trapping (I want to draw a little "size-grip" on it). How should I go about doing this? ...

as3 swc component preview through code

I am developing an as3 swc-based component that populates its contents entirely through actionscript in the constructor (e.g. sprite.graphics.lineTo...). When I drag the component onto the stage, it is empty. If I export my movie, everything works perfectly, but I also need the live preview to work. I could get around this with a placeho...

Delphi component spTbxToolbar skin change.

How to change in runtime by code (not for groupskintype), the skin type for a sptbxtoolbar component. Thaks in advanced. Golo ...

Flex custom components

Hello, I red I can create "MXML components" and "AS3 components". The two methods use an existing component as their bases. The question: what if I can't extend any of the existing component (because I need something totally different)? Do I have to create the component from scratch using the (commercial) Flash authoring environment? ...

Drawing component diagrams in TinyUML

Hi Folks, I am working on extending a small application that uses the 'dot' tool to draw UML class and state diagrams, to implement component diagrams (I am running into a lot of problems accommodating the UML 2.x notation for the same). I intend to display the interfaces that a particular component requires and provides through the ...

Game framework architecture - view components or MVC?

I'm trying to build a very light re-usable framework for my games, rather than starting from scratch each time I start a game. I have a component driven architecture - e.g. Entity composes a Position component and a Health component and Ai component etc. My big question is whether my model composes view components to allow for more tha...

Delphi components to use with SQlite

What components can I use to use SQlite database with delphi 6 Thanks ...

Flash CS3 swc components live preview problems

Whenever I create custom swc-based components in flash cs3, the live preview doesn't display correctly. The preview is always off-center from the component. Whenever I rotate the component, the preview becomes very skewed and sometimes disappears. Is there any way to get the preview to align correctly with the component as well as res...

Adding icon to Flex color picker

Hi , I want to add an icon to the color picker component which will have the value of no color (a blank rectangle) . is ther a way to do it ? Thanks ...

ImageGrid component or something like that

Hello, I'm writing a Client for an online game in C#.The client(Game) has inventory: The 42 blocks in left and the 12 blocks in right must contain images of the "virtual items" that the "virtual character" contains. I added 54 panels(42 left+12 right) on top of every single block with the idea to use the BackGroundImage property to ...

Intellisense-like .Net Component?

Hello there, does anyone know of any 3rd party component that provides an intellisense like functionality (providing my own library of course) that I could use in my (custom) text editor in order to improve usability? Cheers & thanks, -J ...

How do I populate required parameters in a custom MXML tag?

Here's the Class: package fnc { import mx.containers.Canvas; public class Deck extends Canvas { protected var _chipCount:int; public function Deck(chipCount:int) { /* Associate some chips with this deck */ _chipCount = chipCount; } public function get chipCount():int { ...