User lbownik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T01:56:29Zhttp://stackoverflow.com/feeds/user/24028http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808265/how-to-make-a-form-shrink-to-a-smallest-possible-size0How to make a form shrink to a smallest possible size?lbownik2009-11-27T11:42:55Z2009-11-27T13:24:10Z
<p>How to make a form shrink to a smallest possible size Windows.Forms?</p>
<p>There was a pack() method in Swing that woked well but if I make all the components and a form itself AutoSise = true I get a dot (one pixel dot) on the screen.</p>
http://stackoverflow.com/questions/1769842/serialization-of-method-object-in-java-is-possible/1769902#17699023Answer by lbownik for Serialization of Method object in Java is possible?lbownik2009-11-20T11:31:01Z2009-11-20T11:31:01Z<p>You can do it manually. Just serialize your class name, method name and parameter class names as strings and then recreate your Method object using a reflection mechanism during deserialization.</p>
<pre><code>Class.forName(clsName).getMethod("methodName", Class.forName(param1ClsName), ....);
</code></pre>
<p>If you implement Externalizable interface then You can use your class as regular serializable class.</p>
http://stackoverflow.com/questions/1254432/how-to-force-a-net-form-control-eg-a-button-to-be-always-rectangular0How to force a .net form control (eg a button) to be always rectangular ?lbownik2009-08-10T11:43:40Z2009-11-12T16:00:03Z
<p>How to force a .net (under ms windows) form control (eg a button) to be always rectangular ?</p>
<p>I want it to be able to change it's size but be always rectangular.</p>
http://stackoverflow.com/questions/1679575/how-to-make-a-toolstripsplitbutton-to-select-last-items-action-as-default0How to make a ToolStripSplitButton to select last items action as default ?lbownik2009-11-05T10:14:55Z2009-11-05T10:14:55Z
<p>Hi!</p>
<p>I would like to have a ToolStripSplitButton that invokes it's last invoked DropDownItemClick in Click event.</p>
<p>If You've used Abby FineReader then You know what I meam.</p>
<p>I know I can link everything in a form class but I would like to have a deriver class that does it out of the box.</p>
<p>I could do it easyly if public ToolStripItemCollection DropDownItems { get; }
was virtual - but it isnt.</p>
<p>Also there is no ItemAdded, ItemRemoved events. So Any ideas ?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1570575/c-onpaint-mousemove-high-cpu-usage/1570601#1570601-1Answer by lbownik for C# OnPaint mousemove high cpu usagelbownik2009-10-15T06:23:24Z2009-10-15T06:23:24Z<p>You can use this code to supress and resume redrawing of a control :]
Good luck.</p>
<pre><code> using System;
using System.Windows.Forms;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace pl.emag.audiopc.gui {
// ************************************************************************
//`enter code here`
// ************************************************************************
public class PaintingHelper {
// ********************************************************************
//
// ********************************************************************
public static void SuspendDrawing(Control parent) {
SendMessage(parent.Handle, WM_SETREDRAW, false, 0);
}
// ********************************************************************
//
// ********************************************************************
public static void ResumeDrawing(Control parent) {
SendMessage(parent.Handle, WM_SETREDRAW, true, 0);
parent.Refresh();
}
// ********************************************************************
//
// ********************************************************************
[DllImport("user32.dll")]
private static extern int SendMessage(IntPtr hWnd, Int32 wMsg,
bool wParam, Int32 lParam);
// ********************************************************************
//
// ********************************************************************
private const int WM_SETREDRAW = 11;
}
}
</code></pre>
http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects0db4o to preserve identity of objects.lbownik2009-05-26T15:03:02Z2009-10-13T11:07:33Z
<p>Is there a way to preserve an objest identity in db4o.</p>
<p>Suppose I store a BigDecimal in embedded db4o.</p>
<p>When I read it twice I get two distict objects with the same value (which is quite obvious).</p>
<p>Is there any setting to force db4o to cashe query sersults so that two querries would return reference to the same instance, or do I have to do it myself ?</p>
http://stackoverflow.com/questions/801844/drools-collect-pattern-problem0Drools collect pattern problemlbownik2009-04-29T11:01:40Z2009-09-27T00:00:01Z
<p>I have a rule LHS like that</p>
<pre><code>when
$location : Location()
$cabinets : ArrayList() from collect ( Cabinet() from $location.elements() )
then
</code></pre>
<p>an when I print the content of @cabinets in RHS I see that it contains all elements (also those that are not of class Cabinet ).</p>
<p>I want to collect ontly cabinets from $location>elements().</p>
<p>What did I do wrong ?</p>
http://stackoverflow.com/questions/1153471/how-can-i-import-a-database-schema-into-ms-access-2003-from-sql-text-file0How can I import a database schema into MS Access 2003 from sql text file?lbownik2009-07-20T13:08:28Z2009-09-15T10:00:00Z
<p>I chave a db schema generated in a text file (DDL - MS Access compliant).</p>
<p>Where is the option in MS Acces to import that damn schema into na empry database ?</p>
http://stackoverflow.com/questions/304802/is-there-a-free-lgpl-bsd-etc-rdf-editor-component-for-swing1Is there a free (LGPL< BSD, etc. ) RDF editor component for swing ?lbownik2008-11-20T09:48:10Z2009-08-25T11:30:25Z
<p>I look for a JComponenet based RDF editor which I could embed in my application?</p>
<p>It does'n need to be fancy .</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1254421/how-can-i-set-fixed-xaxis-points-in-ms-chart-contol0How can I set fixed XAxis points in MS Chart Contol?lbownik2009-08-10T11:41:45Z2009-08-10T11:41:45Z
<p>Hi!</p>
<p>I use a MS Chart fo .Net 3.5 sp1 in my project.</p>
<p>I want to show charts that always have fixed x axis labels no matter if there exists a value for that point or not.</p>
<p>For example I want the values 1,2,3, 4 and 5 always visible on x axis even if the data series visible consists of points eg. (1,3), (2,2) and (5,4) - so 3 and 4 are missing.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/796486/how-to-create-create-a-release-package-with-maven0How to create create a release package with maven ?lbownik2009-04-28T06:38:31Z2009-07-30T21:42:01Z
<p>I build a desktop application using Maven2.</p>
<p>I'd like to make a release from time to time (just copy all the project's and third party jars into a single dir and generate a run.bat file).</p>
<p>How to do it ?</p>
http://stackoverflow.com/questions/1163449/is-there-an-implementation-of-org-apache-commons-lang-validate-for-net0Is there an implementation of org.apache.commons.lang.Validate for .Net ?lbownik2009-07-22T06:47:43Z2009-07-22T06:57:30Z
<p>Is there an implementation of org.apache.commons.lang.Validate for .Net ?</p>
http://stackoverflow.com/questions/304663/how-can-i-validate-parameters-without-creating-a-separate-dialog1How can I validate parameters without creating a separate dialog?lbownik2008-11-20T08:44:14Z2009-07-21T19:28:40Z
<p>I'm going to make an application (in Swing) that uses a tree to visualize a data structure (JTree). A tree will be on the left side of a window. The user will be able to browse a tree. The parameters of every tree node will be displayed on the right side of the window.
The example windows will be looking like this</p>
<pre><code>===========================
| tree panel | data panel |
| | |
| | |
| | |
---------------------------
</code></pre>
<p>The problem arises when a user wants to change that data. when should I validate them ?
The easy approach is to open a new modal dialog (JDialog) and let the user to change this data in it. Validation of data would take place in an "ok" button listener method but this is a little clunky. I would like to allow the user to edit those data right in the data panel. In that case when should I validate them?</p>
<p>Is there a pattern of such solution in Swing?</p>
<p>Or any online tutorial how to do it?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/173348/which-database-implementations-allow-sandboxing-users-in-separate-databases1Which database implementations allow sandboxing users in separate databases ?lbownik2008-10-06T06:35:05Z2009-07-21T16:27:52Z
<p>Can anyone tell me if there are RDBMSs that allow me to create a separate database for every user so that there is full separation of users' data?
Are there any?</p>
<p>I know I can add UID to every table but this solution has its own problems (for example per user database schema changes are impossible).</p>
http://stackoverflow.com/questions/1105883/how-to-version-a-joomla-website1How to version a joomla website ?lbownik2009-07-09T19:06:46Z2009-07-21T08:59:43Z
<p>How can I version a Joomla website.</p>
<p>When I do a hand made web application I put the code and database schema into SVN and add a script that updates a working copy, sets up a database and resets a server.</p>
<p>With Joomla I am lost :(</p>
http://stackoverflow.com/questions/949082/is-there-a-way-to-put-a-version-number-in-xml-generated-by-xstream3Is there a way to put a version number in XML generated by XStream ?lbownik2009-06-04T07:30:59Z2009-06-04T07:54:40Z
<p>I serialize my domainObjects using XStream.</p>
<p>I would like to add some kind of versioning information to a generated xml file just in case my domain model changes.</p>
<p>Is there a way to do it using xstream ?</p>
<p>I vould prefer a parameter named "version" in a root tag (<code><object-stream></code>) but anything else would be good too.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects3How does db4o instantiate objects ?lbownik2009-05-26T10:36:57Z2009-05-26T10:52:43Z
<p>What mechanism does db4o use to instatniate stored objects ?</p>
<p>My class isn't Serializable and doesn't provide zero argument constructor and the only constructor throws NullPointerException when it's argument is null.</p>
<p>In spite of that db4o can still instantiate stored objects of that class (thugh with incorrect values).</p>
<p>If I can understand the mechanism perchaps i can track the bug I have.</p>
<p>I will appreciate any links :]</p>
http://stackoverflow.com/questions/839763/why-do-my-jdialogs-leak2Why do my JDialogs leak ?lbownik2009-05-08T13:21:26Z2009-05-08T18:20:03Z
<p>I have a JFrame and I open a JDialog from it and another JDialog from that dialog - which menas i have 3 windows visible (JFrame, JDialog1, Jdialog2).</p>
<p>When I close both dialogs and run a garbage collectior few times (from netbeans profiler)
I can see that JDialog2 (the one opened from JDialog1) is garbage collected but JDialog1 (opened from JFrame) is still hanging in live objects pool.</p>
<p>I create new objects every time - so after some time I have an OutOfMemoryError doue to memory leak.</p>
<p>Do I have to treat JDialogs in som special way so they don't leak ?</p>
<p>by the way
i do <code>setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE)</code>
on both dialogs,</p>
http://stackoverflow.com/questions/839178/why-is-javas-iterator-not-an-iterable5Why is Java's Iterator not an Iterable?lbownik2009-05-08T10:19:43Z2009-05-08T15:38:14Z
<p>Why does the <code>Iterator</code> interface not extend extend <code>Iterable</code>?</p>
<p>The <code>iterator()</code> method could simply return '<code>this</code>'.</p>
<p>Is it on purpose or just an oversight of Java's designers?</p>
<p>It would be convenient to be able to use a for-each loop with iterators like this:</p>
<pre><code>for(Object o : someContainer.listSomObjects()) {
....
}
</code></pre>
<p>where <code>listSomeObject</code> returns an iterator.</p>
http://stackoverflow.com/questions/838439/array-of-stacks/838454#8384541Answer by lbownik for array of stackslbownik2009-05-08T06:17:19Z2009-05-08T06:17:19Z<p>Why do you use arrays anyway ?</p>
<p>It is a low level programming structure.</p>
<p>Using <code>List</code> or <code>Set</code> instead (eg <code>org.apache.commons.collections.list.LazyList</code>) if you don't want to bother with innitialization.</p>
<p>Or at least </p>
<p><code>Arrays.asList(new Stack[52])</code> to wrap an array into a list.</p>
<p>I couldnt reproduce jour error anywany .. :( perchaps it's because a different warning/errorlevel set.</p>
http://stackoverflow.com/questions/833604/can-i-compile-java-myself3Can I compile java myself ?lbownik2009-05-07T09:05:31Z2009-05-07T10:55:29Z
<p>Is they say that sun's java is opensource now - then can I compile all the patform from sources ?</p>
<p>I used gentoo and I found a great performance inmrovement wnen I compiled the system myself, so can it be done with java (both vm runtime and library classes ) ?</p>
<p>Is it possible to do under windows/linux ?</p>
<p>Did anyone do it ?</p>
<p>Does it make any sense ?</p>
http://stackoverflow.com/questions/619052/how-to-measure-usability-to-get-hard-data2How to measure usability to get hard data ?lbownik2009-03-06T14:35:18Z2009-05-01T15:46:06Z
<p>There are a few posts on usability but none of them was useful to me.</p>
<p>I need a quantitative measure of usability of some part of an application.
I need to estimate it in hard numbers to be able to compare it with future versions (for e.g. reporting purposes). The simplest way is to count clicks and keystrokes, but this seems too simple (for example is the cost of filling a text field a simple sum of typing all the letters ? - I guess it is more complicated).
I need some mathematical model for that so I can estimate the numbers.</p>
<p>Does anyone know anything about this?</p>
<p>P.S. I don't need links to resources about designing user interfaces. I already have them. What I need is a mathematical apparatus to measure existing applications interface usability in hard numbers. </p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/177468/qt-and-no-moc-cpp-file1Qt and no moc_*.cpp filelbownik2008-10-07T07:16:10Z2009-04-29T13:17:29Z
<p>I'm developing a simple qt4 app and making my own dialog.
I subclassed QDialog, inserted Q_OBJECT macro in class declaration block and..</p>
<p>I get [Linker error] undefined reference to `vtable for MyDialog' and there is no
moc_MyDialog.cpp generated by moc compiler.</p>
<p>I Use Qt 4.1.3 on windows XP and mingw - i do the build proces from QT supplied build shell. I used qmake do create make files and compile everything with a make command.</p>
<p>I have other classes that subclass QPushButton and QObject respectively,but they compile
ok - but i can't find any fifferences between them and the broken one.</p>
<p>There must be missing something in the broken class.. but I'm uable to spot it :(</p>
<p>Help ! </p>
http://stackoverflow.com/questions/796486/how-to-create-create-a-release-package-with-maven/797117#7971170Answer by lbownik for How to create create a release package with maven ?lbownik2009-04-28T09:59:22Z2009-04-28T09:59:22Z<p>OK I got it with a little help of fahdshariff's answer</p>
<p>I used my own assemlby file src/main/assemlby.assembly.xml</p>
<pre><code><assembly>
<id>teleinf</id>
<formats>
<format>dir</format>
</formats>
<moduleSets>
<moduleSet>
<includes>
<include>pl..........:core</include>
<include>pl..........:gui</include>
</includes>
<binaries>
<outputDirectory>../../release</outputDirectory>
<unpack>false</unpack>
</binaries>
</moduleSet>
</moduleSets>
<fileSets>
<fileSet>
<directory>src/main/assembly/</directory>
<outputDirectory>../../release</outputDirectory>
<includes>
<include>*.bat</include>
</includes>
</fileSet>
</fileSets>
</assembly>
</code></pre>
<p>and added following to pom</p>
<pre><code> <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</code></pre>
<p>I had to write a run.bat myself - so it's not fully satisfying but will do.</p>
http://stackoverflow.com/questions/771801/edited-properties-who-cant-be-set-to-true-false-equally/771871#7718711Answer by lbownik for Edited properties who can't be set to true/false equallylbownik2009-04-21T09:52:08Z2009-04-21T09:52:08Z<p>You propably mismodeled your solution.</p>
<p>Try to think in a different way - perhaps U can eliminate some parameters that can be inferred from the others or u can use enumarations to combine few parameters into one.</p>
<p>Investigate your parameters' value space to find it out.</p>
http://stackoverflow.com/questions/696772/how-to-select-nodes-in-netbeans-visual-library1How to select nodes in Netbeans Visual Library?lbownik2009-03-30T11:06:53Z2009-04-15T20:55:17Z
<p>I create a graph based visual applicaion using a Netbens Visual Library.</p>
<p>Can somebody post a code sample that enables a selection of nodes with mouse clicks (and Ctrl key fo multiple selection) ?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/713740/do-you-use-pre-release-software-to-develop-commercial-products/713758#713758-1Answer by lbownik for Do you use pre-release software to develop commercial products?lbownik2009-04-03T12:46:35Z2009-04-03T12:46:35Z<p>As a rule of thumb I never use such unstable components in production software.</p>
<p>If u need quality you should build on strong basis.</p>
<p>I know that many big software companies don't use new components and technologies until they get mature enough - just to stay on the safe side.</p>
<p>It all depends on the risk U are willing to accept.</p>
http://stackoverflow.com/questions/673646/how-can-i-prevent-permgen-space-errors-in-netbeans/673760#6737603Answer by lbownik for How can I prevent PermGen space errors in Netbeans?lbownik2009-03-23T15:11:17Z2009-03-23T15:11:17Z<p>It is because of constant class loading.</p>
<p>Java stores class byte code and all the copnstants (eg string constants) in permament heap that is not garbage collected by default (which make sense in majority of situations because classes are loaded only once during the liftime of an application).</p>
<p>In applications chat often load classes during an entire liftime that are:
- web and application servers during hot redeployment;
-IDE's when runing developped applications (every time U hit Run button in Netbeans or eclipse it loads your application's classes a new);
- etc
this behavior is imporpoer because a heap fills full eventually.</p>
<p>U need to turn on permament heap garbage collection to prevent this error.</p>
<p>I use options</p>
<pre><code>-XX:MaxPermSize=256M
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled
</code></pre>
<p>(stopped my eclipse 3.4 from throwing "java.lang.OutOfMemoryError: PermGen space" so it should also work with netbeans).</p>
http://stackoverflow.com/questions/438628/is-there-a-posibility-to-break-on-every-object-reference-in-eclipse-debugger5Is there a posibility to break on every object reference in eclipse debugger ?lbownik2009-01-13T11:03:38Z2009-01-14T15:17:55Z
<p>Suppose I have a class</p>
<pre><code>public classs MyClass {
private Set<String> set = new HashSet<String>();
//and many methods here
}
</code></pre>
<p>is there a possibility to make an eclipse debugger stop at every line where set member is used ?</p>
http://stackoverflow.com/questions/320682/do-i-need-to-free-swing-components-before-letting-them-get-garbage-collected0Do I need to free Swing components before letting them get garbage collected ?lbownik2008-11-26T13:23:58Z2008-11-26T15:03:39Z
<p>Wnen I use external resources such as files or DB connection I need to close them before I let them go.</p>
<p>Do I need to do the same thing with Swing components ? If yes then how ?</p>
http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects/1559558#1559558Comment by lbownik on db4o to preserve identity of objects.lbownik2009-10-15T06:15:26Z2009-10-15T06:15:26Zthe link is brokenhttp://stackoverflow.com/questions/1163449/is-there-an-implementation-of-org-apache-commons-lang-validate-for-net/1163496#1163496Comment by lbownik on Is there an implementation of org.apache.commons.lang.Validate for .Net ?lbownik2009-07-22T07:05:54Z2009-07-22T07:05:54ZYes, I'm aware of that. But I need validation in release version too. Thanks anyway :]http://stackoverflow.com/questions/1153471/how-can-i-import-a-database-schema-into-ms-access-2003-from-sql-text-file/1153504#1153504Comment by lbownik on How can I import a database schema into MS Access 2003 from sql text file?lbownik2009-07-20T13:49:58Z2009-07-20T13:49:58Zsorry - it doesn't work, only DML statments are supported in querrieshttp://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objectsComment by lbownik on db4o to preserve identity of objects.lbownik2009-07-20T11:30:55Z2009-07-20T11:30:55ZNo i did not. I changed a storage mechanizm from embedded db4o to XStrem. http://stackoverflow.com/questions/839178/why-is-javas-iterator-not-an-iterableComment by lbownik on Why is Java's Iterator not an Iterable?lbownik2009-05-08T10:53:01Z2009-05-08T10:53:01ZOK - I see your point buut . it would still be convenient even if it broke a semantics a little :]
Thank U for all the answers :]http://stackoverflow.com/questions/801844/drools-collect-pattern-problem/801904#801904Comment by lbownik on Drools collect pattern problemlbownik2009-04-29T11:40:06Z2009-04-29T11:40:06Zlike this
$cabinets : ArrayList( size == 3) from collect ( Cabinet() from $location.elements() )http://stackoverflow.com/questions/801844/drools-collect-pattern-problem/801904#801904Comment by lbownik on Drools collect pattern problemlbownik2009-04-29T11:36:10Z2009-04-29T11:36:10ZYse but what if i need to ount the amount of collected cabinets ?http://stackoverflow.com/questions/801844/drools-collect-pattern-problem/801870#801870Comment by lbownik on Drools collect pattern problemlbownik2009-04-29T11:20:41Z2009-04-29T11:20:41Zafter doing that I get
Unable to create a Field value of type 'ValueType = 'Object'' and value 'Cabinet.class' : [Rule name=Urządzenia bez szafy, agendaGroup=MAIN, salience=0, no-loop=false]
java.lang.NoSuchFieldException: classUnable to create restriction '[QualifiedIndentifierRestr: == Cabinet.class ]' for field 'class' in the rule 'Urządzenia bez szafy' : [Rule name=Urządzenia bez szafy, agendaGroup=MAIN, salience=0, no-loop=false]
so it is propably wronghttp://stackoverflow.com/questions/673646/how-can-i-prevent-permgen-space-errors-in-netbeans/673760#673760Comment by lbownik on How can I prevent PermGen space errors in Netbeans?lbownik2009-03-25T10:06:24Z2009-03-25T10:06:24Ztry to icrease MaxPermSize to 512M or more beacuse garbage collecting permament hep will still not help if an application ties to store there more than it can contain (the amount of alive permamanet objects exceedes permament heap capacity)http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/490746#490746Comment by lbownik on Favorite (Clever) Defensive Programming Best Practiceslbownik2009-01-29T07:50:49Z2009-01-29T07:50:49ZI found by my experience that this solution is wrong. If something goes wrong the application shoult fail hard so that the bug is impossible to be ignored ("Code complete"). This means NullPointer Exception in place of error and apropriate catch block at che user interfece level.http://stackoverflow.com/questions/336405/java-database-pollerComment by lbownik on Java Database Poller?lbownik2008-12-03T07:33:02Z2008-12-03T07:33:02ZPlease make it a little clearer :]http://stackoverflow.com/questions/320682/do-i-need-to-free-swing-components-before-letting-them-get-garbage-collected/320820#320820Comment by lbownik on Do I need to free Swing components before letting them get garbage collected ?lbownik2008-11-26T14:21:39Z2008-11-26T14:21:39ZAn what if I only get rid of a JPanel lith some controls in order to put there someting else ? Withount closing the entire window. What then ?http://stackoverflow.com/questions/320682/do-i-need-to-free-swing-components-before-letting-them-get-garbage-collected/320690#320690Comment by lbownik on Do I need to free Swing components before letting them get garbage collected ?lbownik2008-11-26T14:07:58Z2008-11-26T14:07:58ZBut swing components use external resources (eg window handles I gues), what about them ?http://stackoverflow.com/questions/314203/overloading-methods-by-return-type-in-java/314365#314365Comment by lbownik on Overloading methods by return type in java.lbownik2008-11-24T15:14:50Z2008-11-24T15:14:50ZYes, but if I make the Form class package private and use a factory class with a method that returns IFrom (I actually use it ) then everything should be ok. :]http://stackoverflow.com/questions/314203/overloading-methods-by-return-type-in-java/314208#314208Comment by lbownik on Overloading methods by return type in java.lbownik2008-11-24T14:19:46Z2008-11-24T14:19:46ZI reedited it a little to make my intenntion clearer - please look agani. Thank you.