components

Flex resizing Canvas where to put such code ? (diagram inside)

Hi all, I have two Canvas A and B, A is the child of B. A can be resized by some user actions like adding some UI components to its base. A is bounded by an other Parent canvas B which should show scolling handles if its child A gets too large. I would like A to have the same width and height of B (or really close) while the calculated...

Are there OpenOffice.org export components for Delphi (non-OLE)?

For document exchange, I would like to generate OpenOffice.org text and spreadsheet documents. So far I have found export components which require OpenOffice to be installed, using OLE. Are there already Delphi components available which can write native files for OpenOffice.org Writer or OpenOffice.org Calc? ...

JSF renderers - using templates

I was wondering if anyone has experience with using some kind of templating language for generating the html output in the component's renderer. It seems to me that doing stuff like the following is difficult to maintain if your component rendering will suffer changes during its life. writer.write('\n'); writer.startElement("script",...

How to sort data as I want in a VirtualExplorerTreeview (VirtualShellTools)

Hello This is probably a very "dumb" question for whoever knows VirtualShellTools but I only started using it and couldn't find my answer in the demos' code. Please note that I'm also unfamiliar with virtualtreeview. I use a VirtualExplorerTreeview to display a directory structure, linked with a VirtualExplorerListview to display a cer...

Flex/Flash "popup balloon" control?

I'm looking for a Flash/Flex component which will create a "popup" editing balloon, similar to, for example, iCal or Google calendar: Does such a thing exist? ...

Flex How to delay setStyle until next update ?

Hello, I have a component composed of two parts, let's say two Hbox A and B in a Vbox. On a specific call I want to: - Hide B with B.visible = false - setStyle("borderSkin", FooBorderOn); The problem is that the border get drawn before the resizing of the parent Vbox happen, so i end up with a border Around the Vbox with B invisible...

Flex 3 Tooltip

I am using a custom advanced auto-complete component. Selected items do not have a tooltip by default, but I would like to use the label as my tooltip. The arraylist allQuestions is the dataprovider to my component. <components:AdvancedAutoComplete id="addQuizQuestions_txt" width="800" height="300" dataProvider="{allQuestions}" labelF...

What is Component-Driven Development?

Component-Driven Development term is starting to get used widely, esp. in connection with Inversion of Control. What is it? What problems does it solve? When is it appropriate and when not? ...

Notification or Alerts Framework for .NET C# Component.

Hi, I am looking for a Notification or Alerts framework that can be used in my application as a separate module, I can just use the features of the framework.Are there any good ones?. I need frameworks that dont use to much dll from other vendors to do some jobs..just connected to .net framework dlls notifcations like email as basi...

ListView - how to avoid twinkling (.NET/C#)?

Hello there, My application is multithreaded it has f.ex 25 active threads, and each thread pushes it status to list view item by delegate. example: private delegate void SetBackColorDelegate(int index, Color color); private void SetBackColor(int index, Color color) { if (listView1.InvokeRequired) { ...

.NET CF components

I am starting to develop mobile apps in Visual Studio and I wondering if someone could suggest what 3rd parties controls would be the best choice. I tried the standard controls in VS but they are not of much help. I know there is a toolkit from Resco and ComponentOne. Any experience with one of those? Thank you! ...

Castle Windsor: How can I update a components registration

If I have defined in config: container.Register( Component.For<X.Y.Z.IActivityService>() .ImplementedBy<X.Y.Z.ActivityService>() .ServiceOverrides(ServiceOverride.ForKey("Listeners").Eq(new [] { typeof(X.Y.Z.DefaultActivityListener).FullName })) .LifeStyle.Transient ); and I wish to extend this c...

Flex design view not working for components with custom base class

I have a Flex component that, instead of inheriting directly from Canvas, inherits from a custom class (MyBaseComponent ) that I wrote which in turn inherits from Canvas: Canvas > MyBaseComponent > MyComponent (mxml) Design view does not work for this control. I just get a blank gray screen. (It works if I use Canvas instead of my cu...

Can a Visual Studio component designer access and modify the project .config file?

Can a component designer access and modify the app.config or web.config file of a project at design time? More specifically, is there some hosting service exposed by VS to do this 'the proper way' ? I know I can locate the .config file myself, open it and have my way with it as I please, but I want this to go through the VS sanctioned wa...

Is there a way to make iPhone classes closed for editing and observing

I have classes we wrote for one our customers, to be used in their own iPhone code. We would like to make the classes sealed for observing and prevent the code from being copied like we would do in windows by a closed dll or compiled swf on flash. Any help will be appreciated. David. ...

Can someone describe the component-based paradigm in java web programming?

I am trying to learn java web programming. I come from a perl scripting background and know very little Java, much less JSF/Seam/EJB3.0. I've made a LOT of progress in this very steep learning curve, but there are some large conceptual issues that I think are hampering me a bit. Lately I've turned my attention to learning JSF. Usually...

JavaFX component that emulates JTable

I have a large dataset that needs to be displayed for users and looking for Swing's JTable like component in JavaFX. ...

? Structuring a Revision Control System (SVN) to Handle Dependencies

Hi, For many years, I have been programming in a simple way: I would save my source files in directories organized by language and project, make the occasional manual backup, and if I’m smart, I make a copy before trying out a new version; that’s pretty much it. I recently decided to begin using revision control. After examining a bunc...

.NET EDIFACT/X12 Framework

We need to process some EDI messages for a client and i was wondering if any of you could recommend some components (not necessarily free) that could do the task. I'm interested in a framework that can parse EDI messages into .NET structures and some kind of implementation of transport protocols (SMTP, FTP, HTTP, AS2) etc. ...

Autowiring Unmanaged Beans Annotated With @Component

I want to use @AutoWired to inject a non-managed bean configured with @Component into a managed bean. I'm pretty sure I have the configuration right, but for some reason I keep getting the exception: No unique bean of type [foo.Baz] is defined: Unsatisfied dependency of type [class foo.Baz]: expected at least 1 matching bean Based on...