User pablito - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:27:20Z http://stackoverflow.com/feeds/user/30729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app 18 The funniest/weirdest error message you've got from a development environment/application pablito 2008-10-26T14:35:58Z 2009-11-17T20:04:04Z <p>What is the funniest/weirdest error message you've got from a development environment/application?</p> <ul> <li>"Catastrophic failure" </li> <li>"'null' is null or not an object"</li> </ul> http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best 8 What ORM frameworks for .NET Do You Like Best? pablito 2008-10-30T08:15:46Z 2009-09-14T14:27:02Z <p>I'm writing an application from scratch, I am not pretty sure which one to use.</p> <ul> <li>Microsoft Entity Framework</li> <li>NHibernate</li> <li>Gentle.NET</li> <li>Other</li> </ul> <p>Any guidance or opinions on the advantages and disadvantages of each would be helpful.</p> http://stackoverflow.com/questions/541219/how-to-encrypt-a-password-for-saving-it-later-in-a-db-or-text-file 4 How to encrypt a password for saving it later in a DB or text file pablito 2009-02-12T13:28:48Z 2009-08-18T11:01:40Z <p>I want my application to save the password encrypted in a DB or in a text file. How can I do that assuming that the DB or text file can be open by anyone.</p> <p><strong>Duplicate</strong></p> <blockquote> <p><a href="http://stackoverflow.com/questions/287517/encrypting-hashing-plain-text-passwords-in-database">http://stackoverflow.com/questions/287517/encrypting-hashing-plain-text-passwords-in-database</a></p> </blockquote> <p><strong>Not duplicate</strong> I'm asking for code specific for .NET</p> <p>EDIT: I'm saving the password for later use, i need to decode it and use it to login. It doesn't have to be super secure, It just needs to be unreadable to the human eye, and difficult to decode with a trivial script.</p> http://stackoverflow.com/questions/1077203/how-do-i-implement-in-c-a-method-that-returns-only-when-some-user-event-happens/1077231#1077231 2 Answer by pablito for how do I implement in C# a method that returns only when some user event happens? pablito 2009-07-02T23:39:11Z 2009-07-02T23:39:11Z <p>You can just implement a method that waits for something to happen.</p> <pre><code>void MainMethod() { ... ... DoSomethingAndWait() ... } private void DoSomethingAndWait() { ... ... while(!somethingHappened) //updated by other thread { Thread.Sleep(100) ; } ... } </code></pre> http://stackoverflow.com/questions/1000104/visual-studio-configure-debug-to-attach-to-process/1057248#1057248 0 Answer by pablito for visual studio: configure debug to attach to process pablito 2009-06-29T08:48:01Z 2009-06-29T08:48:01Z <p>I have written and <a href="http://weblogs.asp.net/pabloretyk/archive/2009/02/12/attach-to-process-for-lazies.aspx" rel="nofollow">add-in</a> for this, you may want to try it out.</p> http://stackoverflow.com/questions/939074/c-configuration-files/939870#939870 0 Answer by pablito for C# Configuration Files pablito 2009-06-02T14:27:01Z 2009-06-02T14:27:01Z <p>I had the same problem, I don't know if this can help you but when I changed the name of the config file, which was in another folder as in your case, to .config and it didn't crash anymore, in my case I could change the name so I didn't continue the investigation how to make it work with other name, but of course I would like to know.</p> http://stackoverflow.com/questions/933994/static-variables-of-a-class-used-in-different-appdomains 0 static variables of a class used in different AppDomains pablito 2009-06-01T08:40:10Z 2009-06-01T09:01:21Z <p>I have two executables that reference the same Class Library. In the class library I have a static variable. How can that static variable persists on the two different executables?</p> <p>This is how it looks:</p> <pre><code>public class MyClass { public static string MyVar; } </code></pre> <p>App 1:</p> <pre><code>public class MyApp1 { public void SomeMethod() { MyClass.MyVar = "hello"; } } </code></pre> <p>App 2:</p> <pre><code>public class MyApp2 { public void SomeOtherMethod() { if(MyClass.MyVar == "hello") DoSomething(); } } </code></pre> http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c 5 How can I determine if a file is binary or text in c#? pablito 2009-05-26T14:05:20Z 2009-05-26T15:23:35Z <p>I need to determine in 80% if a file is binary or text, is there any way to do it even quick and dirty/ugly in c#?</p> http://stackoverflow.com/questions/881754/how-to-check-the-availability-of-a-net-tcp-wcf-service 1 How to check the availability of a net.tcp WCF service. pablito 2009-05-19T09:19:05Z 2009-05-19T16:25:31Z <p>My WCF server needs to go up and down on a regular basis, the client sometimes uses the server, but if it is down the client just ignore it. So each time I need to use the server services I check the connection state and if it's not open I open it. The problem is that if I attempt to open while the server is down there is a delay which hits performance. My question is, is there a way to do some kind of <code>myClient.CanOpen()</code>? so I'd know if there is any point to open the connection to the server.</p> http://stackoverflow.com/questions/882686/asynchronous-file-copy-move-in-c/882845#882845 1 Answer by pablito for Asynchronous File Copy/Move in C# pablito 2009-05-19T13:42:58Z 2009-05-19T13:42:58Z <p>You can do it as <a href="http://msdn.microsoft.com/en-us/magazine/cc337900.aspx" rel="nofollow">this</a> article suggested:</p> <pre><code>public static void CopyStreamToStream( Stream source, Stream destination, Action&lt;Stream, Stream, Exception&gt; completed) { byte[] buffer = new byte[0x1000]; AsyncOperation asyncOp = AsyncOperationManager.CreateOperation(null); Action&lt;Exception&gt; done = e =&gt; { if(completed != null) asyncOp.Post(delegate { completed(source, destination, e); }, null); }; AsyncCallback rc = null; rc = readResult =&gt; { try { int read = source.EndRead(readResult); if(read &gt; 0) { destination.BeginWrite(buffer, 0, read, writeResult =&gt; { try { destination.EndWrite(writeResult); source.BeginRead( buffer, 0, buffer.Length, rc, null); } catch(Exception exc) { done(exc); } }, null); } else done(null); } catch(Exception exc) { done(exc); } }; source.BeginRead(buffer, 0, buffer.Length, rc, null); </code></pre> http://stackoverflow.com/questions/792544/how-to-download-an-image-from-web-showing-the-progress-of-the-download-in-c-usin 8 How to download an image from web showing the progress of the download in c# using winforms? pablito 2009-04-27T07:42:54Z 2009-05-13T01:05:12Z <p>I download an image from an URL asynchronously using WebRequest this way:</p> <pre><code>public void Download(string url) { byte[] buffer = new byte[0x1000]; WebRequest request = HttpWebRequest.Create(url); request.Method = "GET"; request.ContentType = "image/gif"; request.BeginGetResponse(result =&gt; { WebRequest webRequest = result.AsyncState as WebRequest; WebResponse response = webRequest.EndGetResponse(result); ReadState readState = new ReadState() { Response = response.GetResponseStream(), AccumulatedResponse = new MemoryStream(), Buffer = buffer, }; readState.Response.BeginRead(buffer, 0, readState.Buffer.Length, ReadCallback, readState); }, request); } public void ReadCallback(IAsyncResult result) { ReadState readState = result.AsyncState as ReadState; int bytesRead = readState.Response.EndRead(result); if(bytesRead &gt; 0) { readState.AccumulatedResponse.BeginWrite(readState.Buffer, 0, bytesRead, writeResult =&gt; { readState.AccumulatedResponse.EndWrite(writeResult); readState.Response.BeginRead(readState.Buffer, 0, readState.Buffer.Length, ReadCallback, readState); }, null); } else { readState.AccumulatedResponse.Flush(); readState.Response.Close(); pictureBox1.Image = Image.FromStream(readState.AccumulatedResponse); } } public class ReadState { public Stream Response { get; set; } public Stream AccumulatedResponse { get; set; } public byte[] Buffer { get; set; } } </code></pre> <p>and it works ok, but I would like to show the progress of the download as the browsers do, and not to show only when it finishes.</p> <p>If I do </p> <pre><code>pictureBox1.Image = Image.FromStream(readState.AccumulatedResponse); </code></pre> <p>before it finishes I get an exception that the picture is not valid, even though it has some data. Is there anyway to show partial data?</p> http://stackoverflow.com/questions/833613/is-it-possible-to-pass-a-com-object-pointer-with-wcf 1 Is it possible to pass a COM object pointer with WCF? [closed] pablito 2009-05-07T09:08:28Z 2009-05-07T09:51:13Z <p>I have a WCF Service (net.tcp) that exposes a Contract:</p> <pre><code> [ServiceContract] public interface IMyContract { [OperationContract] void DoSomething(MyComObject.ISomething obj); } </code></pre> <p>and the implementation would be something like this </p> <pre><code>public class MyContract : IMyContract { void DoSomething(MyComObject.ISomething obj) { obj.YouDoSomething(); } } </code></pre> <p>but when the client tries to call <code>DoSomething</code> I get a Serialization exeption, I understand that even if MyComObject.ISomething can be serialized I wouldn't be able to call methods because only the data is serialized, my question is, is there a way to do this?</p> http://stackoverflow.com/questions/828770/how-to-know-if-my-winform-is-on-top-of-other-windows-in-c 0 How to know if my winform is on top of other windows in c#? pablito 2009-05-06T09:16:24Z 2009-05-06T10:20:01Z <p>I need to know if a specific window in my application is on top of all the other windows (including other applications). I tried the <code>TopLevel</code> property but it tells if it is Toplevel within my application only, I would need to know related to other applications also. How can it be done, preferring not using windows API?</p> http://stackoverflow.com/questions/820480/how-can-i-change-the-default-configuration-for-wcf 1 How can I change the default configuration for WCF? pablito 2009-05-04T14:59:44Z 2009-05-04T17:17:41Z <p>I have WCF Client initialized like this</p> <pre><code> MyServiceClient client = new MyServiceClient(); </code></pre> <p>so it uses the app.config to read the endPoints. I would like to dynamically change the default config file to a file I define. I know I can open a configuration file like this:</p> <pre><code>Configuration myConfig = ConfigurationManager.OpenExeConfiguration </code></pre> <p>but how can I set <code>myConfig</code> to replace the default configuration?</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237718#237718 46 Answer by pablito for What coding mistakes are a telltale giveaway of an inexperienced programmer? pablito 2008-10-26T08:08:22Z 2009-04-30T23:20:18Z <p>I've actually seen this:</p> <pre><code> bool b; switch(b) { case true: DoSomething(); break; case false: UndoSomething(); break; default: MessageBox.Show("Error"); break; } </code></pre> http://stackoverflow.com/questions/731314/how-do-i-specify-a-default-font-and-size-for-a-control-in-visual-studio/731336#731336 0 Answer by pablito for How do I specify a default font and size for a control in Visual Studio? pablito 2009-04-08T18:49:16Z 2009-04-08T18:49:16Z <p>I think that the common properties are inherited from the parent container so if you change the font size and style in the parent form It will change the default to the new child controls.</p> http://stackoverflow.com/questions/611094/async-process-start-and-wait-for-it-to-finish/611171#611171 0 Answer by pablito for Async process start and wait for it to finish pablito 2009-03-04T15:50:36Z 2009-03-04T15:50:36Z <p>You can use the <code>Exited</code> event in Process class</p> <pre><code>ProcessStartInfo info = new ProcessStartInfo(); info.FileName = "notepad.exe"; Process process = Process.Start(info); process.Exited += new EventHandler(process_Exited); Console.Read(); </code></pre> <p>and in that event you can handle the operations you mentioned</p> http://stackoverflow.com/questions/599461/how-do-you-perform-an-and-with-a-join/599493#599493 0 Answer by pablito for How do you perform an AND with a join? pablito 2009-03-01T08:27:39Z 2009-03-01T08:27:39Z <p>You can do it with a nested select , I tested it in MSSQL 2005 but as you said it should be pretty generic</p> <pre><code>SELECT * FROM parent p WHERE p.id in( SELECT r.parent_Id FROM relationship r WHERE r.parent_id in(1,2) GROUP BY r.parent_id HAVING COUNT(r.parent_Id)=2 ) </code></pre> <p>and the number 2 in <code>COUNT(r.parent_Id)=2</code> is according to the number of joins you need)</p> http://stackoverflow.com/questions/239275/how-do-i-create-a-recursive-query-in-mssql-2005 7 How do I create a recursive query in MSSQL 2005? pablito 2008-10-27T07:37:23Z 2009-02-26T11:46:19Z <p>Let's say I have the following table:</p> <pre><code>CustomerID ParentID Name ========== ======== ==== 1 null John 2 1 James 3 2 Jenna 4 3 Jennifer 5 3 Peter 6 5 Alice 7 5 Steve 8 1 Larry </code></pre> <p>I want to retrieve in one query all the descendants of James (Jenna,Jennifer,Peter, Alice, Steve). Thanks, Pablo.</p> http://stackoverflow.com/questions/577877/how-can-an-add-in-detect-when-a-solution-is-loaded/577979#577979 0 Answer by pablito for How can an add-in detect when a solution is loaded? pablito 2009-02-23T15:22:39Z 2009-02-23T15:22:39Z <p>You have in the DTE2 class a property called <code>Events</code> it gives a lots kind of events, for what you need you have to use:</p> <pre><code>DTE2 _applicationObject _applicationObject.Events.SolutionEvents.Opened+=new _dispSolutionEvents_OpenedEventHandler(SolutionEvents_Opened); </code></pre> http://stackoverflow.com/questions/577411/how-can-i-find-the-state-of-numlock-capslock-and-scrolllock-in-net/577422#577422 3 Answer by pablito for How can I find the state of NumLock, CapsLock and ScrollLock in .net ? pablito 2009-02-23T12:02:51Z 2009-02-23T12:02:51Z <p>Import the WinAPI function GetKeyState</p> <pre><code>[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] public static extern short GetKeyState(int keyCode); </code></pre> <p>and then you can use it like that</p> <pre><code>bool CapsLock = (((ushort)GetKeyState(0x14)) &amp; 0xffff) != 0; bool NumLock = (((ushort)GetKeyState(0x90)) &amp; 0xffff) != 0; bool ScrollLock = (((ushort)GetKeyState(0x91)) &amp; 0xffff) != 0; </code></pre> <p>EDIT: the above is for framework 1.1, for framework 2.0 + you can use</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.iskeylocked(VS.80).aspx" rel="nofollow"><code>Control.IsKeyLocked</code></a></p> http://stackoverflow.com/questions/540385/c-and-vb-net-type/540392#540392 9 Answer by pablito for C# and VB.nET type pablito 2009-02-12T07:48:58Z 2009-02-12T07:48:58Z <p>No, they are under the same .NET Framework, the only thing VB.NET has by default is a reference to Microsoft.VisualBasic.... namespace.</p> http://stackoverflow.com/questions/524559/whats-the-simplest-way-to-import-a-system-data-dataset-into-excel/524583#524583 -1 Answer by pablito for What's the simplest way to import a System.Data.DataSet into Excel? pablito 2009-02-07T21:04:56Z 2009-02-07T21:04:56Z <p>Serilize the Dataset to xml <code>DataSet.WriteXML</code> and the you can create an <a href="http://www.w3.org/Style/XSL/" rel="nofollow">Xsl</a> that transforms it to <a href="http://en.wikipedia.org/wiki/Comma-separated_values" rel="nofollow">CSV</a> (you can use <a href="http://msdn.microsoft.com/en-us/library/system.xml.xsl.xsltransform.aspx" rel="nofollow">XslTransform</a> in order to transform the xml with the xsl)</p> <p>EDIT: other option is to directly transform it to CSV</p> <pre><code>Sub DataTable2CSV(ByVal table As DataTable, ByVal filename As String) DataTable2CSV(table, filename, vbTab) End Sub Sub DataTable2CSV(ByVal table As DataTable, ByVal filename As String, _ ByVal sepChar As String) Dim writer As System.IO.StreamWriter Try writer = New System.IO.StreamWriter(filename) ' first write a line with the columns name Dim sep As String = "" Dim builder As New System.Text.StringBuilder For Each col As DataColumn In table.Columns builder.Append(sep).Append(col.ColumnName) sep = sepChar Next writer.WriteLine(builder.ToString()) ' then write all the rows For Each row As DataRow In table.Rows sep = "" builder = New System.Text.StringBuilder For Each col As DataColumn In table.Columns builder.Append(sep).Append(row(col.ColumnName)) sep = sepChar Next writer.WriteLine(builder.ToString()) Next Finally If Not writer Is Nothing Then writer.Close() End Try End Sub </code></pre> <p>Unless you really want it in pure Excel format</p> http://stackoverflow.com/questions/511302/copying-a-table-from-one-database-to-another/511391#511391 0 Answer by pablito for copying a table from one database to another pablito 2009-02-04T13:38:10Z 2009-02-04T13:38:10Z <p>You can do</p> <pre><code> Select 'insert into tblxxxx (blabla,blabal) values(' + fld1 + ',' + fld2 + ',' ...... + ')' From tblxxxxxx </code></pre> <p>copy the result as a text script and execute it in the other DB.</p> http://stackoverflow.com/questions/511248/method-return-an-interface/511278#511278 5 Answer by pablito for Method return an interface pablito 2009-02-04T13:12:42Z 2009-02-04T13:33:15Z <p>It allows you to you DataReader without the need of knowing which type of DataReader you are using (i.e. <code>SqlDataReader, OleDbDataReader, EtcDataReader</code>), so if someday you want to change the datareader you are using it won't impact you logic, in other words it gives you abstraction. For example :</p> <p>you can use</p> <pre><code>IDbCommand command = GiveMeSomeCommand(); IDataReader r = command.ExecuteReader(); </code></pre> <p>without knowing which provider you are using</p> <p>it can be:</p> <pre><code>private static IDbCommand GiveMeSomeCommand() { return new OleDbCommand(); } </code></pre> <p>or it can be</p> <pre><code>private static IDbCommand GiveMeSomeCommand() { return new SqlCommand(); } </code></pre> <p>or whatever.</p> <p>EDIT:</p> <p>You can also use the DBFactories.</p> <pre><code>DbProviderFactory factory = GiveMeSomeFactory(); IDbCommand command = factory.CreateCommand(); IDataReader r = command.ExecuteReader(); //and create more objects IDataAdapter adapter = factory.CreateDataAdapter(); IDbConnection conn = factory.CreateConnection(); </code></pre> <p>and then create your provider in other layer</p> <pre><code>private DbProviderFactory GiveMeSomeFactory() { if(something) return SqlClientFactory.Instance; else if(somethingElse) return OracleFactory.Instance; else if(notThisAndNotThat) return MySqlFactory.Instance; else return WhateverFactory.Instance; } </code></pre> http://stackoverflow.com/questions/454501/should-everyone-have-to-defend-a-down-vote/511164#511164 0 Answer by pablito for Should everyone have to defend a down-vote? pablito 2009-02-04T12:35:37Z 2009-02-04T12:35:37Z <p>I totally agree with you, I think everyone should have a pool of downvotes (which increases as long as you have earned more reputation) so people would give downvotes when really needed, and also downvotes should have an explanation (but be anonymous, otherwise people might revenge their downvote). This way, IMO, voting would be more objective.</p> http://stackoverflow.com/questions/507438/is-the-content-of-the-stackoverflow-com-protected 1 Is the content of the Stackoverflow.com protected? pablito 2009-02-03T15:04:22Z 2009-02-04T00:39:59Z <p>I mean, can I copy part of the content and put it in a website? Can questions be distributed or published?</p> http://stackoverflow.com/questions/506863/object-oriented-method-design-options/507624#507624 0 Answer by pablito for Object Oriented Method Design options pablito 2009-02-03T15:45:30Z 2009-02-03T15:45:30Z <p>I believe the <a href="http://www.dofactory.com/Patterns/PatternStrategy.aspx#_self1" rel="nofollow">Strategy pattern</a> would help you.</p> http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/507337#507337 1 Answer by pablito for What is your most useful sql trick to avoid writing more code? pablito 2009-02-03T14:43:41Z 2009-02-03T14:50:04Z <p>Calculating the product of all rows (x1*x2*x3....xn) in one "simple" query</p> <pre><code>SELECT exp(sum(log(someField))) FROM Orders </code></pre> <p>taking advantage of the logarithm properties:</p> <ol> <li><p>log(x) + log(y) = log(x*y)</p></li> <li><p>exp(log(x*y)) = x*y</p></li> </ol> <p>not that I will ever need something like that.......</p> http://stackoverflow.com/questions/503263/how-to-determine-if-a-type-implements-a-specific-generic-interface-type/503296#503296 0 Answer by pablito for How to determine if a type implements a specific generic interface type pablito 2009-02-02T14:03:12Z 2009-02-02T14:03:12Z <p>First of all <code>public class Foo : IFoo&lt;T&gt; {}</code> does not compile because you need to specify a class instead of T, but assuming you do something like <code>public class Foo : IFoo&lt;SomeClass&gt; {}</code></p> <p>then if you do</p> <pre><code>Foo f = new Foo(); IBar&lt;SomeClass&gt; b = f as IBar&lt;SomeClass&gt;; if(b != null) //derives from IBar&lt;&gt; Blabla(); </code></pre> http://stackoverflow.com/questions/926046/is-there-a-way-to-bookmark-code-in-a-visual-studio-project/926065#926065 Comment by pablito on Is there a way to bookmark code in a Visual Studio project? pablito 2009-06-01T18:51:13Z 2009-06-01T18:51:13Z how did you do to make it look like that, it is not an image http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c/910929#910929 Comment by pablito on How can I determine if a file is binary or text in c#? pablito 2009-05-26T14:44:02Z 2009-05-26T14:44:02Z Thanks, I did something similar, I looked for a consecutive number of nulls. http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c/910927#910927 Comment by pablito on How can I determine if a file is binary or text in c#? pablito 2009-05-26T14:42:46Z 2009-05-26T14:42:46Z Thanks, I looked for 4 consecutived nulls &quot;\0\0\0\0&quot; binary files seem to have a lot of them so I tested it in 50 random files and it works. http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c Comment by pablito on How can I determine if a file is binary or text in c#? pablito 2009-05-26T14:40:24Z 2009-05-26T14:40:24Z just anything that isn't text such as picture, music, msword, executable, dll, etc http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c/910896#910896 Comment by pablito on How can I determine if a file is binary or text in c#? pablito 2009-05-26T14:31:31Z 2009-05-26T14:31:31Z that's good, unfortunatelly I'm not dealing with common extensions, I'm writing some kind of list of all files and need to categorize them bin or text, most people do it but hand but as I am lazy I prefer to write code. http://stackoverflow.com/questions/881754/how-to-check-the-availability-of-a-net-tcp-wcf-service Comment by pablito on How to check the availability of a net.tcp WCF service. pablito 2009-05-19T10:20:33Z 2009-05-19T10:20:33Z When I do myClient.Open() if the server is down there is a timeout, maybe is not the exception hitting performance, I'm reediting my question http://stackoverflow.com/questions/881754/how-to-check-the-availability-of-a-net-tcp-wcf-service/881770#881770 Comment by pablito on How to check the availability of a net.tcp WCF service. pablito 2009-05-19T10:17:09Z 2009-05-19T10:17:09Z &quot; having a client method figuring out where or not the service is open&quot; This is what I'm looking for http://stackoverflow.com/questions/833613/is-it-possible-to-pass-a-com-object-pointer-with-wcf Comment by pablito on Is it possible to pass a COM object pointer with WCF? pablito 2009-05-07T09:52:13Z 2009-05-07T09:52:13Z how is it a duplicate? http://stackoverflow.com/questions/828770/how-to-know-if-my-winform-is-on-top-of-other-windows-in-c/828783#828783 Comment by pablito on How to know if my winform is on top of other windows in c#? pablito 2009-05-06T09:22:32Z 2009-05-06T09:22:32Z Thanks, of course this can solve my problem, but I prefer a solution without using windows API. http://stackoverflow.com/questions/820480/how-can-i-change-the-default-configuration-for-wcf/820530#820530 Comment by pablito on How can I change the default configuration for WCF? pablito 2009-05-05T06:52:06Z 2009-05-05T06:52:06Z My service is exposed as COM, and is invoked by other Application that I cannot have control on, so the default config file would be TheOtherApp.exe.config, and I need my config to be loaded. http://stackoverflow.com/questions/820480/how-can-i-change-the-default-configuration-for-wcf/820530#820530 Comment by pablito on How can I change the default configuration for WCF? pablito 2009-05-04T15:17:13Z 2009-05-04T15:17:13Z Yea, but this is what I don't won't, I would like just to replace the default config file for one of my own http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app Comment by pablito on The funniest/weirdest error message you've got from a development environment/application pablito 2009-03-19T12:51:50Z 2009-03-19T12:51:50Z Wow! someone woke up on a bad mood today....... there is no community wiki criteria, it is up to the community, so as long the community does not close this question it is still a legitime community wiki, that is why it is called community, I don't own the question any more, the community does. http://stackoverflow.com/questions/599461/how-do-you-perform-an-and-with-a-join/599472#599472 Comment by pablito on How do you perform an AND with a join? pablito 2009-03-02T09:12:39Z 2009-03-02T09:12:39Z it proves that sometimes the not generic query is better than the generic, of course not always you can dinamically create the query. http://stackoverflow.com/questions/599461/how-do-you-perform-an-and-with-a-join/599493#599493 Comment by pablito on How do you perform an AND with a join? pablito 2009-03-01T08:58:36Z 2009-03-01T08:58:36Z Thanks, just to make clear the rep is not the issue, I am here to learn if I had a wrong answer I would just like to know what is wrong. http://stackoverflow.com/questions/599461/how-do-you-perform-an-and-with-a-join/599493#599493 Comment by pablito on How do you perform an AND with a join? pablito 2009-03-01T08:50:38Z 2009-03-01T08:50:38Z well, while i was building it in MSSQL Studio I was not aware that a similar answer was posted, still this is not a reason for a downvote.