User Xelluloid - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:13:34Zhttp://stackoverflow.com/feeds/user/23681http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1097986/caching-in-flex0Caching in Flex Xelluloid2009-07-08T13:12:49Z2009-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-resourcemanager0NumberValidator conflicts with resourcemanagerXelluloid2009-12-03T10:51:49Z2009-12-03T10:51:49Z
<p>Hi,</p>
<p>I have written the following test</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application
creationComplete="{init()}"
xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
viewSourceURL="srcview/index.html">
<mx:NumberValidator source="{testInput}"
property="text" minValue="0" domain="real"
trigger="{testInput}" triggerEvent="change"
valid="testValid=true;"
invalid="testValid=false;"
/>
<mx:Script>
<![CDATA[
private var testValid : Boolean = true;
private function init():void{
Languages.setResources(resourceManager);
}
private function changeLocale(locale:String):void{
resourceManager.localeChain=[locale];
}
]]>
</mx:Script>
<mx:ApplicationControlBar width="400">
<mx:Label text="{resourceManager.getString('myResources','TITLE')}" width="100%"/>
<mx:Button label="eng" click="changeLocale('en_US')" />
<mx:Button label="ita" click="changeLocale('it_IT')" />
<mx:TextInput text="" id="testInput" width="40" />
</mx:ApplicationControlBar>
</mx:Application>
</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-datafields0Use Localization for DataGrid datafieldsXelluloid2009-12-02T16:33:05Z2009-12-02T16:33:05Z
<p>Hi there I have implemented my own ResourceManager for localizing my application by using </p>
<pre><code><mx:Label text="{resourceManager.getString('myResources','Spot')}" />
</code></pre>
<p>instead of </p>
<pre><code><mx:Label text="Spot" />
</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><mx:DataGrid width="100%" height="100%" dataProvider="{xmlFile.item}">
<mx:columns>
<mx:DataGridColumn headerText="strings" dataField="string" />
<mx:DataGridColumn headerText="values" dataField="value" />
</mx:columns>
</mx:DataGrid>
</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><mx:DataGridColumn headerText="strings" dataField="{resourceManager.getString('myResources',string)}" />
</code></pre>
http://stackoverflow.com/questions/1807704/case-when-with-strings-in-mysql0Case ... When with strings in mysqlXelluloid2009-11-27T09:40:09Z2009-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-expressions1VTD XML inner XPath ExpressionsXelluloid2009-11-19T11:04:57Z2009-11-19T21:34:56Z
<p>Hi I have a xml file for example like this</p>
<pre><code><root>
<test>
<bla>test1</bla>
</test>
<test>
<bla>test2</bla>
</test>
<test>
</test>
</root>
</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-thread0Exception when loosing a threadXelluloid2009-11-19T09:13:07Z2009-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-flex1Saving and Loading XML file with flexXelluloid2009-08-25T07:51:39Z2009-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-c0Debug Threadpool in C#Xelluloid2009-09-22T09:02:46Z2009-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-interfaces0Useful Inheritance in Python resp. Alternative for interfacesXelluloid2009-11-10T07:25:56Z2009-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-flex0resizing event in flexXelluloid2009-06-23T10:38:57Z2009-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-flex0Get the type in flexXelluloid2009-06-24T09:11:30Z2009-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-designer1Applet with Gui Designer Xelluloid2009-01-05T04:28:41Z2009-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-debugging1No Symbols loaded when remote debuggingXelluloid2008-09-30T06:21:38Z2009-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-right0Graphviz top to bottom AND left to rightXelluloid2009-09-29T08:43:09Z2009-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-executenonquery0Threads get stuck in MySqlCommand.ExecuteNonQuery()Xelluloid2009-09-23T14:26:26Z2009-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) => {
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-hyperref0Bookmark level difference when using hyperrefXelluloid2009-09-08T07:36:57Z2009-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-arguments1call() of function with argumentsXelluloid2009-09-04T11:28:53Z2009-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-api2Configure the root logger with java logging APIXelluloid2009-09-04T07:29:15Z2009-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-error1Same domain but security errorXelluloid2009-09-02T09:42:44Z2009-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><?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="5.6.7.8" to-ports="*" />
</cross-domain-policy>
</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-flex1Links in Datagrid (flex)Xelluloid2009-09-01T12:07:25Z2009-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><xml>
<item>
<name>A name</name>
<url>A url</name>
</item>
<item>
<name>Another name</name>
<url>Another url</name>
</item>
</xml>
</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-datatip0Custom Itemrender in Datagrid with DatatipXelluloid2009-08-26T13:37:21Z2009-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-classfactory1Cannot Convert to ClassFactoryXelluloid2009-08-26T14:43:25Z2009-08-26T14:48:18Z
<p>I have this item renderer MyRenderer.mxml</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" implements="mx.core.IDataRenderer" >
<mx:Script>
<![CDATA[
[Bindable]
public var greylist : XML;
public function newInstance() : * {
return new MyRenderer();
}
]]>
</mx:Script>
</mx:HBox>
</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-file1configuring log4net with xml fileXelluloid2009-08-24T09:09:03Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<log4net>
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" >
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%ndc] - %message%newline" />
</layout>
</appender>
<root>
<level value="INFO" />
<appender-ref ref="ConsoleAppender" />
</root>
</log4net>
</configuration>
</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-c2Threaded event handling (C#)Xelluloid2009-08-24T09:40:31Z2009-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-actionscript0fade in of added component with ActionscriptXelluloid2009-07-02T16:56:37Z2009-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-c1Threadsafe and generic arraylist in c #?Xelluloid2009-08-14T13:59:42Z2009-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-net0Caching in C#/.NetXelluloid2009-08-14T07:50:44Z2009-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-java1Load Webpage with login in javaXelluloid2009-08-04T13:14:17Z2009-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-chart0Add own watermark to flex chartXelluloid2009-07-28T07:44:26Z2009-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-flex0draw dot on linechart in flexXelluloid2009-07-17T13:15:07Z2009-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-resourcemanagerComment by Xelluloid on NumberValidator conflicts with resourcemanagerXelluloid2009-12-03T11:12:43Z2009-12-03T11:12:43ZOk answer to my own post ;) When I do incomplete localization by
private function changeLocale(locale:String):void{
resourceManager.localeChain=[locale, "en_US"];
}
everything works fine, can someone tell how I can achieve this without this workaround?http://stackoverflow.com/questions/1834124/use-localization-for-datagrid-datafieldsComment by Xelluloid on Use Localization for DataGrid datafieldsXelluloid2009-12-02T17:24:15Z2009-12-02T17:24:15ZOk I just solved it with a custom label function =)
<mx:DataGridColumn headerText="strings" labelFunction="getName" />
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#1807748Comment by Xelluloid on Case ... When with strings in mysqlXelluloid2009-11-27T15:01:53Z2009-11-27T15:01:53Zthis was simply an example but your answer fits my needs, thank youhttp://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread/1762055#1762055Comment by Xelluloid on Exception when loosing a threadXelluloid2009-11-19T10:58:32Z2009-11-19T10:58:32Zbut it is not an exception that is thrown but an Error :)http://stackoverflow.com/questions/1761921/exception-when-loosing-a-thread/1761932#1761932Comment by Xelluloid on Exception when loosing a threadXelluloid2009-11-19T09:27:55Z2009-11-19T09:27:55Zsure =) 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#1761933Comment by Xelluloid on Exception when loosing a threadXelluloid2009-11-19T09:26:20Z2009-11-19T09:26:20Zsorry, no the threads stops with an OutOfMemoryError, my boss just suggested to handle it with a catch(Throwable). I try it nowhttp://stackoverflow.com/questions/1706167/useful-inheritance-in-python-resp-alternative-for-interfaces/1706185#1706185Comment by Xelluloid on Useful Inheritance in Python resp. Alternative for interfacesXelluloid2009-11-11T07:41:30Z2009-11-11T07:41:30Zok 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#1706185Comment by Xelluloid on Useful Inheritance in Python resp. Alternative for interfacesXelluloid2009-11-10T07:36:07Z2009-11-10T07:36:07Zbut I cannot say baseClass c = sub1() my interpreter says invalid syntaxhttp://stackoverflow.com/questions/1491322/graphviz-top-to-bottom-and-left-to-right/1491356#1491356Comment by Xelluloid on Graphviz top to bottom AND left to rightXelluloid2009-09-29T08:57:59Z2009-09-29T08:57:59Zah sorry for sure when you now add d2 -> a2 I still want to be a, b, c and d on top but a1, a2, a3 still in one line as abovehttp://stackoverflow.com/questions/1466340/threads-get-stuck-in-mysqlcommand-executenonquery/1466372#1466372Comment by Xelluloid on Threads get stuck in MySqlCommand.ExecuteNonQuery()Xelluloid2009-09-24T07:58:09Z2009-09-24T07:58:09Zoh ... think I have had misunderstanding about the locking mechanism :) I now lock another Object when sending the list and when filling the listhttp://stackoverflow.com/questions/1466340/threads-get-stuck-in-mysqlcommand-executenonquery/1466372#1466372Comment by Xelluloid on Threads get stuck in MySqlCommand.ExecuteNonQuery()Xelluloid2009-09-24T07:52:15Z2009-09-24T07:52:15Zok 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 workhttp://stackoverflow.com/questions/1458931/debug-threadpool-in-c/1458974#1458974Comment by Xelluloid on Debug Threadpool in C#Xelluloid2009-09-22T09:14:49Z2009-09-22T09:14:49Zperhaps 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#1377724Comment by Xelluloid on Configure the root logger with java logging APIXelluloid2009-09-04T07:59:41Z2009-09-04T07:59:41Zoh sorry I've done a mistake =) now it works fine, thanks to youhttp://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-api/1377724#1377724Comment by Xelluloid on Configure the root logger with java logging APIXelluloid2009-09-04T07:57:07Z2009-09-04T07:57:07Zthis does not work as I mentioned in my comment under my question it seems that I do not access the root logger by ""http://stackoverflow.com/questions/1377706/configure-the-root-logger-with-java-logging-apiComment by Xelluloid on Configure the root logger with java logging APIXelluloid2009-09-04T07:47:03Z2009-09-04T07:47:03ZWhy can't I access the root log via getLogger("")??? Afterwards still only the logs in the main class produce the output