User Carl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:23:21Z http://stackoverflow.com/feeds/user/24144 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1677326/nhibernate-aggregate-subquery 1 NHibernate Aggregate Subquery Carl 2009-11-04T23:11:42Z 2009-11-05T06:12:46Z <p>Hi all,</p> <p>I have a problem with NHibernate that I don't seem to be able to find a simple way around.</p> <p>I have the following database:</p> <p>Game: ID, Score, Match_ID</p> <p>Match: ID</p> <p>A match consists of 3 games.</p> <p>I want to find out what the maximum Match score is, so the following SQL would do the trick:</p> <pre><code>select max(a.total) from (select Match.ID, sum(Game.Score) as total from Game inner join Match on Game.Match_ID = Match.ID group by Match.ID) a </code></pre> <p>In NHibernate, this appears to be a bit trickier. Apparently, HQL does not allow subqueries in the from clause, so I can't really use this.</p> <p>I'm pretty sure that it can be done with ICriteria, but I've only just started using NH so I can't seem to figure it out. I've basically got to the following:</p> <pre><code>Session.CreateCriteria&lt;Game&gt;() .SetProjection(Projections.ProjectionList() .Add(Projections.GroupProperty("Match")) .Add(Projections.Sum("Score"))).List(); </code></pre> <p>After that I've played around with various assortments of DetachedCriteria, but just seem to be going round in circles.</p> http://stackoverflow.com/questions/1577412/program-compatibility-assistant-thinks-my-app-is-an-installer 2 Program Compatibility Assistant thinks my app is an installer Carl 2009-10-16T10:52:02Z 2009-10-16T13:15:15Z <p>I have created a .NET C# WinForms application on Win 7 RTM x64, which let's say I have called DataInstaller.</p> <p>When I run this program outside of the debugger (just an empty form with no functionality at the moment), it works fine until I close the form. I then get a message from the Program Compatibility Assistant that says:</p> <p>This program might not have installed correctly</p> <p>I then get the option to reinstall using recommended settings or to say that the install did work as expected.</p> <p>If I name the app 'DataThingy' this isn't an issue, I guess this is related to the way that programs called *Setup gain a UAC shield icon.</p> <p>I assume that there will be something simple that I can put in the application manifest to prevent this?</p> <p>I'm not sure if this occurs on Vista as I don't have access currently.</p> <p>Changing the name is not an option and turning off UAC is not an option so please don't suggest this!</p> <p>Edit:</p> <p>OMG.</p> <p>It seems that if any of the following are true, UAC sticks its oar in:</p> <p>Exe name contains the word Installer</p> <p>AssemblyInfo.cs</p> <pre><code>AssemblyTitle contains the word 'Installer' e.g. [assembly: AssemblyTitle("DataInstaller")] AssemblyProduct contains the word 'Installer' e.g. [assembly: AssemblyProduct("Data Installation Utility")] </code></pre> <p>'Installer' can also be 'Setup'.</p> <p>It beggars belief, it really does. Obviously one of the old VB6 programmers got relocated into the UAC team over at Redmond.</p> <p>I still need a workaround, I'm not prepared to accept that my application can't possibly be an called an installer because it doesn't touch the registry or put any files in the Program Files folder.</p> <p>I assume that UAC would put the machine into total lockdown if I tried to execute my application called IAmAVirus.exe. (Actually, I daren't try it because I'm not entirely convinced that I'm just being silly)</p> http://stackoverflow.com/questions/473874/reading-clob-column-is-slow 0 Reading CLOB column is slow... Carl 2009-01-23T17:54:28Z 2009-01-31T12:25:00Z <p>Hi all, </p> <p>Hopefully someone can shed a little light on an issue that I'm currently having with an Oracle DB - I'm sure it's something simple!!</p> <p>I've managed to recreate this in a sample, so here is the DB structure:</p> <pre><code>CREATE TABLE MyTable( ixMyTable NUMBER, clobData CLOB ) / CREATE OR REPLACE PACKAGE PKGTEST AS PROCEDURE DoSomething( cur_OUT OUT SYS_REFCURSOR ); END PKGTEST; / CREATE OR REPLACE PACKAGE BODY PKGTEST AS PROCEDURE DoSomething( cur_OUT OUT SYS_REFCURSOR ) AS BEGIN OPEN cur_OUT FOR SELECT ixMyTable, clobData FROM MyTable; END; END PKGTEST; / GRANT EXECUTE ON PKGTEST TO TEST_ROLE / BEGIN FOR i IN 1 .. 7000 LOOP insert into mytable values (i, TO_CLOB('123456')); END LOOP; END; / </code></pre> <p>Extra info:</p> <p>Schema owner is TEST_SCHEMA</p> <p>User is CARL</p> <p>CARL has the TEST_ROLE role</p> <p>Given the database setup as above, I have a C# test app that uses the standard System.Data.OracleClient.OracleCommand etc. in order to execute PKGTEST.DoSomething and throw the results into a datagrid (DevExpress).</p> <p>Pretty sure that the grid is irrelevant here, as we experience the same issue through c++ using the open source OTL (not my department, fortunately).</p> <p>OK, to the problem....</p> <p>Time from beginning until the grid is populated is ~35-40s, ouch.</p> <p>However, if I do the following:</p> <pre><code>GRANT SELECT ON MyTable TO TEST_ROLE / </code></pre> <p>and then perform the query again, it takes ~5-6s.</p> <p>It seems to me that this has something to do with privileges etc., but I'm not quite sure why it still actually works both ways??</p> <p>Just to throw something else into the pot, if I change the procedure to </p> <pre><code>SELECT ixMyTable, TO_CLOB(TO_NCLOB(clobData)) FROM MyTable; </code></pre> <p>Then the time is ~5-6s, with or without the extra SELECT privilege.</p> <p>Any pointers or straight out solutions would be much appreciated!</p> <p>Edit:</p> <p>OS is Vista x86 Business</p> <p>Oracle Server is 10.2.0.1</p> <p>Oracle Client is 10.2.0.3</p> <p>Edit:</p> <p>As suggested, I've tried changing from the MS OracleClient to the ODP.NET and this does speed up as required. </p> <p>Unfortunately, the C# app that was being affected was just an internal app that is used for viewing tables / running SPROCS etc. </p> <p>Our main deliverable is the C++ app that uses OTL (<a href="http://otl.sourceforge.net/otl3_intro.htm" rel="nofollow">http://otl.sourceforge.net/otl3_intro.htm</a>) for database access. This is not really something that can be changed at this time, and so I would really like to understand the reasons for the difference, without having to throw gratuitous GRANT SELECTs around willy-nilly.</p> <p>If lack of SELECT privilege caused a complete failure then I could probably live with this, but lack of SELECT appears to be causing some slower route for accessing the CLOB data.</p> <p>I've marked up the 3 answers - thanks for those - but I could really do with a reason, so I'll add a bounty to this.</p> <p>P.S. We really wanted to go with OCCI at the outset for our C++, but as Oracle are always supporting a version of the IDE before current we couldn't get it to play nicely with our Visual Studio 2008.</p> http://stackoverflow.com/questions/447983/system-data-oracleclient-requires-oracle-client-software-version-8-1-7/488438#488438 0 Answer by Carl for System.Data.OracleClient requires Oracle client software version 8.1.7 Carl 2009-01-28T16:56:14Z 2009-01-28T16:56:14Z <p>When we first moved over to Vista with Oracle 10g, we experienced this issue when we installed the Oracle client on our Vista boxes, even when we were running with admin privileges during install.</p> <p>Oracle brought out a new version of the 10g client (10.2.0.3) that was Vista compatible.</p> <p>I do believe that this was after 11g was released, so it is possible that there is a 'Vista compatible' version for 11g also.</p> http://stackoverflow.com/questions/483940/oracle9i-filter-expression-fails-to-exclude-data-at-runtime/484033#484033 0 Answer by Carl for Oracle9i: Filter Expression Fails to Exclude Data at Runtime Carl 2009-01-27T16:16:01Z 2009-01-27T16:16:01Z <p>In addition to the suggestions that IronGoofy has made, have you tried swapping round the last two clauses?</p> <pre><code>where a.code_item = b.wich_id and a.code_status = 'R' and a.location_type_code = '15' </code></pre> <p>If you get a different set of results then this might point to some sort of wrangling going on that results in dodgy SQL actually be sent to the database.</p> http://stackoverflow.com/questions/243267/compare-data-in-a-vb-net-dataset-with-values-in-an-array-list/243389#243389 2 Answer by Carl for compare data in a vb.net dataset with values in an array list Carl 2008-10-28T13:51:20Z 2008-10-28T14:09:53Z <p>If you use generics as suggested, you can have two Lists of string and do the following:</p> <pre><code>for each s as string in LDAPUsers.Except(AllStudents) ''Delete the user (s) next </code></pre> <p>Where LDAPUsers and AllStudents are both List(Of String)</p> <p>Edit:</p> <p>You can also change the except to:</p> <pre><code>LDAPUsers.Except(AllStudents, StringComparer.InvariantCultureIgnoreCase) </code></pre> <p>to ignore case etc.</p> <p>Edit 2:</p> <p>To get the generic lists could be as simple as:</p> <pre><code>Dim LDAPUsers as new List(Of String)(alLDAPUsers.Cast(Of String)) Dim AllStudents as new List(OfString)() for each dr as DataRow in dsAllStudents.Tables(0).Rows AllStudents.Add(dr("szvausr_un")) next </code></pre> <p>Or you can go with the Linq-y goodness as Joel mentions, but my exposure to that is limited, unfortunately...</p> http://stackoverflow.com/questions/233095/when-assigning-a-handler-to-an-event-should-you-always-create-a-new-event-handl/233103#233103 3 Answer by Carl for When assigning a handler to an event should you always create a 'new' event handler Carl 2008-10-24T11:08:57Z 2008-10-24T11:08:57Z <p>Looking at the resulting assembly in reflector, both of these lines of code seem to do the same thing</p> <pre><code>object.Event += new EventHandler(MyFunction) </code></pre> http://stackoverflow.com/questions/221224/hash-character-in-path-throws-directorynotfoundexception/221251#221251 3 Answer by Carl for Hash character in path throws DirectoryNotFoundException Carl 2008-10-21T09:08:07Z 2008-10-21T09:08:07Z <p>Adding to Konrad's answer, if you are using the file:// protocol, you need to use %23 for # then it works fine</p> http://stackoverflow.com/questions/217977/how-do-i-get-the-contents-of-an-xml-element-using-a-xmlserializer/218231#218231 1 Answer by Carl for How do I get the contents of an XML element using a XmlSerializer? Carl 2008-10-20T12:22:52Z 2008-10-20T12:52:11Z <p>The suggestion that I was going to make if the text tag only ever contained p tags was the following, it may be useful in the short term.</p> <p>Instead of story having the text field as a string, you could have it as an array of strings. You could then use the right XmlArray attributes (can't remember the exact names, something like XmlArrayItemAttribute), with the right parameters to make it look like:</p> <pre><code>&lt;text&gt; &lt;p&gt;blah&lt;/p&gt; &lt;p&gt;blib&lt;/p&gt; &lt;/text&gt; </code></pre> <p>Which is a step closer, but not completely what you need.</p> <p>Another option is to make a class like:</p> <pre><code>public class Text //Obviously a bad name for a class... { public string[] p; public string[] pre; } </code></pre> <p>And again use the XmlArray attributes to get it to look right, not sure if they are as configurable as that because I've only used them for simple types before.</p> <p>Edit:</p> <p>Using:</p> <pre><code>[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)] public class story { [System.Xml.Serialization.XmlAttributeAttribute()] public string id; [System.Xml.Serialization.XmlAttributeAttribute()] public string date; [System.Xml.Serialization.XmlAttributeAttribute()] public string time; public string title; [XmlArrayItem("p")] public string[] text; } </code></pre> <p>Works well with the supplied XML, but having the class seems a little more complicated. It ends up as something similar to:</p> <pre><code> &lt;text&gt; &lt;p&gt; &lt;p&gt;qwertyuiop&lt;/p&gt; &lt;p&gt;asdfghjkl&lt;/p&gt; &lt;/p&gt; &lt;pre&gt; &lt;pre&gt;stuff&lt;/pre&gt; &lt;pre&gt;nonsense&lt;/pre&gt; &lt;/pre&gt; &lt;/text&gt; </code></pre> <p>which is obviously not what is desired.</p> http://stackoverflow.com/questions/191732/frustrated-trying-to-read-a-path-from-an-argument-in-c/191839#191839 1 Answer by Carl for Frustrated trying to read a path from an argument in C# Carl 2008-10-10T15:21:55Z 2008-10-10T15:21:55Z <p>Not an answer as I think it's been answered well enough already, but as you stated that you're a beginner I thought that I would point out that:</p> <pre><code>entry.split(new char[]{':'}); </code></pre> <p>can be:</p> <pre><code>entry.split(':'); </code></pre> <p>This uses:</p> <pre><code>split(params char[] separator); </code></pre> <p>This can be deceiving for new C# programmers as the params keyword means that you can actually pass in 1 to many chars, as in:</p> <pre><code>entry.split(':','.',' '); </code></pre> http://stackoverflow.com/questions/191640/get-null-null-in-sql/191658#191658 -1 Answer by Carl for Get null == null in SQL Carl 2008-10-10T14:42:25Z 2008-10-10T14:42:25Z <p>I would think that what you have is OK. You could maybe use:</p> <pre><code>where NVL(MYCOLUMN, '') = NVL(SEARCHVALUE, '') </code></pre> http://stackoverflow.com/questions/70846/developers-bill-of-rights/191216#191216 2 Answer by Carl for Developers' Bill Of Rights Carl 2008-10-10T13:18:00Z 2008-10-10T13:18:00Z <p>Flexible working hours</p> http://stackoverflow.com/questions/190543/changing-the-width-of-a-windows-console-window/190550#190550 2 Answer by Carl for Changing the width of a Windows console window? Carl 2008-10-10T08:45:45Z 2008-10-10T08:45:45Z <p>If you right click on the title bar of a command window and choose properties, you can change widths in the Layout tab</p> http://stackoverflow.com/questions/169330/simple-way-to-programmatically-get-all-stored-procedures/183398#183398 0 Answer by Carl for Simple way to programmatically get all stored procedures Carl 2008-10-08T15:31:15Z 2008-10-08T15:31:15Z <p>You can use:</p> <pre><code>DataTable dtProcs = sqlConn.GetSchema("Procedures", new string[] { databaseName }); DataTable dtProcParams = sqlConn.GetSchema("ProcedureParameters", new string[] { databaseName }); </code></pre> <p>You can also get all sorts of other schema info like tables, indexes etc. if you need them.</p> <p>You can get info on GetSchema() <a href="http://msdn.microsoft.com/en-us/library/kcax58fh.aspx" rel="nofollow">here</a> and info on the SQL Server Schema Collections <a href="http://msdn.microsoft.com/en-us/library/ms254969.aspx" rel="nofollow">here</a></p> <p>Edit: Sorry, this doesn't help with actually scripting the info, but I guess it's useful info to have.</p> http://stackoverflow.com/questions/178899/serializing-lists-of-classes-to-xml/178931#178931 2 Answer by Carl for Serializing Lists of Classes to XML Carl 2008-10-07T15:10:14Z 2008-10-07T15:18:21Z <p>Just to check, have you marked Bar as [Serializable]?</p> <p>Also, you need a parameter-less ctor on Bar, to deserialize</p> <p>Hmm, I used:</p> <pre><code>public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Foo f = new Foo(); f.BarList = new List&lt;Bar&gt;(); f.BarList.Add(new Bar { Property1 = "abc", Property2 = "def" }); XmlSerializer ser = new XmlSerializer(typeof(Foo)); using (FileStream fs = new FileStream(@"c:\sertest.xml", FileMode.Create)) { ser.Serialize(fs, f); } } } public class Foo { [XmlArray("BarList"), XmlArrayItem(typeof(Bar), ElementName = "Bar")] public List&lt;Bar&gt; BarList { get; set; } } [XmlRoot("Foo")] public class Bar { public string Property1 { get; set; } public string Property2 { get; set; } } </code></pre> <p>And that produced:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;Foo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;BarList&gt; &lt;Bar&gt; &lt;Property1&gt;abc&lt;/Property1&gt; &lt;Property2&gt;def&lt;/Property2&gt; &lt;/Bar&gt; &lt;/BarList&gt; &lt;/Foo&gt; </code></pre> http://stackoverflow.com/questions/178661/recommended-c-winform-controls-packs/178710#178710 2 Answer by Carl for recommended c# winform controls packs Carl 2008-10-07T14:29:59Z 2008-10-07T14:43:40Z <p>I've used the controls from both <a href="http://www.infragistics.com/" rel="nofollow">Infragistics</a> and <a href="http://www.devexpress.com" rel="nofollow">DevExpress</a> and find the DevExpress ones to be far superior.</p> <p>Although, my Infragistics exposure was .NET 1.1 and DevExpress has been 1.1 to current.</p> <p>Edit:</p> <p>The support available on the DevExpress website has also never failed to solve a problem that I have had, I remember having an issue with the Infragistics grid control and not being able to solve it and believe me, I'm doing a lot more complex stuff with the DevEx stuff currently!</p> http://stackoverflow.com/questions/177576/whats-the-single-most-important-piece-of-documentation/178757#178757 1 Answer by Carl for What's the single most important piece of documentation? Carl 2008-10-07T14:38:07Z 2008-10-07T14:38:07Z <p>Project log - we're great believers that when key decisions are made you should be recording why you chose to go down a particular route and <em>more importantly</em> why you chose <em>not</em> go down an alternative route.</p> <p>Having this in place helps to stop future developers from making the same mistakes again and wasting a lot of time.</p> http://stackoverflow.com/questions/178147/how-can-i-verify-if-a-windows-service-is-running/178162#178162 9 Answer by Carl for How can I verify if a Windows Service is running Carl 2008-10-07T12:10:39Z 2008-10-07T12:10:39Z <p>I guess something like this would work:</p> <pre><code>ServiceController sc = new ServiceController(SERVICENAME); switch (sc.Status) { case ServiceControllerStatus.Running: return "Running"; case ServiceControllerStatus.Stopped: return "Stopped"; case ServiceControllerStatus.Paused: return "Paused"; case ServiceControllerStatus.StopPending: return "Stopping"; case ServiceControllerStatus.StartPending: return "Starting"; default: return "Status Changing"; } </code></pre> <p>Edit: There is also a method sc.WaitforStatus() that takes a desired status and a timeout, never used it but it may suit your needs.</p> http://stackoverflow.com/questions/177558/algorithm-to-get-a-regex/177593#177593 0 Answer by Carl for Algorithm to get a Regex Carl 2008-10-07T08:26:22Z 2008-10-07T08:26:22Z <p>I think that Regulazy by Roy Osherove does this to a certain extent, or it may be Regulator. BOth are on this page:</p> <p><a href="http://weblogs.asp.net/rosherove/pages/tools-and-frameworks-by-roy-osherove.aspx" rel="nofollow">http://weblogs.asp.net/rosherove/pages/tools-and-frameworks-by-roy-osherove.aspx</a></p> http://stackoverflow.com/questions/174764/how-to-move-a-clickonce-deployment-package/174826#174826 1 Answer by Carl for How to move a ClickOnce deployment package Carl 2008-10-06T15:41:07Z 2008-10-06T15:41:07Z <p>I would expect to have to do the following:</p> <ul> <li>Copy current folder contents to new location</li> <li>For each app:- <ul> <li>Change 'Installation folder' to the new location </li> <li>Publish as a new version</li> <li>Change 'Publishing folder' to the new location </li> <li>Publish as a new version</li> </ul></li> </ul> <p>New setups run from the new folder should work and existing ones should update to look in the correct place.</p> <p>All this is untested, but I'm pretty sure that's what I did previously...</p> <p>Edit:</p> <p>Obviously, you'll have to run these in parallel for a certain amount of time, but as it's an internal app the worst that will happen when you finally switch over to the new location is that you'll have to inform the user of the new location to obtain a 'fixed' app</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174735#174735 1 Answer by Carl for Calculating which tiles are lit in a tile-based game ("raytracing") Carl 2008-10-06T15:23:17Z 2008-10-06T15:23:17Z <p>TK's solution is the one that you would generally use for this sort of thing.</p> <p>For the partial lighting scenario, you could have it so that if a tile results in being in shadow, that tile is then split up into 4 tiles and each one of those is tested. You could then split that up as much as you wanted?</p> <p>Edit:</p> <p>You can also optimise it out a bit by not testing any of the tiles adjacent to a light - this would be more important to do when you have multiple light sources, I guess...</p> http://stackoverflow.com/questions/167569/problems-executing-compiled-3-5-code-on-a-server-which-only-has-the-2-0-framework/167588#167588 2 Answer by Carl for Problems executing compiled 3.5 code on a server which only has the 2.0 framework. Carl 2008-10-03T16:02:50Z 2008-10-03T16:02:50Z <p>I'm pretty sure that LINQ is one of the things that makes 3.5 a requirement. A lot of the other things, like lambda expressions etc. are just compiler trickery.</p> <p>Because System.Linq is a 3.5 feature, the framework is required to be that version.</p> <p>A good way to determine would be to change the target framework to 2.0 and see if it builds.</p> http://stackoverflow.com/questions/167096/is-the-order-of-objects-returned-by-foreach-stable/167119#167119 0 Answer by Carl for Is the order of objects returned by FOREACH stable? Carl 2008-10-03T14:24:34Z 2008-10-03T14:24:34Z <p>I would say that for most collection it is safe to assume this. It's not beyond the realms of possibility that a certain collection could have the enumerator implemented in a non-deterministic way, but that's probably not going to happen...</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166850#166850 0 Answer by Carl for What real life bad habits has programming given you? Carl 2008-10-03T13:30:37Z 2008-10-03T13:30:37Z <p>I tend to over-analyse everyday things, I think that it annoys the missus when I come up with corner or edge cases about stuff that REALLY shouldn't be that complicated...</p> <p>I am convinced that she is the only reason that I ever get anything done; left to me, most moments would have long passed by the end of the analysis phase.</p> <p>I do think that it's slightly different to being pedantic, definitely a programmerism</p> http://stackoverflow.com/questions/166330/parameterized-sql-queries/166395#166395 0 Answer by Carl for Parameterized Sql queries Carl 2008-10-03T11:23:06Z 2008-10-03T11:23:06Z <p>Ok, I'm not sure how good this is for you or how performant it is, but here is some code I have used in the past to achieve similar:</p> <pre><code> CREATE FUNCTION [dbo].[Split]( @list ntext ) RETURNS @tbl TABLE (listpos int IDENTITY(1, 1) NOT NULL, number int NOT NULL) AS BEGIN DECLARE @pos int, @textpos int, @chunklen smallint, @str nvarchar(4000), @tmpstr nvarchar(4000), @leftover nvarchar(4000) SET @textpos = 1 SET @leftover = '' WHILE @textpos &lt;= datalength(@list) / 2 BEGIN SET @chunklen = 4000 - datalength(@leftover) / 2 SET @tmpstr = ltrim(@leftover + substring(@list, @textpos, @chunklen)) SET @textpos = @textpos + @chunklen SET @pos = charindex(',', @tmpstr) WHILE @pos &gt; 0 BEGIN SET @str = substring(@tmpstr, 1, @pos - 1) INSERT @tbl (number) VALUES(convert(int, @str)) SET @tmpstr = ltrim(substring(@tmpstr, @pos + 1, len(@tmpstr))) SET @pos = charindex(',', @tmpstr) END SET @leftover = @tmpstr END IF ltrim(rtrim(@leftover)) &lt;&gt; '' INSERT @tbl (number) VALUES(convert(int, @leftover)) RETURN END </code></pre> <p>Then in your other stored procedure, you can pass in a comma delimited string of the IDs, like:</p> <pre><code>select a.number from split('1,2,3') a inner join myothertable b on a.number = b.ID </code></pre> <p>Like I say, this is probably really bad because it includes lots of string manipulation, and I can't remember where I got the function from... but it's there for picking at...</p> <p>I guess that you can also strip out the bits that populate the listpos column if you really don't need to index the original string.</p> http://stackoverflow.com/questions/162304/how-do-i-shutdown-restart-logoff-windows-via-bat-file/162403#162403 2 Answer by Carl for How do I Shutdown - Restart - Logoff Windows via bat file Carl 2008-10-02T13:57:09Z 2008-10-02T13:57:09Z <p>When remoted into a machine (target is XP anyway, not sure about target Vista), although Shutdown on the start menu is replaced by Disconnect Session or something like that, there should be one called 'Windows Security' which also does the same thing as Ctrl+Alt+End as pointed to by Owen.</p> http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/161678#161678 0 Answer by Carl for Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Carl 2008-10-02T10:30:55Z 2008-10-02T13:34:30Z <p>Is this request perhaps because the UAT that was undertaken on the wizard involved users that weren't aware that pressing ENTER will have the same effect as clicking the button?</p> <p>If when the final page of the wizard is displayed, the 'Finish' button is already highlighted (as I would expect) that maybe it's a matter of giving the user some cue that they can also press ENTER at this point.</p> <p>If you take Google for example, I seem to remember that if you tend to systematically type your search term in and then click the 'Search' button with the mouse, a message is displayed at the top of the search results that kindly hints to you that you can also just press ENTER. Obviously, this is not something that can easily be done in your case because this is the last page of the wizard, but maybe this is the sort of thing that your client is trying to get you to engineer around?</p> http://stackoverflow.com/questions/160181/hidden-features-of-msdn-documentation/160196#160196 3 Answer by Carl for Hidden features of MSDN documentation Carl 2008-10-01T23:15:01Z 2008-10-01T23:15:01Z <p>I found this blog post by Jon Galloway about putting the MSDN site into low bandwidth mode to be quite useful:</p> <p><a href="http://weblogs.asp.net/jgalloway/archive/2008/08/30/msdn-low-bandwidth-bookmarklet.aspx" rel="nofollow">http://weblogs.asp.net/jgalloway/archive/2008/08/30/msdn-low-bandwidth-bookmarklet.aspx</a></p> http://stackoverflow.com/questions/159769/oracle-rownum/159781#159781 3 Answer by Carl for Oracle ROWNUM Carl 2008-10-01T21:13:10Z 2008-10-01T21:13:10Z <p>You could do it as a subquery, so have:</p> <p>select q.*, rownum from (select... group by etc..) q</p> <p>That would probably work... don't know if there is anything better than that.</p> http://stackoverflow.com/questions/158895/how-to-make-a-windows-forms-net-application-display-as-tray-icon/158907#158907 5 Answer by Carl for How to make a Windows Forms .NET application display as tray icon? Carl 2008-10-01T18:02:53Z 2008-10-01T18:02:53Z <p>You can add the NotifyIcon component from the toolbox onto your main form.</p> <p>This has events such as MouseDoubleClick that you can use to handle various events.</p> <p>Edit: You have to make sure that you set the Icon property to a valid .ico file if you want it to show up properly in the systray.</p> http://stackoverflow.com/questions/1677326/nhibernate-aggregate-subquery/1678050#1678050 Comment by Carl on NHibernate Aggregate Subquery Carl 2009-11-05T19:40:13Z 2009-11-05T19:40:13Z Thanks, the HQL works a treat. http://stackoverflow.com/questions/1677326/nhibernate-aggregate-subquery/1677581#1677581 Comment by Carl on NHibernate Aggregate Subquery Carl 2009-11-05T19:39:01Z 2009-11-05T19:39:01Z I didn't even think about changing the query like that, thanks! I'm actually 'one of those' that would have previously done most things as stored procedures, so putting SQL in my code is probably not gonna happen. HQL scared me at first, but I think that it is pretty powerful, so I'll be going down that route I think. http://stackoverflow.com/questions/1577412/program-compatibility-assistant-thinks-my-app-is-an-installer/1577572#1577572 Comment by Carl on Program Compatibility Assistant thinks my app is an installer Carl 2009-11-03T09:47:52Z 2009-11-03T09:47:52Z As an update, no, this didn't work. As soon as the exe gets deployed to another location, such as &lt;Program Files&gt; the PCA rears its ugly head again. http://stackoverflow.com/questions/1577412/program-compatibility-assistant-thinks-my-app-is-an-installer/1577572#1577572 Comment by Carl on Program Compatibility Assistant thinks my app is an installer Carl 2009-10-16T14:35:28Z 2009-10-16T14:35:28Z Just adding the manifest did the trick (although I did try that before posting this, honest!). For a bit of further info, see: <a href="http://blogs.msdn.com/cjacks/archive/2009/06/18/pca-changes-for-windows-7-how-to-tell-us-you-are-not-an-installer-take-2-because-we-changed-the-rules-on-you.aspx" rel="nofollow">blogs.msdn.com/cjacks/archive/&hellip;</a> and <a href="http://technet.microsoft.com/en-us/library/dd638326%28WS.10%29.aspx" rel="nofollow">technet.microsoft.com/en-us/library/&hellip;</a>. Thanks. http://stackoverflow.com/questions/1577412/program-compatibility-assistant-thinks-my-app-is-an-installer Comment by Carl on Program Compatibility Assistant thinks my app is an installer Carl 2009-10-16T11:15:35Z 2009-10-16T11:15:35Z I hope so, because it's all a bit too 'magic stringy' for my liking.. thanks for the vote! http://stackoverflow.com/questions/473874/reading-clob-column-is-slow/495990#495990 Comment by Carl on Reading CLOB column is slow... Carl 2009-02-02T10:30:37Z 2009-02-02T10:30:37Z The NLS_CHARACTERSET is AL32UTF8 and the NLS_NCHAR_CHARACTERSET is AL16UTF16 - I believe that these are the defaults for an install on a Win-based server. I'm not even sure if/how you can change the NLS_LANG for the ADO.NET stuff http://stackoverflow.com/questions/487920/c-acceptbutton-not-working/487943#487943 Comment by Carl on C#: AcceptButton not working?? Carl 2009-01-28T15:11:30Z 2009-01-28T15:11:30Z What is quite strange is that setting the CancelButton actually sets that button's DialogResult to Cancel, but AcceptButton doesn't do the same for that button. http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446486#446486 Comment by Carl on How do you write code at home? Carl 2009-01-28T14:50:36Z 2009-01-28T14:50:36Z As far as I remember, TestDriven doesn't work with the express products. If I remember rightly, that was why Microsoft revoked Jamie Cansdale's MVP status - because he hacked it together so that it would work. http://stackoverflow.com/questions/473874/reading-clob-column-is-slow/484422#484422 Comment by Carl on Reading CLOB column is slow... Carl 2009-01-28T09:46:25Z 2009-01-28T09:46:25Z Returning a strong cursor didn't make a difference, unfortunately. It would be possible to change the stored procedure, but TO_CLOB() on it's own does not work - it has to be TO_CLOB(TO_NCLOB()). I'm not sure what those calls actually do, that is, how expensive they are? http://stackoverflow.com/questions/483702/c-how-can-i-split-this-string-into-an-array/484032#484032 Comment by Carl on C# How can I split this string into an array? Carl 2009-01-27T17:10:11Z 2009-01-27T17:10:11Z So will my altered one, it depends on how important the semicolons are, as yours is removing them. http://stackoverflow.com/questions/483702/c-how-can-i-split-this-string-into-an-array/484032#484032 Comment by Carl on C# How can I split this string into an array? Carl 2009-01-27T16:24:41Z 2009-01-27T16:24:41Z Obviously, the example as it is will not match 'smtp' at the beginning. I think all the replaces should be without the semicolon, e.g. text.Replace(&quot;smtp&quot;,&quot;|smtp&quot;). Final tidy up on the resulting can have a TrimEnd(';') and the split can be done with RemoveEmptyEntries to get rid of the first blank http://stackoverflow.com/questions/483333/how-to-expose-only-one-particular-class-from-an-assembly/483355#483355 Comment by Carl on How to expose only one particular class from an assembly? Carl 2009-01-27T13:22:29Z 2009-01-27T13:22:29Z Wasn't public the default in .NET 1.* ? To me, that in itself is a perfect reason for being explicit... http://stackoverflow.com/questions/473874/reading-clob-column-is-slow/473904#473904 Comment by Carl on Reading CLOB column is slow... Carl 2009-01-24T07:43:25Z 2009-01-24T07:43:25Z Yeah, we've had cache issues before when we've been performance testing, but this is a consistent speed issue. Even the very first call using the TO_CLOB(TO_NCLOB()) technique is fast, and I would not expect this to hit the cache on the first run through. Thanks. http://stackoverflow.com/questions/245666/not-keyword-vs-false-when-checking-for-false-boolean-condition/245805#245805 Comment by Carl on Not keyword vs = False when checking for false boolean condition Carl 2008-10-29T16:42:42Z 2008-10-29T16:42:42Z I'd have to disagree too, &quot;If myFlag is false&quot; reads more naturally than &quot;if not myflag&quot;. I'm not sure that means I would favour = false over not, because I'm more used to if (!myflag)... http://stackoverflow.com/questions/243510/oracle-pl-sql-query-order-by-issue/243520#243520 Comment by Carl on Oracle PL/SQL Query Order By issue Carl 2008-10-28T14:26:54Z 2008-10-28T14:26:54Z If you are leaving this question here for future reference then we should probably note that the error given is: ORA-01791: not a SELECTed expression