User Xelluloid - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:13:34Z http://stackoverflow.com/feeds/user/23681 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1097986/caching-in-flex 0 Caching in Flex Xelluloid 2009-07-08T13:12:49Z 2009-12-08T17:00:02Z <p>Hello Community, </p> <p>I have the following problem, I have a flex application that works as a frontend in a client-server-application. In my application I have two sliders and a chart that moves when I drag the sliders, now when I have the following positions</p> <p>slider 1: 10 slider 2: 20</p> <p>a request is sent to the server and the response back to my flash. When I now change the sliders to</p> <p>slider 1: 10 slider 2: 30</p> <p>another request is sent to the server, because we have changed the position of slider 2. When I now turn the sliders again to the first position.</p> <p>slider 1: 10 slider 2: 20</p> <p>no request is sent to the server and the chart is moved correctly because the flash seems to know what he will receive, I think the application has cached the result. This effect only works when I open the flash application in the flash player. When I open it in the browser every slider position leeds to another request to the server. Is there a way to enable the caching also when I open it in the browser?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1839174/numbervalidator-conflicts-with-resourcemanager 0 NumberValidator conflicts with resourcemanager Xelluloid 2009-12-03T10:51:49Z 2009-12-03T10:51:49Z <p>Hi,</p> <p>I have written the following test</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application creationComplete="{init()}" xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" viewSourceURL="srcview/index.html"&gt; &lt;mx:NumberValidator source="{testInput}" property="text" minValue="0" domain="real" trigger="{testInput}" triggerEvent="change" valid="testValid=true;" invalid="testValid=false;" /&gt; &lt;mx:Script&gt; &lt;![CDATA[ private var testValid : Boolean = true; private function init():void{ Languages.setResources(resourceManager); } private function changeLocale(locale:String):void{ resourceManager.localeChain=[locale]; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:ApplicationControlBar width="400"&gt; &lt;mx:Label text="{resourceManager.getString('myResources','TITLE')}" width="100%"/&gt; &lt;mx:Button label="eng" click="changeLocale('en_US')" /&gt; &lt;mx:Button label="ita" click="changeLocale('it_IT')" /&gt; &lt;mx:TextInput text="" id="testInput" width="40" /&gt; &lt;/mx:ApplicationControlBar&gt; &lt;/mx:Application&gt; </code></pre> <p>with the following resources</p> <pre><code>package { /** * ... * @author Sebastian Müller */ public class Languages { import mx.resources.IResourceManager; import mx.resources.ResourceBundle; public function Languages() {} public static function setResources(resourceManager:IResourceManager):void{ var myResources:ResourceBundle=new ResourceBundle("en_US","myResources"); myResources.content['TITLE']="Test"; resourceManager.addResourceBundle(myResources); myResources=new ResourceBundle("it_IT","myResources"); myResources.content['TITLE']="TestItalian"; resourceManager.addResourceBundle(myResources); resourceManager.update(); } } } </code></pre> <p>Now the following error occurs. When I start the application my number validation works as expected. When I afterwards switch to italian the number validator don't work anymore.</p> <p>Do the following steps </p> <ol> <li>Type in a number in the text field</li> <li>Switch to italian</li> <li>Type in a letter => the text field does not turn into red</li> </ol> <p>Any ideas?</p> http://stackoverflow.com/questions/1834124/use-localization-for-datagrid-datafields 0 Use Localization for DataGrid datafields Xelluloid 2009-12-02T16:33:05Z 2009-12-02T16:33:05Z <p>Hi there I have implemented my own ResourceManager for localizing my application by using </p> <pre><code>&lt;mx:Label text="{resourceManager.getString('myResources','Spot')}" /&gt; </code></pre> <p>instead of </p> <pre><code>&lt;mx:Label text="Spot" /&gt; </code></pre> <p>Now I want to be able to use this in dataFields in a data grid which use a xml file as datasource</p> <pre><code>&lt;mx:DataGrid width="100%" height="100%" dataProvider="{xmlFile.item}"&gt; &lt;mx:columns&gt; &lt;mx:DataGridColumn headerText="strings" dataField="string" /&gt; &lt;mx:DataGridColumn headerText="values" dataField="value" /&gt; &lt;/mx:columns&gt; &lt;/mx:DataGrid&gt; </code></pre> <p>Does someone know a possibility to achieve this? I know exactly which words come with this xmlFile so I can implement translations for every word manually, so this is no problem. I just want somethin like </p> <pre><code>&lt;mx:DataGridColumn headerText="strings" dataField="{resourceManager.getString('myResources',string)}" /&gt; </code></pre> http://stackoverflow.com/questions/1807704/case-when-with-strings-in-mysql 0 Case ... When with strings in mysql Xelluloid 2009-11-27T09:40:09Z 2009-11-27T09:58:33Z <p>Hi I want to have some query like </p> <pre><code>Select case column1 when column2 like '%Test%' then column 3 else 0 end FROM myTable </code></pre> <p>in column2 there are varchars stored. Can someone help me with this?</p> http://stackoverflow.com/questions/1762547/vtd-xml-inner-xpath-expressions 1 VTD XML inner XPath Expressions Xelluloid 2009-11-19T11:04:57Z 2009-11-19T21:34:56Z <p>Hi I have a xml file for example like this</p> <pre><code>&lt;root&gt; &lt;test&gt; &lt;bla&gt;test1&lt;/bla&gt; &lt;/test&gt; &lt;test&gt; &lt;bla&gt;test2&lt;/bla&gt; &lt;/test&gt; &lt;test&gt; &lt;/test&gt; &lt;/root&gt; </code></pre> <p>Now I want to parse it with the vtd-xml-parser by using XPath Expressions. First I search for the test tags by</p> <p>VTDNav vn = vg.getNav(); AutoPilot ap = new AutoPilot(vn); ap.selectXPath("//test");</p> <p>Now I want to search within this test tags for bla tags</p> <pre><code>int result = -1; int count = 0; while ((result = ap.evalXPath()) != -1) { // evaluate XPath Expressions within the test tags } </code></pre> <p>Can someone tell me how to make this expressions? I don't want to search the entire document for bla tags as I want to be able to assign the bla tags to the test tags. I cannot do this if the bla tags are empty for example and I search the entire document for the bla tag.</p> http://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread 0 Exception when loosing a thread Xelluloid 2009-11-19T09:13:07Z 2009-11-19T09:38:24Z <p>I start two threads with a Timer and TimerTasks</p> <pre><code>Timer timer = new Timer(); TimerTask task = new TimerTask() { public void run() { doSomething(); } }; Calendar start = Calendar.getInstance(); timer.scheduleAtFixedRate(task, start.getTime(), 1000 * 60 * 60); </code></pre> <p>Now sometimes the second thread stops. Is there a possibility to observe the thread perhaps for sending a mail when this thread stops, maybe by a third thread that looks for the second thread?</p> http://stackoverflow.com/questions/1326675/saving-and-loading-xml-file-with-flex 1 Saving and Loading XML file with flex Xelluloid 2009-08-25T07:51:39Z 2009-11-16T11:16:15Z <p>Hello Community,</p> <p>I want to have a xml file for my configuration and so i have to load it from the same directory the swf file lies in and save it afterwards. I saw articles about filestreams in flex but my compiler didn't allow me to use the filestream. I use the open source flex sdk.</p> <p>anyone got an idea?</p> <p>thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1458931/debug-threadpool-in-c 0 Debug Threadpool in C# Xelluloid 2009-09-22T09:02:46Z 2009-11-13T12:00:02Z <p>I want to observe the Threadpool when debugging Visual C# without changing the code (the program is already running) can I add code to the monitoring? Perhaps that I ask for the Threadpool.AvailableThreads method when debugging. I am developing in Visual Studio 2008.</p> <p>EDIT: I just figured out that within my threads (i.e. in the method I put in the thread pool) there are mysql queries executed and they occupy the thread pool.</p> http://stackoverflow.com/questions/1706167/useful-inheritance-in-python-resp-alternative-for-interfaces 0 Useful Inheritance in Python resp. Alternative for interfaces Xelluloid 2009-11-10T07:25:56Z 2009-11-10T09:56:46Z <p>Hi as far as I see in Python variables are untyped. So now I want to have a baseclass </p> <pre><code>class baseClass: def x(): print "yay" </code></pre> <p>and two subClasses</p> <pre><code>class sub1(baseClass): def x(): print "sub1" class sub2(baseClass): def x(): print "sub2" </code></pre> <p>in other programming languages I can develop against interfaces just like</p> <pre><code>baseClass c = new sub1() </code></pre> <p>so now I can use c as a baseClass with the functionality of sub1 and maybe at runtime I can change it via </p> <pre><code>c = new sub2() </code></pre> <p>Is that possible in python as well?</p> http://stackoverflow.com/questions/1031793/resizing-event-in-flex 0 resizing event in flex Xelluloid 2009-06-23T10:38:57Z 2009-11-06T11:00:05Z <p>Hi community,</p> <p>I have the following problem. I use a custom component for painting a graph on a canvas, now when the windows is resized I want to determine the actual width and height of my canvas to resize the graph as well, therefore I used the resize event I can use in mxml. Now I detected in my method for resizing I only receive the width and height of the canvas just before resizing not after. When grabbing an edge of my window and moving it slowly for resizing this does not matter but when maximizing or minimizing the windows, this plays a more important role. Can someone tell me the reason for that behaviour? What is the proper solution for that problem?</p> <p>Thanks in advance</p> <p>Sebastian </p> http://stackoverflow.com/questions/1037265/get-the-type-in-flex 0 Get the type in flex Xelluloid 2009-06-24T09:11:30Z 2009-10-29T04:26:25Z <p>Hello community,</p> <p>can someone tell me how I can identify the type of an object in flex? In particular I have an array where I store multiple types in (but all UIComponents) now as I evaluate the array I want to find out whether I have a TextInput Control or a RadioButton. Does someone have an idea?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/412271/applet-with-gui-designer 1 Applet with Gui Designer Xelluloid 2009-01-05T04:28:41Z 2009-10-24T16:57:59Z <p>Hello,</p> <p>I want to ask you if there is a possibility to program a Java Applet in netbeans 6.5 using the GUI Designer. When I was adding a new file to the source and choose Applet or JApplet, I found now Designer as in a JForm for instance.</p> <p>With kind regards</p> <p>Sebastian</p> http://stackoverflow.com/questions/151966/no-symbols-loaded-when-remote-debugging 1 No Symbols loaded when remote debugging Xelluloid 2008-09-30T06:21:38Z 2009-10-14T04:34:45Z <p>Hi there, I hope someone can help me with my problem. </p> <p>I want to use remote debugging. The Program, that I want to debug runs on machine b. Visual Studio runs on machine a. On machine b I have a folder with the following files</p> <p>msvcr72.dll msvsmon.exe NatDbgDE.dll NatDbgDEUI.dll NatDbgEE.dll NatDbgEEUI.dll</p> <p>If you think, there are files missing, could you also describe, where I find them usually? In the next step I start the msvsmon.exe and my program on machine b. On machine a I start Visual Studio 2008 and my solution in which the program was written. Then I choose Debug - Attach to Process. I take Remote Transport (Native Only with no authentication). I use the correct IP as qualifier and take the right process (program.exe). After a while the following message occurs in a popup-window </p> <p>"Unhandled exception at 0x7c812a7b in program.exe: 0xE0434F4D: 0xe0434f4d"</p> <p>I have the possibility to continue or break, when continuing the exception-message occurs again and again and again. So I pressed break and then the following message occurs</p> <p>"No symbols are loaded for any call stack frame. The source code cannot be displayed.</p> <p>I hope someone can help me. Thanks for any effort. </p> <p>Greets </p> <p>Sebastian</p> http://stackoverflow.com/questions/1491322/graphviz-top-to-bottom-and-left-to-right 0 Graphviz top to bottom AND left to right Xelluloid 2009-09-29T08:43:09Z 2009-09-29T10:24:48Z <p>Hi there I want to have a uml sequence diagram with dot language, now I have the following problem I want to have the layout as follows with a, b, c and d in a straight line at top but with the lines going straight to the bottom. How can I achieve that?</p> <pre><code>a b c d | | | | | | | | </code></pre> <p>perhaps can I achieve that the a, b, c and d with its belonging edges are clusters where I set a different rankdir for the clusters?</p> <p><strong>EDIT</strong> Just found a solution by adding invisible edges between a, b, c and d but any other solutions?</p> http://stackoverflow.com/questions/1466340/threads-get-stuck-in-mysqlcommand-executenonquery 0 Threads get stuck in MySqlCommand.ExecuteNonQuery() Xelluloid 2009-09-23T14:26:26Z 2009-09-23T14:30:31Z <p>I want to make the calls to a method parallel. In this method I calculate some value (very fast) and write the value of this calculation into a database table.</p> <p>Therefore I use a Threadpool</p> <pre><code>ThreadPool.QueueUserWorkItem((state) =&gt; { method(); }); </code></pre> <p>After a while of calculation (not deterministic, the time when this happens varies, sometimes after a few minutes, sometimes after some hours) the Threadpool is full, but not with the thread of method() but with the thread of my mysql class that calls <code>MySqlCommand.ExecuteNonQuery</code>. </p> <p>Does anyone have an idea how to avoid this? In the documentation of the mysql classes I found out that you cannot terminate an executing query but how to avoid such problems?</p> http://stackoverflow.com/questions/1392515/bookmark-level-difference-when-using-hyperref 0 Bookmark level difference when using hyperref Xelluloid 2009-09-08T07:36:57Z 2009-09-08T19:00:33Z <p>When creating my output with miktex in texniccenter I get the following warning </p> <pre><code>Difference (2) between bookmark levels is greater than one, level fixed on input line 3 </code></pre> <p>Can someone explain this warning to me and perhaps give me a hint for a solution of the problem?</p> http://stackoverflow.com/questions/1378689/call-of-function-with-arguments 1 call() of function with arguments Xelluloid 2009-09-04T11:28:53Z 2009-09-04T13:38:48Z <p>I have a component that I hand over a function </p> <pre><code>public var func : Function; </code></pre> <p>Now the function is a function that has parameters in its signature</p> <pre><code>public function myFunction(s : String) : void { doSomething(s); } </code></pre> <p>from my component I can call the function with</p> <pre><code>func.call(); </code></pre> <p>Can someone tell me how to invoke the function with its parameters?</p> http://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-api 2 Configure the root logger with java logging API Xelluloid 2009-09-04T07:29:15Z 2009-09-04T07:49:38Z <p>how can I configure the behaviour of the root logger in the logging api? I don't want to configure the behaviour of each logger separately, instead it would be very convenient if I have a single property file where I can set the behaviour of all loggers.</p> http://stackoverflow.com/questions/1366732/same-domain-but-security-error 1 Same domain but security error Xelluloid 2009-09-02T09:42:44Z 2009-09-02T17:25:58Z <p>Hi community,</p> <p>I am hosting a java service and a flex application on the same server. The flex application accesses the java service. As the flex application loads I get a security error, how can this happen? I thought I do not need a crossdomain.xml when hosting on the same server.</p> <p>My flex app gets the data via a http service that sends calls to 1.2.3.4:9000/service, the flex application itself lies on 5.6.7.8/test.swf, my crossdomain.xml looks like the following</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt; &lt;cross-domain-policy&gt; &lt;allow-access-from domain="5.6.7.8" to-ports="*" /&gt; &lt;/cross-domain-policy&gt; </code></pre> <p>It is accessible from 1.2.3.4:9000/crossdomain.xml. Note that everything works when I use domain="*" instead of domain="1.2.3.4"</p> <p>I hope someone can help me</p> <p>Sebastian</p> http://stackoverflow.com/questions/1362133/links-in-datagrid-flex 1 Links in Datagrid (flex) Xelluloid 2009-09-01T12:07:25Z 2009-09-01T16:35:27Z <p>Hi community,</p> <p>I wanted to ask how I can put links into a datagrid. My dataProvider is the folling xml</p> <pre><code>&lt;xml&gt; &lt;item&gt; &lt;name&gt;A name&lt;/name&gt; &lt;url&gt;A url&lt;/name&gt; &lt;/item&gt; &lt;item&gt; &lt;name&gt;Another name&lt;/name&gt; &lt;url&gt;Another url&lt;/name&gt; &lt;/item&gt; &lt;/xml&gt; </code></pre> <p>sure with some more items in it. Now I want to have a datagrid that displays the name as a label and when clicking on the row the url is opened. </p> <p>Can anyone help me with that thing? I know some stuff about item renderes but I don't know how I can give the url to the item renderer. Maybe with a classfactory? But how can I control which url is given to the specific item renderer?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1334749/custom-itemrender-in-datagrid-with-datatip 0 Custom Itemrender in Datagrid with Datatip Xelluloid 2009-08-26T13:37:21Z 2009-08-27T14:44:55Z <p>Hi community,</p> <p>I have a datagrid with one datagridcolumn in it. Without a custom itemrenderer I can use a datatipfunction for showing a custom datatip but now I want to have a custom item render for colouring the rows differently. Therefore I extended a label and changed the data method but now my datatipfunction does not work anymore.</p> <p>Any ideas?</p> <p>thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1335223/cannot-convert-to-classfactory 1 Cannot Convert to ClassFactory Xelluloid 2009-08-26T14:43:25Z 2009-08-26T14:48:18Z <p>I have this item renderer MyRenderer.mxml</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" implements="mx.core.IDataRenderer" &gt; &lt;mx:Script&gt; &lt;![CDATA[ [Bindable] public var greylist : XML; public function newInstance() : * { return new MyRenderer(); } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:HBox&gt; </code></pre> <p>and try to append the item renderer to my datagridcolumn by a classfactory</p> <pre><code>myRenderer = ClassFactory(MyRenderer); myRenderer.properties = { greylist: this.greylist }; </code></pre> <p>Now when debugging I get the error that MyRenderer cannot be converted into classfactory.</p> <p>Can someone please help me?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1321261/configuring-log4net-with-xml-file 1 configuring log4net with xml file Xelluloid 2009-08-24T09:09:03Z 2009-08-24T10:28:34Z <p>Hi I tried to configure log4net for logging everything to the console output. I have a config file nameed Log4Net.config</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt; &lt;/configSections&gt; &lt;log4net&gt; &lt;appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" &gt; &lt;layout type="log4net.Layout.PatternLayout"&gt; &lt;conversionPattern value="%date [%thread] %-5level %logger [%ndc] - %message%newline" /&gt; &lt;/layout&gt; &lt;/appender&gt; &lt;root&gt; &lt;level value="INFO" /&gt; &lt;appender-ref ref="ConsoleAppender" /&gt; &lt;/root&gt; &lt;/log4net&gt; &lt;/configuration&gt; </code></pre> <p>and I have my main class (just a testing case)</p> <pre><code>namespace TestLog4Net { class Program { private static readonly ILog log = LogManager.GetLogger(typeof(Program)); static void Main(string[] args) { log.Info("Info"); log.Error("Error"); Console.ReadKey(); } } } </code></pre> <p>I added these lines to the AssemblyInfo.cs</p> <pre><code>[assembly: log4net.Config.XmlConfigurator( ConfigFile = "Log4Net.config", Watch = true)] </code></pre> <p>But now nothing is logged, can someone explain this?</p> <p>Thanks in advance </p> <p>Sebastian</p> http://stackoverflow.com/questions/1321392/threaded-event-handling-c 2 Threaded event handling (C#) Xelluloid 2009-08-24T09:40:31Z 2009-08-24T09:43:56Z <p>Hi community,</p> <p>I have a question about event handling with C#. I listen to events a class A throws. Now when the event ist thrown a method is executed that does something. This method sometimes has to wait for respones from datasources or similar.</p> <p>I think event handling is synchronous so one after another event will be processed. Is it possible to makes this asynchronous? I mean that when the method is executed but has to wait for the response of the datasource another event can be processed?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript 0 fade in of added component with Actionscript Xelluloid 2009-07-02T16:56:37Z 2009-08-19T11:23:28Z <p>Hi when I add a new component using Actionscript I want it to fade in smoothly, for example this component</p> <pre><code> var df : DateField = new DateField(); df.text = DateField.dateToString(new Date(),stringFormat); df.formatString = stringFormat; </code></pre> <p>I tried this </p> <pre><code> var fade : Fade = new Fade(); df.setStyle("showEffect", fade); </code></pre> <p>but that did not work.</p> <p>any ideas? =) </p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1278010/threadsafe-and-generic-arraylist-in-c 1 Threadsafe and generic arraylist in c #? Xelluloid 2009-08-14T13:59:42Z 2009-08-14T14:18:22Z <p>Hello community,</p> <p>I want to have a generic thread safe collection and I saw that the Arraylist can easily be used thread safe by its static Synchronized method but what bugs me is that this ArrayList is not generic so when I want to use my objects I always have to cast them. Is there an easier way to do this? Also other list types would be possible.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1276569/caching-in-c-net 0 Caching in C#/.Net Xelluloid 2009-08-14T07:50:44Z 2009-08-14T08:15:09Z <p>Hello community,</p> <p>I wanted to ask you what is the best approach to implement a cache in C#? Is there a possibility by using given .Net-classes or something like that? Perhaps something like a dictionary that will remove some entries if it gets too large but whose entries won't be removed by the garbage collector?</p> <p>Thanks in advance </p> <p>Sebastian</p> http://stackoverflow.com/questions/1227478/load-webpage-with-login-in-java 1 Load Webpage with login in java Xelluloid 2009-08-04T13:14:17Z 2009-08-04T13:54:23Z <p>Hi community,</p> <p>I have a webpage http:/ /www.somesite.de This webpage gives me a file I want to download, but before I can do it I have to login with a username and a password. Can anyone tell me where I have to look for best practices for such a problem?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1192463/add-own-watermark-to-flex-chart 0 Add own watermark to flex chart Xelluloid 2009-07-28T07:44:26Z 2009-07-28T18:59:56Z <p>Hi community,</p> <p>does someone know how to add a watermark to a charting component in flex? Maybe to a Line Chart or just simple to a canvas.</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1143195/draw-dot-on-linechart-in-flex 0 draw dot on linechart in flex Xelluloid 2009-07-17T13:15:07Z 2009-07-17T20:41:32Z <p>Hi community,</p> <p>I have a line series in a linechart and a slider that goes from 0 to 200. When I now move the slider, I want to have a dot appearing at the chart so when I move the slider to 150, there should be a dot where the x-coordinate of the chart is 150. Has anybody an idea? I did not found anything.</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1839174/numbervalidator-conflicts-with-resourcemanager Comment by Xelluloid on NumberValidator conflicts with resourcemanager Xelluloid 2009-12-03T11:12:43Z 2009-12-03T11:12:43Z Ok answer to my own post ;) When I do incomplete localization by private function changeLocale(locale:String):void{ resourceManager.localeChain=[locale, &quot;en_US&quot;]; } everything works fine, can someone tell how I can achieve this without this workaround? http://stackoverflow.com/questions/1834124/use-localization-for-datagrid-datafields Comment by Xelluloid on Use Localization for DataGrid datafields Xelluloid 2009-12-02T17:24:15Z 2009-12-02T17:24:15Z Ok I just solved it with a custom label function =) &lt;mx:DataGridColumn headerText=&quot;strings&quot; labelFunction=&quot;getName&quot; /&gt; private function getName(item:Object,column:DataGridColumn) : String { return resourceManager.getString('myResources', item.string ); } http://stackoverflow.com/questions/1807704/case-when-with-strings-in-mysql/1807748#1807748 Comment by Xelluloid on Case ... When with strings in mysql Xelluloid 2009-11-27T15:01:53Z 2009-11-27T15:01:53Z this was simply an example but your answer fits my needs, thank you http://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread/1762055#1762055 Comment by Xelluloid on Exception when loosing a thread Xelluloid 2009-11-19T10:58:32Z 2009-11-19T10:58:32Z but it is not an exception that is thrown but an Error :) http://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread/1761932#1761932 Comment by Xelluloid on Exception when loosing a thread Xelluloid 2009-11-19T09:27:55Z 2009-11-19T09:27:55Z sure =) but I want to monitor every exception and error and send an e-mail if something goes wrong with my tool =) http://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread/1761933#1761933 Comment by Xelluloid on Exception when loosing a thread Xelluloid 2009-11-19T09:26:20Z 2009-11-19T09:26:20Z sorry, no the threads stops with an OutOfMemoryError, my boss just suggested to handle it with a catch(Throwable). I try it now http://stackoverflow.com/questions/1706167/useful-inheritance-in-python-resp-alternative-for-interfaces/1706185#1706185 Comment by Xelluloid on Useful Inheritance in Python resp. Alternative for interfaces Xelluloid 2009-11-11T07:41:30Z 2009-11-11T07:41:30Z ok I see now what is meant by dynamically typed =) I never got in touch with those languages, was my first experience =) http://stackoverflow.com/questions/1706167/useful-inheritance-in-python-resp-alternative-for-interfaces/1706185#1706185 Comment by Xelluloid on Useful Inheritance in Python resp. Alternative for interfaces Xelluloid 2009-11-10T07:36:07Z 2009-11-10T07:36:07Z but I cannot say baseClass c = sub1() my interpreter says invalid syntax http://stackoverflow.com/questions/1491322/graphviz-top-to-bottom-and-left-to-right/1491356#1491356 Comment by Xelluloid on Graphviz top to bottom AND left to right Xelluloid 2009-09-29T08:57:59Z 2009-09-29T08:57:59Z ah sorry for sure when you now add d2 -&gt; a2 I still want to be a, b, c and d on top but a1, a2, a3 still in one line as above http://stackoverflow.com/questions/1466340/threads-get-stuck-in-mysqlcommand-executenonquery/1466372#1466372 Comment by Xelluloid on Threads get stuck in MySqlCommand.ExecuteNonQuery() Xelluloid 2009-09-24T07:58:09Z 2009-09-24T07:58:09Z oh ... think I have had misunderstanding about the locking mechanism :) I now lock another Object when sending the list and when filling the list http://stackoverflow.com/questions/1466340/threads-get-stuck-in-mysqlcommand-executenonquery/1466372#1466372 Comment by Xelluloid on Threads get stuck in MySqlCommand.ExecuteNonQuery() Xelluloid 2009-09-24T07:52:15Z 2009-09-24T07:52:15Z ok I now add the queries to a list and send this list every minute but now I when I fill the list within my threads and after a minute send the queries, the enumeration of the list is changed within the threads, what about that? I tried lock(list) { // send the queries } but this does not work http://stackoverflow.com/questions/1458931/debug-threadpool-in-c/1458974#1458974 Comment by Xelluloid on Debug Threadpool in C# Xelluloid 2009-09-22T09:14:49Z 2009-09-22T09:14:49Z perhaps using the window for direct debugging? What I want to know is, what threads exactly the threadpool manages? All threads of the program or just the threads that I started by QueueUserWorkItem? http://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-api/1377724#1377724 Comment by Xelluloid on Configure the root logger with java logging API Xelluloid 2009-09-04T07:59:41Z 2009-09-04T07:59:41Z oh sorry I've done a mistake =) now it works fine, thanks to you http://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-api/1377724#1377724 Comment by Xelluloid on Configure the root logger with java logging API Xelluloid 2009-09-04T07:57:07Z 2009-09-04T07:57:07Z this does not work as I mentioned in my comment under my question it seems that I do not access the root logger by &quot;&quot; http://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-api Comment by Xelluloid on Configure the root logger with java logging API Xelluloid 2009-09-04T07:47:03Z 2009-09-04T07:47:03Z Why can't I access the root log via getLogger(&quot;&quot;)??? Afterwards still only the logs in the main class produce the output