active questions tagged components - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:38:26Zhttp://stackoverflow.com/feeds/tag/componentshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1949816/flex-mx-sparks-vs-mx-only-components0Flex: MX + Sparks vs. MX-only componentsgio2009-12-22T23:10:41Z2009-12-23T03:32:56Z
<p>I'm playing with the video components of Flex. When starting a new project, I was able to choose between (MX only) and (MX + Sparks). When I set the project to (MX + Sparks), the only video component I find is called s:VideoPlayer and it comes skinned. When I start the project as (MX only), the only video component I find is mx:VideoDisplay and it comes with no skin. I'm not sure which one to choose.</p>
<ul>
<li><p>Is one supposed to be better or more advanced or less buggy than the other? </p></li>
<li><p>Are there any compatibility differences between them? For example, do they both work in flash 9 and 10?</p></li>
<li><p><strong>IF</strong> the new s:VideoPlayer is better, is there a way to set the project to the new (MX + Sparks), yet still be able to custom skin it. </p></li>
<li><p>Any tutorials you recommend for the new s:VideoPlayer component? </p></li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/736339/reading-ms-access-mdb-files-in-delphi-for-free1Reading MS Access mdb files in Delphi (for free)?moodforaday2009-04-10T00:24:15Z2009-12-19T21:51:33Z
<p>I'm looking for a Delphi component / library to open and read from an mdb (MS Access) database. I will not be writing to the db or displaying the data; just need to read the db using whatever sql Access supports. </p>
<p>This is for a personal side-project (programming is not my paying job), so I need a free or a very inexpensive solution that works with any of Delphi 6, Delphi 2007 or Delphi 2009 (Professional editions all). Performance doesn't matter, simplicity does :)</p>
http://stackoverflow.com/questions/1925006/is-there-net-component-which-can-convert-xls-to-password-protected-pdfs0Is there .NET component which can convert XLS to password protected PDFs?nightcoder2009-12-17T22:20:33Z2009-12-17T22:26:23Z
<p>Hello,
Is there .NET component which can convert XLS to password protected PDFs?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1913099/richfaces-dropdownmenu-action0Richfaces: dropDownMenu actionYurish2009-12-16T08:15:30Z2009-12-16T09:03:32Z
<p>Hi!</p>
<p>I understand, how to set action to rich:menuItem component, but can i somehow set action on rich:dropDownMenu? Parameter action cannot be set in rich:dropDownMenu component, only in dropDownMenus child rich:menuItem. Maybe there is another approach?</p>
<p>Action setting to rich:menuItem:</p>
<p><code><rich:menuItem submitMode="server" value="#{msg.someValue}" action="#{billdoc.list}"></code></p>
<p>I need to execute some action #{billdoc.someAction}, when user clicks on dropDownMenu.</p>
http://stackoverflow.com/questions/1906237/draw-a-new-curved-shape-inherited-from-lineshape0Draw a new Curved Shape inherited from LineShapeserhio2009-12-15T09:33:55Z2009-12-15T14:25:37Z
<p>Hello, </p>
<p>I use Microsoft.VisualBasic.<strong>PowerPacks</strong>. LineShape component.
This component is good, but I want to draw a curve instead of a right line. I stardet to modify the OnPaint:</p>
<pre><code> protected override void OnPaint(PaintEventArgs pevent)
{
//base.OnPaint(pevent);
pevent.Graphics.DrawLines(Pens.Green, new Point[] {
new Point(X1, Y1), new Point(40, 10), new Point(X2, Y2)});
}
</code></pre>
<p>The component is correctly drawn, but it does not detect the Mouse events (click , down). Please help, this is my entire test code:</p>
<pre><code>using System;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.VisualBasic.PowerPacks;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
private ShapeContainer shapeContainer1;
public Form1()
{
this.shapeContainer1 = new PowerPacks.ShapeContainer();
InitializeComponent();
// add the shapeContainer1
this.Controls.Add(this.shapeContainer1);
// add a blue LineShape
this.shapeContainer1.Shapes.Add(
new LineShape(60, 10, 90, 70));
(this.shapeContainer1.Shapes.get_Item(0) as LineShape).BorderColor = Color.Blue;
// add a red (green in OnPaint) MyCourveShape
this.shapeContainer1.Shapes.Add(
new MyCourveShape(10, 10, 50, 50));
(this.shapeContainer1.Shapes.get_Item(1) as MyCourveShape).BorderColor = Color.Red;
}
}
public class MyCourveShape : Microsoft.VisualBasic.PowerPacks.LineShape
{
public MyCourveShape(int x1, int y1, int x2, int y2)
{
this.X1 = x1;
this.X2 = x2;
this.Y1 = y1;
this.Y2 = y2;
}
protected override void OnPaint(PaintEventArgs pevent)
{
//base.OnPaint(pevent);
pevent.Graphics.DrawLines(Pens.Green, new Point[] {
new Point(X1, Y1), new Point(40, 10), new Point(X2, Y2)});
}
protected override void OnClick(EventArgs e)
{
base.OnClick(e);
MessageBox.Show("MyCourveShape clicked!");
}
}
}
</code></pre>
http://stackoverflow.com/questions/1901251/component-based-game-engine-design3Component based game engine designa_m0d2009-12-14T14:33:14Z2009-12-14T20:21:44Z
<p>I have been looking at game engine design (specifically focused on 2d game engines, but also applicable to 3d games), and am interested in some information on how to go about it. I have heard that many engines are moving to a component based design nowadays rather than the traditional deep-object hierarchy.</p>
<p>Do you know of any good links with information on how these sorts of designs are often implemented? I have seen <a href="http://cowboyprogramming.com/2007/01/05/evolve-your-heirachy/" rel="nofollow">evolve your hierarchy</a>, but I can't really find many more with detailed information (most of them just seem to say "use components rather than a hierarchy" but I have found that it takes a bit of effort to switch my thinking between the two models).</p>
<p>Any good links or information on this would be appreciated, and even books, although links and detailed answers here would be preferred. </p>
http://stackoverflow.com/questions/1564155/why-do-components-in-flash-cs3-fail-so-hard-when-loaded-with-a-loader0Why do components in Flash CS3 fail so hard when loaded with a Loader.Triynko2009-10-14T03:54:12Z2009-12-14T07:51:37Z
<p>The ComboBox shows up fine when I run a SWF by itself. The rowCount property set in the property inspector works just fine; the dataProvider property populates the box just fine; everything works fine.</p>
<p>HOWEVER, when I load that SWF into a parent SWF with the Loader class, everything goes to hell. The ComboBox shows up empty. All the settings in the component inspector are ignored. When I set the dataProvider manually, it's ignored.</p>
<p>Items will show up if I call addItem, so I can get items into the list... but that just makes it clear that rowCount is being ignored, because only 5 of th 8 items are visible (I have to scroll through the rest), even though rowCount is set to 8 or the length property of the comboxbox.</p>
<p>Buttons and basically all CS3 components are BROKE when loaded in an external SWF with the Loader class.</p>
<p>Does anyone know how to fix this?</p>
http://stackoverflow.com/questions/605346/any-news-of-the-devshock-smpp-component0Any news of the DevShock SMPP Component?Anthony K2009-03-03T06:33:17Z2009-12-14T05:33:15Z
<p>I am maintaining a program that uses the DevShock SMPP component for .NET. I have noticed though that for a long time (at least 6 months) the <a href="http://www.devshock.com/" rel="nofollow">website</a> has a "New Site Under Construction" notice, saying that it will be ready by September 2008.<br>
Does anyone know if it will ever be back?<br>
Does anyone know of another free comparable library/component for .NET?</p>
<p>Update December 2009 - Website now says a new web page coming December 2009</p>
http://stackoverflow.com/questions/1806080/what-is-a-good-database-data-entry-component-for-net0What is a good database data entry component for .net?MandoMando2009-11-26T23:14:59Z2009-12-12T15:10:12Z
<p>What is your favourite way of allowing a web user add/edit records of database table without having to do too much wiring?</p>
<p>I'm looking for a clean fuss-free web-interface to a database.</p>
<p><strong>Edit</strong>
<a href="http://aspnetajax.componentart.com/control-specific/datagrid/editing/editing%5FdataClientMode/WebForm1.aspx" rel="nofollow">For example, I'm looking other options such as this one from Compenentart</a> not a programming language.</p>
http://stackoverflow.com/questions/1887999/delphi-compare-properties-between-two-components0Delphi: compare properties between two componentsconciliator2009-12-11T13:14:35Z2009-12-11T13:54:23Z
<p>I'd like to compare the "state" of two components, say <code>Comp1: TSomeComponent</code> and <code>Comp2: TSomeComponent</code>, i.e. I want to compare the values of all the published properties of the two components. Some of the properties are indexed, like the TListBox.Items property. Is there an easy way to do this? Do I have to invoke some iterating RTTI code?</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-12-11T12:23:49Z
<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/1878189/add-a-load-event-for-winforms-control-just-as-form-class0Add a Load event for Winforms Control just as Form classdeerchao2009-12-10T01:52:28Z2009-12-10T18:06:36Z
<p>Hi, is there a way I can get a Load event for System.Windows.Forms.Control just like System.Windows.Forms.Form.Load?</p>
<p>I want to run some initialize code before the control first shown.</p>
<p>Also, it would be nice to be able to do the same for System.Windows.Forms.ToolStripStatusLabel which is not actually a Control, but works like one.</p>
<p>Ideally, I can do this:
control.OnLoad(() => { dosomething here; });</p>
<p>in which OnLoad is a extension method that would run the argument Action when the "control" "Loads".</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1880826/any-good-way-of-using-flash-components-in-haxe0Any good way of using Flash components in haxe?Marek Mollin2009-12-10T12:58:50Z2009-12-10T13:07:25Z
<p>I was wondering if there is any standard practice in using components in Haxe.
Searched the google and find very little on it. Apparently people ten to use ASWing and other third-party solutions.</p>
<p>I am mostly intersted in modyfing the components appearance in Flash (CS4) than pulling an swf file which I could include in swf-lib. Right now I am kind of forced to make it via movie clip export it, and build functionality in Haxe.
Which as you imagine is not handy and timeconsuming (especially that fl.controls used to work for me very well, I barely had to modify any mechanics, sometimes was just adding functionality).</p>
http://stackoverflow.com/questions/1880445/net-component-for-javascript-obfuscation1.Net Component for JavaScript Obfuscation?Mark Maslar2009-12-10T11:44:42Z2009-12-10T12:32:49Z
<p>Are there any .Net components for obfuscating JavaScript? I'm generating JavaScript dynamically & emitting via ClientScript.RegisterClientScriptBlock. I'd like to make it more difficult for others to view and modify that script.</p>
<p>Caveats:</p>
<ul>
<li>Yes, I know that JavaScript obfuscation will merely inconvenience a serious developer.</li>
<li>I do intend to add (non-obfuscated) copyright notices.</li>
<li>My C# program that generates the JavaScript is my real value-add. That source won't be available to viewers. Nevertheless, I'd like to obscure the functions and data that it creates.</li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/1857880/osgi-bundle-repositories0OSGi Bundle RepositoriesGraham Jenson2009-12-07T04:52:14Z2009-12-07T14:18:41Z
<p>I am empirically testing OSGi Bundles and their relationships for this I need lots of bundles.
Making these datasets is a difficult task. I already have Eclipse update (1700 Bundles) sites and Spring Enterprise bundle repository for testing, however I want more, anyone out there got massive amounts of bundles.
I don't even need the code, just the manifests would be fine.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/662956/most-useful-free-net-libraries194Most useful free .NET libraries?Binoj Antony2009-03-19T16:30:53Z2009-12-03T23:53:32Z
<p>I have used a lot of free .NET libraries, some from Microsoft itself!
Which ones have you found the most useful?</p>
<p><strong>Dependency Injection/Inversion of Control</strong></p>
<ol>
<li><a href="http://msdn.microsoft.com/en-us/library/dd140117.aspx" rel="nofollow">Unity Framework</a> - Microsoft</li>
<li><a href="http://sourceforge.net/projects/structuremap" rel="nofollow">StructureMap</a> - Jeremy Miller</li>
<li><a href="http://www.castleproject.org/container/index.html" rel="nofollow">Castle Windsor</a></li>
<li><a href="http://ninject.org/" rel="nofollow">NInject</a></li>
<li><a href="http://www.springframework.net/" rel="nofollow">Spring Framework</a></li>
<li><a href="http://code.google.com/p/autofac/" rel="nofollow">Autofac</a></li>
<li><a href="http://mef.codeplex.com/" rel="nofollow">Managed Extensibility Framework</a></li>
</ol>
<p><strong>Logging</strong></p>
<ol>
<li>Logging Application Block - Microsoft</li>
<li><a href="http://logging.apache.org/log4net/" rel="nofollow">Log4Net</a> - Apache</li>
<li><a href="http://code.google.com/p/elmah/" rel="nofollow">Error Logging Modules and Handlers(ELMAH)</a></li>
<li><a href="http://www.nlog-project.org/" rel="nofollow">NLog</a></li>
</ol>
<p><strong>Compression</strong></p>
<ol>
<li><a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/" rel="nofollow">SharpZipLib</a></li>
<li><a href="http://www.codeplex.com/dotnetzip" rel="nofollow">DotNetZip</a></li>
<li><a href="http://www.codeplex.com/YUICompressor" rel="nofollow">YUI Compressor</a> (CSS and JS compression/minification)</li>
</ol>
<p><strong>Ajax</strong></p>
<ol>
<li><a href="http://www.codeplex.com/AjaxControlToolkit" rel="nofollow">Ajax Control Toolkit</a> - Microsoft</li>
<li><a href="http://www.codeplex.com/AjaxPro" rel="nofollow">AJAXNet Pro</a></li>
</ol>
<p><strong>ORM</strong></p>
<ol>
<li><a href="http://www.hibernate.org/343.html" rel="nofollow">NHibernate</a></li>
<li><a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">Castle ActiveRecord</a></li>
<li><a href="http://subsonicproject.com/" rel="nofollow">Subsonic</a></li>
</ol>
<p><strong>Charting/Graphics</strong></p>
<ol>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=130F7986-BF49-4FE5-9CA8-910AE6EA442C&displaylang=en" rel="nofollow">Microsoft Chart Controls for ASP.NET 3.5 SP1</a></li>
<li><a href="http://code.msdn.microsoft.com/mschart" rel="nofollow">Microsoft Chart Controls for Winforms</a></li>
<li><a href="http://zedgraph.org/wiki/index.php?title=Main%5FPage" rel="nofollow">ZedGraph Charting</a></li>
<li><a href="http://www.nplot.com/" rel="nofollow">NPlot</a> - Charting for ASP.NET and WinForms</li>
</ol>
<p><strong>PDF Creators/Generators</strong></p>
<ol>
<li><a href="http://pdfsharp.com/PDFsharp/" rel="nofollow">PDFsharp</a></li>
<li><a href="http://itextsharp.sourceforge.net/" rel="nofollow">iTextSharp</a></li>
</ol>
<p><strong>Unit Testing/Mocking</strong></p>
<ol>
<li><a href="http://www.nunit.org/" rel="nofollow">NUnit</a> </li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a></li>
<li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a></li>
<li><a href="http://www.typemock.com/" rel="nofollow">TypeMock.Net</a></li>
<li><a href="http://www.codeplex.com/xunit" rel="nofollow">xUnit.net</a> </li>
<li><a href="http://www.mbunit.com/" rel="nofollow">mbUnit</a></li>
</ol>
<p><strong>Automated Web Testing</strong></p>
<ol>
<li><a href="http://seleniumhq.org" rel="nofollow">Selenium</a></li>
<li><a href="http://watin.sourceforge.net/" rel="nofollow">Watin</a></li>
</ol>
<p><strong>URL Rewriting</strong></p>
<ol>
<li><a href="http://urlrewriter.net/" rel="nofollow">url rewriter</a></li>
<li><a href="http://www.urlrewriting.net/" rel="nofollow">UrlRewriting.Net</a></li>
<li><a href="http://urlrewriter.codeplex.com" rel="nofollow">Url Rewriter and Reverse Proxy</a> - Managed Fusion</li>
</ol>
<p><strong>Unclassified</strong></p>
<ol>
<li><a href="http://www.lhotka.net/" rel="nofollow">CSLA Framework</a> - Business Objects Framework</li>
<li><a href="http://www.aforgenet.com/framework/" rel="nofollow">AForge.net</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd203099.aspx" rel="nofollow">Enterprise Library 4.1</a> - Logging, Exception Management, Validation, Policy Injection</li>
<li><a href="http://filehelpers.sourceforge.net/" rel="nofollow">File helpers library</a></li>
<li><a href="http://www.componentfactory.com/free-windows-forms-controls.php" rel="nofollow">Krypton</a> - Free winform controls</li>
<li><a href="http://www.itu.dk/research/c5/" rel="nofollow">C5 Collections</a> - Collections for .NET</li>
<li><a href="http://quartznet.sourceforge.net/" rel="nofollow">Quartz.NET</a> - Enterprise Job Scheduler for .NET Platform</li>
<li><a href="http://www.codeplex.com/sourcegrid/" rel="nofollow">Source Grid</a> - A Grid control</li>
<li><a href="http://www.yoda.arachsys.com/csharp/miscutil/" rel="nofollow">MiscUtil</a> - Utilities by Jon Skeet</li>
<li><a href="http://incubator.apache.org/lucene.net/" rel="nofollow">Lucene.net</a> - Text indexing and searching</li>
<li><a href="http://www.codeplex.com/Json" rel="nofollow">Json.NET</a> - Linq over JSON</li>
<li><a href="http://www.codeplex.com/Flee" rel="nofollow">Flee</a> - expression evaluator</li>
<li><a href="http://devexpress.com/" rel="nofollow">Devexpress</a> - free controls</li>
<li><a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> - AOP</li>
<li><a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> - brings the extensive world of Java libraries to .NET.</li>
</ol>
<p>Title of the question taken from <a href="http://www.ikvm.net/" rel="nofollow">here</a>.</p>
<p>[EDIT]<br />
Please provide links to these free libraries as well.
Once we have a huge list of this, it can be arranged in categories!
Please do not mention .NET Applications/EXEs here.</p>
http://stackoverflow.com/questions/1828312/any-way-to-force-jidetabbedpane-to-show-always-the-first-tab0Any way to force jidetabbedpane to show always the first tabNils Drews2009-12-01T19:27:05Z2009-12-01T22:45:17Z
<p>Hello,</p>
<p>i have the requirement that i have to display a tabbedpane, but the first tab has to be static. So i tried to use the jidetabbedpane, since it cares about the effect, that all the tabs are listed in a box, it is navigable, it can show the desired close operation and so on. But the only thing i am missing is the option: set first component static or fixed.</p>
<p>Any idea to overcome that problem?</p>
<p>Thanks in advance,</p>
<p>Nils Drews</p>
http://stackoverflow.com/questions/1000697/net-edifact-x12-framework0.NET EDIFACT/X12 FrameworkAZ2009-06-16T10:32:04Z2009-12-01T19:07:14Z
<p>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. </p>
http://stackoverflow.com/questions/1812479/setting-ttabcontrol-color-after-xpmanifest-in-delphi0Setting TTabControl color after XPManifest in DelphiTofig Hasanov2009-11-28T12:58:31Z2009-11-30T23:45:12Z
<p>I have tabcontrol component on my form. After I put XPManifest, its color became white, I want to change it, but couldn't find color property. And I don't want to remove XPManifest as well. Is there any way to solve this issue?</p>
http://stackoverflow.com/questions/1815669/any-free-shaped-button-components-available1Any free shaped button components available?Mason Wheeler2009-11-29T14:26:39Z2009-11-30T11:49:22Z
<p>I recently downloaded the source to an "open source" project that unfortunately has dependencies on a bunch of expensive proprietary libraries, including <a href="http://www.woll2woll.com/1stClass.html" rel="nofollow">Infopower 1stClass</a>, which it seems to use primarily for TfcShapeButton, a component that acts like a standard TBitBtn, except that you can give it an arbitrary polygonal shape by describing a list of points. The DFM code looks like this:</p>
<pre><code> PointList.Strings = (
'8,29'
'18,19'
'28,29'
'20,37'
'16,37')
</code></pre>
<p>I'm trying to clean this project up and make it look like a real open-source project that anyone can download and build without having to shell out hundreds of dollars for component libraries, but I'd like to change the look and feel as little as possible. So does anyone know of an open-source shape button component like this that will work with D2009 and up?</p>
http://stackoverflow.com/questions/1813700/how-to-show-all-the-sample-principal-component-plots-in-r0how to show all the sample principal component plots in R ? phpdash2009-11-28T20:25:48Z2009-11-28T21:07:32Z
<p>I noticed something in R ,
say pc is the result of applying PCA to a data matrix and
pc$x is my sample principal component matrix . </p>
<p>when try plot(pc$x) , it will only plot the first principal component (pc1) against the second (pc2) , but I actually have more than 2 principal components. how do I show all of them ? </p>
http://stackoverflow.com/questions/1792900/flex-application-layers0Flex application layersklen2009-11-24T21:02:31Z2009-11-24T22:42:14Z
<p>Hello!</p>
<p>I'm new to Flex and I want to separate app tiers/components as much as possible.</p>
<p>So I have three mxmls:</p>
<ol>
<li><code>X.mxml</code> which has a datagrid with
students </li>
<li><code>Y.mxml</code> which must be able
to tell which student is selected in
the X.mxml's datagrid (row id ?)</li>
<li><code>XY.mxml</code> which uses the previous 2</li>
</ol>
<p>Which is the best practice here ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1787590/help-me-in-understanding-about-a-research-phase-es-operating-system-by-google0Help me in understanding about a research phase ES Operating System by Google? [closed]claws2009-11-24T03:28:36Z2009-11-24T06:17:38Z
<p>Hello,</p>
<p>I was googling about the latest Chrome OS by google and encountered an another old research phase OperatingSystem owned Google, its "<a href="http://en.wikipedia.org/wiki/Es%5F%28operating%5Fsystem%29" rel="nofollow">ECMAScript Operating System</a>" (ES OS) hosted on <a href="http://code.google.com/p/es-operating-system/" rel="nofollow">GoogleCode</a>.</p>
<p>I read quite a few things to understand. I didn't understand:</p>
<ol>
<li>It is same a micro kernel but it just changes web browser from application to a component in the kernel, (in other words, implements all components of browser like ecmascript interpreter, html rendering engine etc.. inside the kernel as component) right?</li>
<li>Isn't this very similar to CHROME OS? Whats the difference between two?</li>
<li>Whats up with all the IDL stuff?</li>
<li>Anything important I'm missing here? or misunderstanding anything?</li>
</ol>
<p>I don't know why but I'm still confused about what it is and it purpose.</p>
<p>Kernel design:</p>
<p><img src="http://es-operating-system.googlecode.com/svn/html/XV%5FSemana%5FInformatica/esjs.png" alt="alt text"></p>
<p>If any one wants to understand what it is? Just go through the following stuff (summary):</p>
<p>As you can see wiki doesn't say anything about what it is. But it just mentions the ADDITIONAL componenets included:</p>
<blockquote>
<p>Additional components include
1. an ECMAScript interpreter
2. a cairo-based graphics renderer
3. a port of Squeak.</p>
</blockquote>
<p>The Homepage says:</p>
<blockquote>
<p>ES is an ECMAScript friendly, "<em>extensible pure component operating system</em>". </p>
</blockquote>
<p>This ( <a href="http://www.gamasutra.com/php-bin/news%5Findex.php?story=16503" rel="nofollow">Inside Nintendo's ES Open-Source Operating System</a>) article says</p>
<blockquote>
<p>The working theory of ES Operating System seems to be that this OS might be the
early stages of something similar to
<strong>Microsoft's XNA</strong> -- basically a sandbox
environment which offers hardware
acceleration and a userland based on
some form of VM execution, ECMAscript
in this instance. Although the current
build is against X86, it could be
ported over to PPC to run on the Wii,
for instance.</p>
</blockquote>
<p>The original authors research paper for this kernel design says:</p>
<blockquote>
<p>"We propose an <em>extensible component</em>
<em>operating system</em> architecture in which
an operating system kernel uses
reflection to process C++ pure virtual
function based system calls and
upcalls to provide a unified
programming environment for
application, server, and kernel
development. We found that we could
even develop file subsystems and a
TCP/IP protocol stack on an existing
operating system based on this
architecture."</p>
</blockquote>
<p><a href="http://code.google.com/p/es-operating-system/wiki/Kernel" rel="nofollow">The design of the ES pure component kernel</a></p>
<blockquote>
<p><em>The ES kernel has some resemblances to</em>
<strong>Sun's CORBA-based Spring microkernel</strong>
[Hamilton], and <strong>Microsoft's COM-based
MMLite and Rialto kernels</strong> [Draves].
The ES kernel only handles object APIs
defined in IDL like Railto, and it
allows exchanging object pointers (or
interface pointers in COM terminology)
among user processes. Each interface
pointer acts like an capability
associated with a specific object
interface. However, unlike those older
microkernels, the ES kernel is fully
written in C++ in more portable manner
following the recent standardization
effort of the C++ programing language
and the C++ ABI. For example, a C++
language exception with an integer
error code triggered in a server
process is correctly reported back to
the callee in the client process as an
ordinary C++ exception in ES.</p>
<p>Unlike most other microkernels, a
message passing is not a primitive
operation in the ES kernel; RPC stubs
are not used at all. Instead, the ES
kernel collects the metadata of the
interface definitions generated by the
IDL compiler inside the kernel. Remote
object calls are immediately
intercepted by the kernel. Then the ES
kernel processes them at the
meta-level and invokes the appropriate
target object's method. For local RPC,
the ES kernel uses a similar approach
to the Spring's shuttle model, in
which the calling thread directly
moves to the server address space and
makes an upcall to the server object.
The extensibility of the ES kernel is
assured by allowing the dynamic
installation of the new interface
metadata into the kernel. The object
calls are the the first-class
operations in the ES operating system.</p>
<p>Using IDL occasionally discouraged the
developers due to its potentially
cumbersome, extra procedures
particularly while Microsoft tried to
widely spread COM to their developers.
But today, even though there are
several deficiencies, the most
important APIs for web applications
have already been defined in OMG IDL
in the DOM, HTML5 and other
specifications. In ES, developers no
longer have to link each RPC stub to
their applications, the overall
development cycle has been further
simplified.
<img src="http://es-operating-system.googlecode.com/svn/html/XV%5FSemana%5FInformatica/esjs.png" alt="alt text"></p>
</blockquote>
http://stackoverflow.com/questions/1776530/how-do-i-use-tlbimp-exe0How do i use TLBIMP.EXE ?MarceloRamires2009-11-21T19:43:18Z2009-11-23T11:19:20Z
<p>I've found it in my visual studio folder, but when i open it it simply loads and closes instantly. is that the right way to reach to it's functionalities ?</p>
http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component4Where should I begin when building a component?Austin2009-11-20T20:03:43Z2009-11-21T21:00:48Z
<p>Hello, I am looking to build my own component and have no idea where to begin. I have some Delphi books but they are old and outdated, and am looking for some recommendations on tutorials/books to help me do this. The component will be pretty simple, basically 2 labels and an image. I need hundreds of these in an array, so I thought a component would be the best route. The text will adjust based on width etc, and have some mouseover events. So basically, where do I begin?</p>
<p>I am using Delphi 2009, this will be a win32 app.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1345560/installers-with-shared-subinstallers0Installers with shared subinstallers?Ira Baxter2009-08-28T07:37:15Z2009-11-21T19:00:03Z
<p>We build a bunch of products that all have a similar structure, and in fact share installed subdirectories, documentation and various system configuration variables (environment variables, start menu items, ...)</p>
<p>We've been using InstallShield. It works, but it is incredibly painful to configure a product installer one mouse click at a time, especially when the other installers already have 90% the same configuration.</p>
<p>As programmers, we're used to subroutines to do common work. Why shouldn't this idea apply to installers?</p>
<p>Is there an easy way to configure a subset of installed features and use them across a set of InstallShield installers?</p>
<p>As an alternative, we've been considering using NSIS on the grounds that the shared logic can be broken out as a subroutine(?) or a macro even if we have to implement the macro expansion logic. Does anybody have an experience or recommendations here? Does NSIS have any capability shortcomings as an installer compared to InstallShield?</p>
http://stackoverflow.com/questions/277942/passing-parameter-to-struts2-component0Passing Parameter to struts2 componentVincent Ramdhanie2008-11-10T14:10:48Z2009-11-19T13:46:53Z
<p>I am attempting to create a struts2 component using freemarker. I created a ftl file with code like this:</p>
<pre><code><script type="text/javascript" src="${parameters.library?default('')}"></script>
</code></pre>
<p>Which is expecting a parameter named library to be passed to the component. If the parameter is absent then it defaults to a blank string.</p>
<p>On my JSP page I am referring to the component like this:</p>
<pre><code><s:component template="mytemplate.ftl">
<s:param name="library" value="/scripts/mylibrary.js"/>
</s:component>
</code></pre>
<p>Unfortunately, the value for the library parameter is not being set. It is always a blank string.</p>
<p>I am using the advice from this <a href="http://www.vitarara.org/cms/struts_2_cookbook/creating_a_ui_component" rel="nofollow">tutorial</a> and it seems as if the s:param tag should pass the parameter into the template and make it available. What am I missing here? </p>
<p>Does anyone have some experience building these components that could shed some light?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1751788/why-dont-a-clientdataset-descendants-fields-appear-at-design-time1Why don't a ClientDataSet descendant's fields appear at design time?Barry2009-11-17T21:06:58Z2009-11-18T17:11:06Z
<p>I'm trying to write a component that inherits from TClientDataset. On the create of the component in design time I want to instantiate a list of common fields that are used within my framework. The code below will execute without errors and the field will appear at run time but not design time. Can anyone help me? I'm sure its something trivial!</p>
<pre><code>{ InheritedClientDataset }
constructor InheritedClientDataset.Create(AOwner: TComponent);
var
Field : TField;
begin
inherited;
Field := TField.Create(self);
Field.Name := 'ATestField';
Field.FieldName := 'Test';
Field.SetFieldType(ftInteger);
//Field.DataType := ftInteger;
Field.Size := 0;
Field.FieldKind := fkData;
self.Fields.Add(Field);
end;
</code></pre>
http://stackoverflow.com/questions/1755096/sharing-components-in-net-platform0Sharing components in .NET platformtucaz2009-11-18T10:35:13Z2009-11-18T10:41:44Z
<p>Hi!</p>
<p>I have an e-commerce website that is already up and running for some time. It's built on .NET 3.5. So far, so good.</p>
<p>The "problem" is that now I need to start sharing functionality (products list, order mechanics, customer information, etc) from this project with new projects and external vendors. Since I know the thing is gonna be big I think the best solution is to create a "platform" based on a service layer pretty much like SalesForce.com where I can offer all functionality from my base e-commerce app to anyone who wants it.</p>
<p>My question is:</p>
<p>1) for organizational purposes I would like to be able to create a new VSS Solution that would consume the business DLL that I already have from e-commece app. But, if I create a new VSS Solution to keep it separated I will need to reference the compiled DLL from the e-commece app and update this reference all the time due to e-commerce changes. What do you think? Is the best way to go? Or is the best way to keep using the same solution and put everything together so I can create a reference directly to the project instead of the DLL?</p>
<p>2) if I choose to keep the same VSS Solution, what if I need to create a service that exposes functionality from other systems? Should I create the new service in the same solution that the component I want to expose is located?</p>
<p>My problems are pretty much related to organization of projects. We have several projects and they are following the same development standards, so my initial idea was create a new VSS Solution to center all of the functionality of this new platform just in one place, but if I do that it seems that DLL management will be hard to do.</p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1723558/where-to-put-the-interfaces-in-a-component-based-architecture6Where to put the interfaces in a component based architecture?JohnIdol2009-11-12T16:34:30Z2009-11-18T04:40:10Z
<p>In a component based architecture where a large number of decoupled components communicate through a set of standardized interfaces - are there any guidelines for where-to-store / how-to-group the interfaces?</p>
<p>Extreme solutions would be:</p>
<ul>
<li>All in the same assembly (and off you go)</li>
<li>One assembly for each interface</li>
</ul>
<p>Both of these option seems wrong to me - the first being not flexible enough (for example if you want to change only one interface) the second being the other extreme, which could escalate to maintenance nightmare very quickly. </p>
<p>In particular, <strong>I am looking for KILLER arguments not to adopt the two extremes above</strong> and obviously alternative approchaes.</p>
<p>Any opinions appreciated.</p>