User bernhardrusch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T04:12:55Zhttp://stackoverflow.com/feeds/user/3056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1714452/microsoft-net-vs-lamp-for-startups/1714579#17145792Answer by bernhardrusch for Microsoft .NET vs. LAMP for startupsbernhardrusch2009-11-11T11:25:24Z2009-11-11T11:25:24Z<p>If you feel comfortable with .NET, but want to limit your expenses a little bit - maybe an open source database would help you with that.</p>
<p>We are using MySql as a database on a linux server for our Windows applications - and it is working fine for us. But we have got linux experience in house - so this is no problem for us. (But you can install MySql or PostgreSQL on a Windows server too - but I have never done this productively)</p>
http://stackoverflow.com/questions/1685985/is-4-5-years-the-midlife-crisis-for-a-programming-career/1686014#16860142Answer by bernhardrusch for Is 4-5 years the “Midlife Crisis” for a programming career?bernhardrusch2009-11-06T07:35:49Z2009-11-06T07:35:49Z<p>In my opinion it's not midlife crisis - I'd say the honeymoon is over.</p>
http://stackoverflow.com/questions/1630862/mysql-are-the-consistency-data-loss-query-optimization-issues-i-read-about-that/1630945#16309451Answer by bernhardrusch for MySQL: are the consistency/data loss/query optimization issues I read about "that bad"?bernhardrusch2009-10-27T13:51:32Z2009-10-27T13:51:32Z<p>We are using MySQL in some applications - and it is doing a pretty good job.
In the newer projects we are using the InnoDB engine - and albeit it may be slower than the default engine it is working well.<br />
Right now we are using an ORM mapper - and so most of the complexity is hidden behind the ORM mapper (and working nice). </p>
<p>I think the infrastructure (Tools and information) is one of MySQL's big plusses: we are using really nice tools: <a href="http://www.quest.com/toad-for-mysql/" rel="nofollow">Toad for MySQL</a> and <a href="http://dev.mysql.com/downloads/gui-tools/5.0.html" rel="nofollow">MySQL Administrator</a>. </p>
<p>Altough I have to admit that I had a shocking experience last week when helping a friend with a SQL statement and the correleated subquery nearly stopped his MySQL server - but with the trick of enclosing it in another query - it worked really well.<br />
This is nothing which REALLY shocks me - because I've used other DB systems which cost big bucks (I'm looking at you - DB2) - and they had other things to work around. (maybe not as drastic - but still you had to optimize for them).</p>
http://stackoverflow.com/questions/488250/c-compare-two-generic-values4c# compare two generic valuesbernhardrusch2009-01-28T16:19:58Z2009-10-24T23:19:51Z
<p>I've coded something like this:</p>
<pre><code>public bool IsDataChanged()
{
T value1 = GetValue2;
T value2 = GetValue1();
return (valueInDB != valueFromView);
}
</code></pre>
<p>Right now the function doesn't compile with the error "<em>Operator '!=' cannot be applied to operands of type 'T' and 'T'</em>". What do I have to do to make this function work ?</p>
http://stackoverflow.com/questions/1612505/windows-forms-showdialog-dialog-doesnt-show-up0Windows forms: ShowDialog - dialog doesn't show upbernhardrusch2009-10-23T10:08:24Z2009-10-23T10:24:29Z
<p>I am running an external process from an outlook plugin - and it doesn't show the dialog. I am using ShowDialog without parameters.</p>
<p>Any ideas how to show the dialog ? </p>
<p>The process doesn't have any form - i just want to show a dialog with some selections. If I call "MessageBox.Show" before, the dialog is shown - otherwise not.</p>
<p>I guess it is something like the answer of Peterchen in this thread: <a href="http://stackoverflow.com/questions/816885/form-showdialog-or-form-showdialogthis/817240#817240">http://stackoverflow.com/questions/816885/form-showdialog-or-form-showdialogthis/817240#817240</a></p>
<p>BTW I don't have any owner, because this process doesn't have any "main window".</p>
<p>Any ideas ?</p>
http://stackoverflow.com/questions/41590/how-do-you-properly-use-namespaces-in-c/41624#4162412Answer by bernhardrusch for How do you properly use namespaces in C++?bernhardrusch2008-09-03T13:10:02Z2009-10-21T13:03:44Z<p>To avoid saying everything Mark Ingram already said a little tip for using namespaces:</p>
<p>Avoid the "using namespace" directive in header files - this opens the namespace for all parts of the program which import this header file. In implementation files (*.cpp) this is normally no big problem - altough I prefer to use the "using namespace" directive on the function level.</p>
<p>I think namespaces are mostly used to avoid naming conflicts - not necessarily to organize your code structure. I'd organize C++ programs mainly with header files / the file structure.</p>
<p>Sometimes namespaces are used in bigger C++ projects to hide implementation details.</p>
<p>Additional note to the using directive:
Some people prefer using "using" just for single elements:<br />
using std::cout;<br />
using std::endl;</p>
http://stackoverflow.com/questions/1576463/keep-window-in-foreground-even-if-it-loses-focus0Keep window in foreground (even if it loses focus)bernhardrusch2009-10-16T06:40:12Z2009-10-16T06:42:28Z
<p>In my application (C', Windows Forms) I have got a telephone information screen: if there is an incoming phone call a window with additional information to the caller is shown.</p>
<p>This window should open in foreground and should stay there even if the user is writing in another window (so the user still sees the information regarding the incoming phone call).</p>
<p>First I've used BringToFront - but this didn't really work in all circumstances (e.g. when the main application was not in the foreground).</p>
<p>Right now I am using BringToFront and the user32.dll function BringWindowToTop -> which works, but if the window loses focus it is in the background.</p>
<p>How do I implement this behaviour ? </p>
http://stackoverflow.com/questions/157938/hiding-a-password-in-a-python-script13Hiding a password in a (python) scriptbernhardrusch2008-10-01T14:37:17Z2009-10-02T01:46:46Z
<p>I have got a python script which is creating an ODBC connection. The ODBC connection is generated with a connection string. In this connection string I have to include the username and password for this connection. </p>
<p>Is there an easy way to obscure this password in the file (just that nobody can read the password when I'm editing the file) ? </p>
http://stackoverflow.com/questions/1497179/nhibernate-lazy-loading-property-what-does-build-time-bytecode-instrumentation1NHibernate lazy loading property - what does build-time bytecode instrumentation mean ?bernhardrusch2009-09-30T10:05:08Z2009-10-01T03:56:22Z
<p>I've tried to lazy-load a property in my domain model, but lazy loading doesn't work. (It is always loaded).</p>
<pre><code>[Property(0, Column = "picture", Lazy=true)]
public virtual System.Byte[] Picture
{
get { return picture; }
set { picture = value; }
}
</code></pre>
<p>When reading the documentation <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/mapping.html#mapping-declaration-property" rel="nofollow">here</a> it says that it requires build-time bytecode instrumentation. What does this mean - and how can I get it ?</p>
http://stackoverflow.com/questions/1409224/parse-a-search-string-into-nhibernate-criterias3Parse a search string (into NHibernate Criterias )bernhardrusch2009-09-11T06:06:28Z2009-09-11T09:55:13Z
<p>I would like to implement an advanced search for my project.
The search right now uses all the strings the user enters and makes one big disjunction with criteria API.</p>
<p>This works fine, but now I would like to implement more features: AND, OR and brackets()</p>
<p>I have got a hard time parsing the string - and building criterias from the string. I have found <a href="http://stackoverflow.com/questions/930131/parsing-criteria-in-nhibernate">this Stackoverflow question</a>, but it didn't really help (he didn't make it clear what he wanted).</p>
<p>I found another <a href="http://www.sqlservercentral.com/articles/Full-Text+Search+%282008%29/64248/" rel="nofollow">article</a>, but this supports much more and spits out sql statements.
Another thing I've heard mention a lot is Lucene - but I'm not sure if this really would help me.</p>
<p><hr /></p>
<p>I've been searching around a little bit and I've found the Lucene.Net WhitespaceAnalyzer and the QueryParser.</p>
<p>It changes the search A AND B OR C into something like +A +B C, which is a good step in the correct direction (plus it handles brackets).
The next step would be to get the converted string into a set of conjunctions and disjunctions.</p>
<p>The <a href="http://onjava.com/pub/a/onjava/2007/05/24/using-the-lucene-query-parser-without-lucene.html?page=4#resources" rel="nofollow">Java example I found</a> was using the query builder which I couldn't find in NHibernate.</p>
<p>Any more ideas ?</p>
http://stackoverflow.com/questions/1409224/parse-a-search-string-into-nhibernate-criterias/1410065#14100651Answer by bernhardrusch for Parse a search string (into NHibernate Criterias )bernhardrusch2009-09-11T09:55:13Z2009-09-11T09:55:13Z<p>What I am basically doing right now is parsing the input string with the Lucene.Net parse API.
This gives me a uniform and simplified syntax. (Pseudocode)</p>
<pre><code>using Lucene.Net.Analysis;
using Lucene.Net.Analysis.Standard;
using Lucene.Net.QueryParsers;
using Lucene.Net.Search;
void Function Search (string queryString)
{
Analyzer analyzer = new WhitespaceAnalyzer();
QueryParser luceneParser = new QueryParser("name", analyzer);
Query luceneQuery = luceneParser.Parse(queryString);
string[] words = luceneQuery.ToString().Split(' ');
foreach (string word in words)
{
//Parsing the lucene.net string
}
}
</code></pre>
<p>After that I am parsing this string manually, creating the disjunctions and conjunctions.</p>
http://stackoverflow.com/questions/1239395/asp-net-on-mono-how-to-add-a-reference-to-an-assembly0asp.net on mono: how to add a reference to an assemblybernhardrusch2009-08-06T14:48:31Z2009-09-11T08:54:47Z
<p>Very basic question - but I couldn't find an answer.
I have got a asp.net web service which is located in an asmx file. This should call a function from a helper library.
Using a different asmx file in Visual Studio everything is working fine - I just had to add the assembly to the dependencies of this project.</p>
<p>Altough I have copied the assembly to the bin subdirectory on the webserver (I think this was what the descriptions I've read said) it returns this error message:</p>
<blockquote>
<p>Server Error in '/' Application
CS0246: The type or namespace name
`XXXFunctions' could not be found. Are
you missing a using directive or an
assembly reference?</p>
<p>Description: HTTP 500. Error
processing request.</p>
<p>Stack Trace:</p>
<p>System.Web.Compilation.CompilationException:
CS0246: The type or namespace name
<code>XXXFunctions' could not be found. Are
you missing a using directive or an
assembly reference? at
System.Web.Compilation.AssemblyBuilder.BuildAssembly
(System.Web.VirtualPath virtualPath,
System.CodeDom.Compiler.CompilerParameters
options) [0x00000] at
System.Web.Compilation.AssemblyBuilder.BuildAssembly
(System.Web.VirtualPath virtualPath)
[0x00000] at
System.Web.Compilation.BuildManager.GenerateAssembly
(System.Web.Compilation.AssemblyBuilder
abuilder,
System.Collections.Generic.List</code>1
buildItems, System.Web.VirtualPath
virtualPath, BuildKind buildKind)
[0x00000] at
System.Web.Compilation.BuildManager.BuildAssembly
(System.Web.VirtualPath virtualPath)
[0x00000] at
System.Web.Compilation.BuildManager.GetCompiledType
(System.String virtualPath) [0x00000]
at
System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler
(System.Web.HttpContext context,
System.String verb, System.String url,
System.String filePath) [0x00000]<br />
at
System.Web.Script.Services.ScriptHandlerFactory.GetHandler
(System.Web.HttpContext context,
System.String requestType,
System.String url, System.String
pathTranslated) [0x00000] at
System.Web.HttpApplication.GetHandler
(System.Web.HttpContext context,
System.String url, Boolean
ignoreContextHandler) [0x00000] at
System.Web.HttpApplication.GetHandler
(System.Web.HttpContext context,
System.String url) [0x00000] at
System.Web.HttpApplication+c__Iterator2.MoveNext
() [0x00000]</p>
</blockquote>
<p>This is the asmx file I'm using:</p>
<pre><code><%@ Assembly name="System.Web.Extensions" %>
<%@ Assembly name="System.Runtime.Serialization" %>
<%@ Assembly name="System.ServiceModel.Web" %>
<%@ WebService Language="C#" Class="FCWService.FCWService" %>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Web;
using System.Web.Services;
using System.Web.Script.Services;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.IO;
using System.Text;
namespace FCWService
{
[WebService (Namespace = "http://tempuri.org/NumberService")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
public class FCWService : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public XXXFunctions.Data GetData(double length)
{
return XXXFunctions.Functions.GetData(length);
}
}
}
</code></pre>
<p>Any ideas ?</p>
<p><hr/>
Answered:
I found out that there was a <%@ Assembly name="XXXFunctions" %> directive was missing on top the asmx page.</p>
http://stackoverflow.com/questions/1239395/asp-net-on-mono-how-to-add-a-reference-to-an-assembly/1409803#14098030Answer by bernhardrusch for asp.net on mono: how to add a reference to an assemblybernhardrusch2009-09-11T08:54:47Z2009-09-11T08:54:47Z<p>Answered: I found out that there was a <%@ Assembly name="XXXFunctions" %> directive was missing on top the asmx page. </p>
http://stackoverflow.com/questions/1392554/mysql-delete-all-results-of-sub-query/1392601#13926011Answer by bernhardrusch for MySQL delete all results of sub-querybernhardrusch2009-09-08T08:01:09Z2009-09-08T08:01:09Z<p>I would not delete with the aggregate function. I think you would like to delete all the inserted data ?</p>
<p>Why not try something like this:</p>
<pre><code>DELETE
FROM eventlog
WHERE (user, event_date) IN (SELECT user, event_data FROM no_duplicates)
</code></pre>
http://stackoverflow.com/questions/1367539/ilistint-vs-listint/1367548#13675480Answer by bernhardrusch for IList<int> vs List<int>bernhardrusch2009-09-02T12:56:57Z2009-09-02T12:56:57Z<p>IList won't get you all the functions you get with List. </p>
<p>IList is an interface and is implemented by many list - like classes - one of those classes ist List.</p>
http://stackoverflow.com/questions/1355657/whats-a-good-example-domain-for-an-nhibernate-presentation/1366109#13661091Answer by bernhardrusch for What's a good example domain for an NHibernate presentation?bernhardrusch2009-09-02T06:25:48Z2009-09-02T06:25:48Z<p>I'd vote for an online store - different products with data, invoices, carts, users, addresses - I think you get the idea. </p>
<p>You can make it as big and as small as you wish. I think everyone understands it. Something like that was my first NHibernate project - and I think it was a good start.</p>
http://stackoverflow.com/questions/1366054/nhibernate-insert-and-update-dates/1366081#13660811Answer by bernhardrusch for NHibernate: Insert and update datesbernhardrusch2009-09-02T06:16:00Z2009-09-02T06:16:00Z<p>I've used something similar to <a href="http://ayende.com/Blog/archive/2009/04/29/nhibernate-ipreupdateeventlistener-amp-ipreinserteventlistener.aspx" rel="nofollow">Ayende Rahien</a>. </p>
<p>Not so important - just to be complete - my version used Interceptors, not listeners. For more infos to interceptors and listeners read <a href="http://stackoverflow.com/questions/867341/nhibernate-difference-interceptor-and-listener">this stackoverflow question</a>.</p>
http://stackoverflow.com/questions/1320790/need-to-get-data-from-a-table-which-contains-unique-id-with-different-category-in/1320806#13208063Answer by bernhardrusch for Need to Get Data from a table which contains unique id with different category in mysqlbernhardrusch2009-08-24T06:47:55Z2009-08-24T06:47:55Z<p>I think this should work (untested):</p>
<pre><code>select artist_id, category, count(*) as total from table group by artist_id, category
</code></pre>
http://stackoverflow.com/questions/1227925/using-nhibernate-inside-a-dll2Using NHibernate inside a DLLbernhardrusch2009-08-04T14:44:04Z2009-08-04T15:29:57Z
<p>I would like to build a DLL (which should be accessed from a web service and possibly from another application through automation). </p>
<p>Is there any possibility using NHibernate inside this dll (so accessing the dll through automation would work) ?</p>
<p>I am already using NHibernate in a rich client application and it is very handy , but I have to make some changes to the app.config for this. All the other tutorials I see are using NHibernate directly on the web service - and are changing the web.config accordingly.</p>
http://stackoverflow.com/questions/1227982/using-nullable-types-in-public-apis/1227989#12279892Answer by bernhardrusch for Using nullable types in public APIsbernhardrusch2009-08-04T14:56:06Z2009-08-04T14:56:06Z<p>I think this is perfectly valid - I prefer nullable types to magic values also.</p>
http://stackoverflow.com/questions/565950/winforms-timespan-which-control-works-best0Winforms &TimeSpan - Which control works best ?bernhardrusch2009-02-19T15:53:42Z2009-07-29T09:57:37Z
<p>I am building a form with winforms - and should add a view and editable time span value.
Which controls works best for this ?</p>
<p>A normal edit control shows the value correctly -> but it's not really nice for changing values </p>
<p>the normal date time picker doesn't work</p>
<p>the masked edit control doesn't have got any standard mask for this</p>
<p>Does anybody have a good idea for a control for this task ?</p>
http://stackoverflow.com/questions/1192020/sql0100w-error-on-db2/1192139#11921391Answer by bernhardrusch for SQL0100W Error on DB2bernhardrusch2009-07-28T06:00:02Z2009-07-28T06:00:02Z<p>DB2 returns always an SQL0100 warning (this is a warning, not an error - errors would have negative values) when no rows are returned. That's the way it is.
I don't know peoplesoft at all - so I can't give you any pointers with that. Back when I was programming for DB2 we ignored those SQL0100 warnings.</p>
http://stackoverflow.com/questions/1078512/why-does-integer-tryparse-set-result-to-zero-on-failure/1078518#10785182Answer by bernhardrusch for Why does Integer.TryParse set result to zero on failure?bernhardrusch2009-07-03T09:17:20Z2009-07-03T09:17:20Z<p>You are correct, TryParse uses 0 if it fails. (MSDN says this quite clearly)
But you could check paseSuccess and return your default value if this is what you want to.</p>
http://stackoverflow.com/questions/1074388/cross-platform-source-control/1074435#10744353Answer by bernhardrusch for Cross-platform source control?bernhardrusch2009-07-02T13:47:08Z2009-07-03T05:47:01Z<p>I can tell you that there are really nice plugins for Subversion for Eclipse and Visual Studio 2008 (<a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN</a> for Visual Studio).
You have to make sure to download the daily builds of AnkhSVN if you plan to use it with the most recent subversion version.
Additionally there are tools (<a href="http://cvs2svn.tigris.org/" rel="nofollow">http://cvs2svn.tigris.org/</a>) to migrate your data from CSV to SVN.</p>
<p>For Mercurial oder Git - I don't have got any experience with those.</p>
<p>I think SVN will give you the smoothest transision - but it won't give you the "big revolution" (if this is what you are after)</p>
http://stackoverflow.com/questions/1044226/nhibernate-save-delete-save-yields-unique-key-violation/1044458#10444580Answer by bernhardrusch for NHibernate Save, Delete, Save yields unique key violationbernhardrusch2009-06-25T15:04:05Z2009-06-26T10:32:10Z<p>I think you should flush the session after the delete. Changes are written to the database when you flush a session. <S>(If you are using transactions you have to start a new one after flushing the session)</S></p>
http://stackoverflow.com/questions/1043579/best-practice-for-giving-back-extra-information-from-a-validate-function/1043605#10436050Answer by bernhardrusch for Best practice for giving back extra information from a Validate functionbernhardrusch2009-06-25T12:18:48Z2009-06-25T12:18:48Z<p>We are using spring validation together with an Windows Forms error provider. </p>
<p>So our validation function returns a dictionary with a control id and an error message (for every validation error). The error provider shows the error message in a pop up field near the control which caused the error.</p>
<p>I used some other validation schemes in the past - but this one works really well.</p>
http://stackoverflow.com/questions/1017016/winforms-richtextbox-pagesize0Winforms RichTextBox Pagesize ?bernhardrusch2009-06-19T09:07:15Z2009-06-19T17:28:25Z
<p>When I am viewing a document in Wordpad (or Word) the text is word wrapped around the document boundaries. Altough when I using the RTF string in a RichTextBox the text is wrapped around the control border.
This means when I change the size of the window the wordwrapping changes.</p>
<p>Is there something I can do about this ?
(some kind of mode I have to set the RichTextBox into)</p>
<p>Or is there are free / commercial RichTextBox which does exactly that ?</p>
<p>(In former times you could download the Wordpad sourcecode what I did - but I can't get it to run - is this the correct version - or does this help me at all ?)</p>
http://stackoverflow.com/questions/995109/how-to-run-update-hql-query-in-nhibernate/995149#9951490Answer by bernhardrusch for how to run update HQL query in nHibernate ?bernhardrusch2009-06-15T09:09:01Z2009-06-15T09:09:01Z<p>In NHibernate we are doing it a little bit different:
you get the structure from the database, change the value and then commit the changes.
I don't think it is possible to do this more directly...</p>
<pre><code>//Pseudocode
T t = session.Get<T>(id);
t.NFS = 10;
session.SaveOrUpdate(t);
session.Transaction.Commit();
</code></pre>
http://stackoverflow.com/questions/190224/junit-and-junit-framework-testsuite-no-runnable-methods0JUnit and junit.framework.TestSuite - No runnable methodsbernhardrusch2008-10-10T05:28:07Z2009-06-12T09:46:14Z
<p>I've made some unit tests (in test class). The tutorial I've read said that I should make a TestSuite for the unittests.</p>
<p>Odd is that when I'm running the unit test directly (selecting the test class - Run as jUnit test) everything is working fine, altough when I'm trying the same thing with the test suite there's always an exception: java.lang.Exception: No runnable methods.</p>
<p>Here is the code of the test suite:</p>
<pre><code>import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test suite for com.xxx.yyyy.test");
//$JUnit-BEGIN$
suite.addTestSuite(TestCase.class);
//$JUnit-END$
return suite;
}
}
</code></pre>
<p>Any ideas why this isn't working ?</p>
http://stackoverflow.com/questions/974052/nant-alternatives/974122#9741221Answer by bernhardrusch for NAnt Alternativesbernhardrusch2009-06-10T07:24:00Z2009-06-10T07:24:00Z<p>I would say once you get started in NAnt it is not THAT complex. I was missing a little bit a good "let's get me started" tutorial and everything I read felt pretty dated. A good thing is that you can use MSBuild for building the application (that is what I am using) and doing the rest with NAnt.</p>
<p>At least I think it is not harder than MSBuild - and for things MSBuild is easier you are free to use MSBuild for that.</p>
<p>This is what I am using:</p>
<pre><code><exec program="msbuild.exe"
basedir="C:\windows\microsoft.net\Framework\v3.5\"
commandline="Project.csproj /p:OutDir=..\Outdir\; configuration=Release" />
</code></pre>
http://stackoverflow.com/questions/1612505/windows-forms-showdialog-dialog-doesnt-show-up/1612564#1612564Comment by bernhardrusch on Windows forms: ShowDialog - dialog doesn't show upbernhardrusch2009-10-27T13:44:36Z2009-10-27T13:44:36Zwell - I've created a dummy window and used it as an owner - now it workshttp://stackoverflow.com/questions/1612505/windows-forms-showdialog-dialog-doesnt-show-up/1612564#1612564Comment by bernhardrusch on Windows forms: ShowDialog - dialog doesn't show upbernhardrusch2009-10-27T06:48:21Z2009-10-27T06:48:21Zit has to be asynchron and should block the application until the user selected something -> this is much easier this way.http://stackoverflow.com/questions/816885/form-showdialog-or-form-showdialogthis/817240#817240Comment by bernhardrusch on Form.ShowDialog() or Form.ShowDialog(this) ?bernhardrusch2009-10-23T09:57:54Z2009-10-23T09:57:54ZI actually have this problem - I am running an external process from an outlook plugin - and it doesn't show the dialog. Any ideas how to show the dialog ? It doesn't have any form -> i just want to show a dialog. If I call "MessageBox.Show" before - it works - otherwise not.http://stackoverflow.com/questions/1576463/keep-window-in-foreground-even-if-it-loses-focusComment by bernhardrusch on Keep window in foreground (even if it loses focus)bernhardrusch2009-10-19T06:16:12Z2009-10-19T06:16:12ZGood quote - but quite a bit overused.http://stackoverflow.com/questions/1576463/keep-window-in-foreground-even-if-it-loses-focus/1576474#1576474Comment by bernhardrusch on Keep window in foreground (even if it loses focus)bernhardrusch2009-10-16T07:03:59Z2009-10-16T07:03:59ZWorks for me - thank you...http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62787#62787Comment by bernhardrusch on How check if given string is legal (allowed) file name under Windows?bernhardrusch2009-10-08T12:35:54Z2009-10-08T12:35:54ZYour link doesn't work anymore (at least for me)http://stackoverflow.com/questions/1497179/nhibernate-lazy-loading-property-what-does-build-time-bytecode-instrumentation/1497249#1497249Comment by bernhardrusch on NHibernate lazy loading property - what does build-time bytecode instrumentation mean ?bernhardrusch2009-09-30T10:50:11Z2009-09-30T10:50:11ZI've tried it with Linfu and Spring - but it didn't lazy load the object with either.
the picture object was always initialized (even if it wasn't accessed until then)http://stackoverflow.com/questions/1409224/parse-a-search-string-into-nhibernate-criterias/1409312#1409312Comment by bernhardrusch on Parse a search string (into NHibernate Criterias )bernhardrusch2009-09-11T07:07:26Z2009-09-11T07:07:26ZI am not totally sure if I want to go this way, because our users are having quite complex requests (defining search sets and saving them) - but thanks a lot. It looks great.http://stackoverflow.com/questions/1392554/mysql-delete-all-results-of-sub-query/1392601#1392601Comment by bernhardrusch on MySQL delete all results of sub-querybernhardrusch2009-09-08T08:47:26Z2009-09-08T08:47:26Zanother tip - if you want to test out if a delete statement is working - use the where clause with a "select *". Then you see all the rows which are going to be deleted. [Maybe there are some edge cases where this statement wouldn't work - but I can't think of any)http://stackoverflow.com/questions/1392554/mysql-delete-all-results-of-sub-query/1392601#1392601Comment by bernhardrusch on MySQL delete all results of sub-querybernhardrusch2009-09-08T08:40:50Z2009-09-08T08:40:50ZSo this means the statement deletes all the rows where the user AND event_date is the same than in the row from the no_duplicates.
I think this is what you want ?
Otherwise you would have to specifiy a better key (id ?)
http://stackoverflow.com/questions/1392554/mysql-delete-all-results-of-sub-query/1392601#1392601Comment by bernhardrusch on MySQL delete all results of sub-querybernhardrusch2009-09-08T08:39:24Z2009-09-08T08:39:24ZYes - but to be 100% sure - always backup before trying statementshttp://stackoverflow.com/questions/1341408/is-that-true-that-if-you-keep-bulky-files-on-the-desktop-then-windows-slow-downComment by bernhardrusch on Is that true that if you keep bulky files on the Desktop then Windows slow down?bernhardrusch2009-08-27T14:18:03Z2009-08-27T14:18:03Zthis kind of questions should be asked on superuser.comhttp://stackoverflow.com/questions/1320790/need-to-get-data-from-a-table-which-contains-unique-id-with-different-category-in/1320806#1320806Comment by bernhardrusch on Need to Get Data from a table which contains unique id with different category in mysqlbernhardrusch2009-08-24T08:08:56Z2009-08-24T08:08:56Zglad I could helphttp://stackoverflow.com/questions/1239395/asp-net-on-mono-how-to-add-a-reference-to-an-assembly/1242654#1242654Comment by bernhardrusch on asp.net on mono: how to add a reference to an assemblybernhardrusch2009-08-07T08:45:34Z2009-08-07T08:45:34Zthanks - I was missing the <%@Assembly name="XXXFunctions" %> statement... http://stackoverflow.com/questions/1239395/asp-net-on-mono-how-to-add-a-reference-to-an-assembly/1242654#1242654Comment by bernhardrusch on asp.net on mono: how to add a reference to an assemblybernhardrusch2009-08-07T08:29:28Z2009-08-07T08:29:28Zdo I have to restart the server after adding additional binaries in the bin subdirectory - it looks for me he isn't including the files to search for this namespace