User Rob - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T14:05:57Z http://stackoverflow.com/feeds/user/34224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/480872/entity-framework-setting-a-foreign-key-property 3 Entity Framework: Setting a Foreign Key Property Rob 2009-01-26T18:34:52Z 2009-10-14T19:07:01Z <p>We have a table that looks roughly like this:</p> <pre><code>CREATE TABLE Lockers { UserID int NOT NULL PRIMARY KEY (foreign key), LockerStyleID int (foreign key), NameplateID int (foreign key) }</code></pre> <p>All of the keys relate to other tables, but because of the way the application is distributed, it's easier for us to pass along IDs as parameters. So we'd like to do this:</p> <pre><code> Locker l = new Locker { UserID = userID, LockerStyleID = lockerStyleID, NameplateID = nameplateID }; entities.AddLocker(l); </code></pre> <p>We could do it in LINQ-to-SQL, but not EF?</p> http://stackoverflow.com/questions/1114943/change-port-number-used-by-net-webbrowser-control/1115007#1115007 0 Answer by Rob for Change port number used by .NET WebBrowser Control Rob 2009-07-12T00:20:14Z 2009-07-12T00:20:14Z <p>If you're trying to change the local port of the web browser, I'm not sure that you can. The Windows API automatically assigns a local port to the browser.</p> http://stackoverflow.com/questions/1061294/passing-information-to-a-constructor-without-using-a-parameter-in-c/1061310#1061310 1 Answer by Rob for Passing information to a constructor without using a parameter in C# Rob 2009-06-30T01:07:44Z 2009-06-30T01:07:44Z <p>If you need to have multiple BadClass types that are variations of generics, you can do so by changing your inheritance tree:</p> <pre><code>class OuterClass { private class BadClassBase { // whatever BadClass does } private class BadClass : BadClassBase { public BadClass(T item) { ... } } } </code></pre> <p>Not sure if this is what you're going for but you can then create your List&lt;BadClassBase&gt;.</p> http://stackoverflow.com/questions/1050192/basic-sorting-question-c-java-programmer-learning-c/1050206#1050206 0 Answer by Rob for Basic Sorting Question - C# - (Java Programmer Learning C#) Rob 2009-06-26T17:14:25Z 2009-06-26T17:14:25Z <p>Did you implement IComparable or IComparable&lt;ClientWorkspace&gt;? </p> <p>As an alternative, if you don't want your class to implement that, you can also implement IComparer&lt;ClientWorkspace&gt; in another class, or create a method that matches the Comparer&lt;ClientWorkspace&gt; delegate.</p> <p>.NET does not have an implicit .compareTo method.</p> http://stackoverflow.com/questions/1049850/retrieve-single-entity-framework-entities-using-a-linq-query-or-getobjectkey/1050122#1050122 2 Answer by Rob for Retrieve single Entity Framework entities using a LINQ query or GetObjectKey? Rob 2009-06-26T16:50:53Z 2009-06-26T16:50:53Z <p>I prefer the latter because it is explicitly clear what it is you want. By using EntityKey (and this is something that the ADO.NET team doesn't seem to understand), we have to work around the structure imposed on us by Entity Framework. By using the query language in the way you did in the second example, we're telling all of the rest of the developers who will ever look at our code, hey, we just want this object with this ID or we want null.</p> <p>I don't think that being correct (as you are in the first example as well) is an excuse for not being clear to your colleagues. :)</p> http://stackoverflow.com/questions/1046935/unknown-publisher-warning-on-unique-downloads/1050094#1050094 0 Answer by Rob for unknown publisher warning on unique downloads Rob 2009-06-26T16:42:14Z 2009-06-26T16:42:14Z <p>I don't know the answer to this offhand, but I've seen it done by Just Great Software. They make customized installers for RegexBuddy and every time I've downloaded mine it's got its signature.</p> <p>I'm curious though - why don't you want to persist the file to disk? You don't need to leave it there - persist it, sign it, load it back into memory and delete it. Or, persist it, and have an agent or cron job delete it after a couple days.</p> http://stackoverflow.com/questions/1019906/asp-net-mvc-dynamic-routes-and-action-links-with-arbitrary-depth 3 ASP.NET MVC Dynamic Routes and Action Links with Arbitrary Depth Rob 2009-06-19T20:27:45Z 2009-06-22T17:24:17Z <p>I'd like to put together a forum/message board with ASP.NET MVC. Pretty common on these types of forums are hierarchical board categories, so for instance:</p> <p>-General Discussion<br /> -Technical Support<br /> --Website Technical support<br /> --Product Technical Support<br /> ---Product A Technical Support<br /> ---Product B Technical Support</p> <p>Below each category are then topics and messages belong to those topics. What I'm primarily concerned with is 1.) getting to the correct place, given a URL, 2.) not including boatloads of unnecessary information in my URL, and 3.) being able to recreate a URL from code.</p> <p>I'd like a URL to be something like this:</p> <pre> mysite.com/Forum/ - forum index mysite.com/Forum/General-Discussion/ - board index of "general discussion" mysite.com/Forum/Technical-Support/Product/Product-A/ - board index of "Product A Tech Support" mysite.com/Forum/Technical-Support/Website/Topic1004/ - Topic index of topic with ID 1004 in the "Website Technical Support" board mysite.com/Forum/Technical-Support/Website/Topic1004/3 - Page 3 of Topic with ID 1004 </pre> <p>Now, I've excluded Action names from this because they can be inferred based on where I am. Each Board entity in my database has a "UrlPart" column, which is indexed, so I expect to be able to do relatively fast queries against that table to figure out where I am.</p> <p>The question is: in order to figure out the correct place, should I use a custom route handler, a custom route binder, or should I just create obscure routing rules?</p> <p>This suggestion looks pretty good but it also looks like a lot of work for little benefit: <a href="http://stackoverflow.com/questions/379558/mvcnet-routing#379823">http://stackoverflow.com/questions/379558/mvcnet-routing#379823</a></p> <p>This seems to indicate that creating a model binding would be easier: <a href="http://stackoverflow.com/questions/296284/mvc-dynamic-routes">http://stackoverflow.com/questions/296284/mvc-dynamic-routes</a></p> <p>To fulfill #3 I'm going to have to create my own custom URL generation logic, right?</p> http://stackoverflow.com/questions/1002862/what-happened-to-html-actionlinktcontroller-in-asp-net-mvc 0 What happened to Html.ActionLink<TController> in ASP.NET MVC? Rob 2009-06-16T17:23:29Z 2009-06-16T17:45:54Z <p>I'm reading all of these blogs about using the Html.ActionLink method with lambda expressions. I even saw a ScottGu presentation about it here: <a href="http://www.hanselman.com/silverlight/ScottGuAtAltNetConf/" rel="nofollow">http://www.hanselman.com/silverlight/ScottGuAtAltNetConf/</a></p> <p>Here's a blog: <a href="http://blog.wekeroad.com/blog/aspnet-mvc-preview-using-the-mvc-ui-helpers/" rel="nofollow">http://blog.wekeroad.com/blog/aspnet-mvc-preview-using-the-mvc-ui-helpers/</a></p> <p>Here's a ScottGu blog about it: <a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx</a></p> <p>"Can also be written as: <pre><code> &lt;%= Html.ActionLink("Search Drinks", s => s.Results("Beverages", 2)) %&gt; </code></pre>"</p> <p>With this being such a powerful way to write URL routes - ESPECIALLY since it automatically supports refactoring tools - why is this either apparently missing or so hard to find? I looked at System.Web.Mvc.Html.LinkExtensions in Reflector and I see plenty of ActionLink(this HtmlHelper...) extension methods, but none that are generic.</p> <p>Anyone have help? Thanks!!</p> http://stackoverflow.com/questions/832448/restarting-a-wpf-storyboard/837002#837002 3 Answer by Rob for Restarting a WPF Storyboard Rob 2009-05-07T20:57:17Z 2009-05-07T21:13:08Z <p>What about using Storyboard.Seek(TimeSpan.Zero)? Similar to seeking in a Stream, this should bring you back to the beginning of the animation.</p> <p>I commented that you should also make sure that the IsControllable property is set to true. Keep that in mind!</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.media.animation.storyboard.seek.aspx" rel="nofollow">Storyboard.Seek method</a></p> http://stackoverflow.com/questions/773376/any-big-benefits-of-linq-to-sql-entities-if-database-allows-stored-procedures-onl/773395#773395 1 Answer by Rob for Any big benefits of Linq to SQL/Entities if database allows stored procedures only? Rob 2009-04-21T16:09:56Z 2009-04-21T16:09:56Z <p>LINQ-to-SQL's stored procedure implementations will still return your entity objects; you don't get the super-incredible filtering capabilities that L2S provides by creating dynamic SQL, but you still can use the extensions to parse through.</p> <p>Like I said, you can still add your schema and when your stored procs return those entities, you get that object relationship mapped already.</p> <p>I still think it's handy :)</p> http://stackoverflow.com/questions/480872/entity-framework-setting-a-foreign-key-property/480938#480938 0 Answer by Rob for Entity Framework: Setting a Foreign Key Property Rob 2009-01-26T19:01:49Z 2009-01-26T19:01:49Z <p>I'm not sure that's exactly what I want to do driAn. I don't want to construct the entity and I don't want to request it from the database just to submit a single ID column back.</p> http://stackoverflow.com/questions/344519/select-distinct-from-a-list-of-ienumerablet-in-net-2-0/344541#344541 0 Answer by Rob for Select Distinct from a list of IEnumerable<T> in .NET 2.0 Rob 2008-12-05T17:09:02Z 2008-12-05T17:09:02Z <p>Another alternative is to use HashSet&lt;T&gt; - a HashSet doesn't allow duplicate items to be used and doesn't require a key/value pair.</p> http://stackoverflow.com/questions/344478/linq-to-sql-query-using-not-in/344526#344526 0 Answer by Rob for Linq to Sql query using "not in" Rob 2008-12-05T17:03:10Z 2008-12-05T17:03:10Z <p>Yes! </p> <p>Here's an example from code we already had written:</p> <pre><code> List&lt;long&gt; badUserIDs = new List { 10039309, 38300590, 500170561 }; BTDataContext dc = new BTDataContext(); var items = from u in dc.Users where !badUserIDs.Contains(u.FbUserID) select u; </code></pre> <p>The generated SQL turns out to be:</p> <p><code> {SELECT [t0].[UserID], [t0].[FbUserID], [t0].[FbNetworkID], [t0].[Name], FROM [dbo].[Users] AS [t0] WHERE NOT ([t0].[FbUserID] IN (@p0, @p1, @p2)) } </code></p> http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install/344490#344490 0 Answer by Rob for As a developer, what changes do you make to a vanilla Windows install ? Rob 2008-12-05T16:55:01Z 2008-12-05T16:55:01Z <p>I generally leave Windows Defender online but I don't use an antivirus so....</p> <p>I set my start menu to display small icons and to have no "most recently used programs" active. Instead I pin everything to my start menu:</p> <p><img src="http://www.robpaveza.net/pub/startmenu.png" alt="My start menu" /></p> <p>I also make sure that all the extension menus are actual menus, not just links, and that my computer and user files icons are shown on the desktop.</p> http://stackoverflow.com/questions/331794/access-internal-file-vb-net/331817#331817 2 Answer by Rob for Access internal file VB.NET Rob 2008-12-01T18:56:38Z 2008-12-01T18:56:38Z <p>If you add the text file to a .ResX file, you can have all the benefits (dynamic updating, for instance) AND not need to worry about interacting with an actual file. VB will automatically create a class to access the file - suppose you have Resources.resx. You can access it with My.Resources.MyFile - it will return a string.</p> http://stackoverflow.com/questions/331770/how-do-i-fix-this-mysql-query/331792#331792 1 Answer by Rob for How do I fix this mysql query? Rob 2008-12-01T18:49:20Z 2008-12-01T18:49:20Z <p>What about:</p> <pre><code> SELECT avg(con_hits) as avg_hits FROM ( SELECT con_hits FROM content WHERE con_type = 1 AND con_posttime &lt; $twelve_hrs_ago AND con_refresh = 0 ORDER BY con_posttime DESC LIMIT 100 ) </code></pre> <p>Mysql supports subqueries, so this might do it for you.</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/subqueries.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/subqueries.html</a></p> http://stackoverflow.com/questions/321947/javascript-regexp-match-string-pattern-except-if-string-is-inside-specified-tag/321967#321967 0 Answer by Rob for Javascript Regexp - Match string pattern except if string is inside specified tag Rob 2008-11-26T20:04:33Z 2008-11-26T20:04:33Z <p>JavaScript doesn't inherently support look-behind. In order to do this, you'd need to run .match() and then for each of your matches, you'd need to do matches on your tags (such as /&lt;a\s+.*?&gt;/ being immediately before your match and then &lt;/a&gt; after your match).</p> <p>Good luck!!</p> http://stackoverflow.com/questions/320170/how-do-i-divide-an-ordered-list-of-integers-into-evenly-sized-sublists/320240#320240 0 Answer by Rob for How do I divide an ordered list of integers into evenly sized sublists? Rob 2008-11-26T10:26:25Z 2008-11-26T10:26:25Z <p>You might consider something like this:</p> <pre><code> public static int[][] divide(int[] initialList, int sublistCount) { if (initialList == null) throw new NullPointerException("initialList"); if (sublistCount &lt; 1) throw new IllegalArgumentException("sublistCount must be greater than 0."); // without remainder, length / # lists will always be the minimum // number of items in a given subset int min = initialList.length / sublistCount; // without remainer, this algorithm determines the maximum number // of items in a given subset. example: in a 15-item sample, // with 4 subsets, we get a min of 3 (15 / 4 = 3r3), and // 15 + 3 - 1 = 17. 17 / 4 = 4r1. // in a 16-item sample, min = 4, and 16 + 4 - 1 = 19. 19 / 4 = 4r3. // The -1 is required in samples in which the max and min are the same. int max = (initialList.length + min - 1) / sublistCount; // this is the meat and potatoes of the algorithm. here we determine // how many lists have the min count and the max count. we start out // with all at max and work our way down. int sublistsHandledByMax = sublistCount; int sublistsHandledByMin = 0; while ((sublistsHandledByMax * max) + (sublistsHandledByMin * min) != initialList.length) { sublistsHandledByMax--; sublistsHandledByMin++; } // now we copy the items into their new sublists. int[][] items = new int[sublistCount][]; int currentInputIndex = 0; for (int listIndex = 0; listIndex &lt; sublistCount; listIndex++) { if (listIndex &lt; sublistsHandledByMin) items[listIndex] = new int[min]; else items[listIndex] = new int[max]; // there's probably a better way to do array copies now. // it's been a while since I did Java :) System.arraycopy(initialList, currentInputIndex, items[listIndex], 0, items[listIndex].length); currentInputIndex += items[listIndex].length; } return items; } </code></pre> <p>This isn't quite polished - I got into an infinite loop (I think) when I tried to pass an 18-item array in with 10 sublists. I think the algorithm breaks down when min == 1.</p> <p>This should be fairly fast. Good luck :)</p> http://stackoverflow.com/questions/320103/does-the-facebook-rest-api-allow-you-to-get-a-friends-phone-number/320163#320163 1 Answer by Rob for Does the Facebook REST API allow you to get a friend's phone number? Rob 2008-11-26T09:39:58Z 2008-11-26T09:39:58Z <p>According to the FQL documentation, no. The <a href="http://wiki.developers.facebook.com/index.php/User_%28FQL%29" rel="nofollow" title="User table">User table</a> and <a href="http://wiki.developers.facebook.com/index.php/Standard_user_info_%28FQL%29" rel="nofollow" title="Standard user info">Standard user info table</a> would be the storage place for that information, but no phone number column is listed. Also, <a href="http://wiki.developers.facebook.com/index.php/Users.getInfo" rel="nofollow" title="Users.getInfo">Users.getInfo()</a> and <a href="http://wiki.developers.facebook.com/index.php/Users.getStandardInfo" rel="nofollow" title="Users.getStandardInfo">Users.getStandardInfo()</a> do not evidently include phone number information either.</p> <p>Perhaps the app you saw strictly managed email and physical mailing addresses?</p> http://stackoverflow.com/questions/319124/how-to-disable-the-minimize-button-in-c/320145#320145 1 Answer by Rob for How to disable the minimize button in C#? Rob 2008-11-26T09:28:58Z 2008-11-26T09:28:58Z <p>I read your comment in regards to my response and was able to drum up a more complete solution for you. I ran this quickly and it seemed to have the behavior that you wanted. Instead of deriving your winforms from Form, derive from this class:</p> <pre><code> using System; using System.Windows.Forms; using System.ComponentModel; namespace NoMinimizeTest { public class MinimizeControlForm : Form { private const int WM_SYSCOMMAND = 0x0112; private const int SC_MINIMIZE = 0xf020; protected MinimizeControlForm() { AllowMinimize = true; } protected override void WndProc(ref Message m) { if (!AllowMinimize) { if (m.Msg == WM_SYSCOMMAND) { if (m.WParam.ToInt32() == SC_MINIMIZE) { m.Result = IntPtr.Zero; return; } } } base.WndProc(ref m); } [Browsable(true)] [Category("Behavior")] [Description("Specifies whether to allow the window to minimize when the minimize button and command are enabled.")] [DefaultValue(true)] public bool AllowMinimize { get; set; } } } </code></pre> <p>You could do a bit more if you wanted to be able to decide whether to allow minimizing at the time the click is sent, for instance:</p> <pre><code> using System; using System.Windows.Forms; using System.ComponentModel; namespace NoMinimizeTest { public class MinimizeControlForm : Form { private const int WM_SYSCOMMAND = 0x0112; private const int SC_MINIMIZE = 0xf020; protected MinimizeControlForm() { } protected override void WndProc(ref Message m) { if (m.Msg == WM_SYSCOMMAND) { if (m.WParam.ToInt32() == SC_MINIMIZE && !CheckMinimizingAllowed()) { m.Result = IntPtr.Zero; return; } } base.WndProc(ref m); } private bool CheckMinimizingAllowed() { CancelEventArgs args = new CancelEventArgs(false); OnMinimizing(args); return !args.Cancel; } [Browsable(true)] [Category("Behavior")] [Description("Allows a listener to prevent a window from being minimized.")] public event CancelEventHandler Minimizing; protected virtual void OnMinimizing(CancelEventArgs e) { if (Minimizing != null) Minimizing(this, e); } } } </code></pre> <p>For more information about this window notification, see the <a href="http://msdn.microsoft.com/en-us/library/ms646360(VS.85).aspx" rel="nofollow" title="WM_SYSCOMMAND Notification">MSDN article about it</a>.</p> http://stackoverflow.com/questions/319204/building-a-query-from-a-list-of-strings/319244#319244 0 Answer by Rob for Building a Query From a List of Strings Rob 2008-11-25T23:23:51Z 2008-11-25T23:23:51Z <p>I'd use a StringBuilder and a for loop. Assuming your list is called "list" and is a List:</p> <pre><code> StringBuilder sql = new StringBuilder(); if (list.Count &gt; 0) sql.AppendFormat(CultureInfo.InvariantCulture, "([{0}] LIKE \"{1}\"", columnName, list[0]); for (int i = 1; i &lt; list.Count; i++) { sql.AppendFormat(CultureInfo.InvariantCulture, " AND [{0}] LIKE \"{1}\"", columnName, list[i]); } if (list.Count &gt; 0) sql.Append(")"); </code></pre> http://stackoverflow.com/questions/319189/should-quaternion-based-3d-cameras-accumulate-quaternions-or-euler-angles/319238#319238 1 Answer by Rob for Should Quaternion based 3D Cameras accumulate Quaternions or Euler angles? Rob 2008-11-25T23:19:21Z 2008-11-25T23:19:21Z <p>I've seen both argued for. I think the real question you'll have to deal with is flexibility in your camera system down the line; IMO yaw is generally more interesting in a third-person view (because you're going to rotate about the character's vertical axis). While you can arguably "yaw" around the vertical in first-person view as well, I'm not sure it's really the same thing.</p> <p>However, I do think it's kind of a waste to recalculate your quaternions per-frame. Perhaps it would be better to store the latest quaternions and mark them dirty if your frame receives input?</p> http://stackoverflow.com/questions/319124/how-to-disable-the-minimize-button-in-c/319225#319225 0 Answer by Rob for How to disable the minimize button in C#? Rob 2008-11-25T23:11:19Z 2008-11-25T23:11:19Z <p>Coincoin's answer is correct. MinimizeBox is also available as a property in the designer properties window.</p> <p>@Kevin: While I appreciate the sentiment, that's not always a valid answer. If the application displays a modal dialog box by creating a new instance of a Form and then calling .ShowDialog() on it, you don't want the user to minimize that Form, because then all input on the main UI thread is blocked until that Form's modal status is satisfied. The user could potentially click on the main form and just get the "ding ding ding" unresponsive sound from Windows and not know what to do.</p> http://stackoverflow.com/questions/252260/using-reflector-invoke-method-on-functions-wih-optional-parameters/319209#319209 0 Answer by Rob for using Reflector.Invoke Method on functions wih optional parameters Rob 2008-11-25T23:06:13Z 2008-11-25T23:06:13Z <p>The Visual Basic compiler actually substitutes the optional parameter values into the calling code. So if your actual code was:</p> <pre><code>DoSomeStuff(blah1, blah2)</code></pre> <p>Visual Basic would have emitted IL code equivalent to:</p> <pre><code>DoSomeStuff(blah1, blah2, "45")</code></pre> <p>To know what that last parameter is, you'll need to get a reference to the parameter's object (I'm not sure what that is in Reflector - in .NET you'd get access to the MethodInfo and then to the ParameterInfo), then get its custom attributes, looking for an attribute marked with OptionalAttribute and DefaultParameterValueAttribute. Then, you'll need to call it with the third parameter, supplying the value from DefaultParameterValueAttribute. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/319182#319182 4 Answer by Rob for Hidden Features of C#? Rob 2008-11-25T22:53:40Z 2008-11-25T22:53:40Z <p>This isn't a C# specific type, but I just found the ISurrogateSelector and ISerializationSurrogate interfaces --</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx</a></p> <p>Using these in conjunction with the BinaryFormatter allows for non-serializable objects to be serialized via the implementation of a surrogate class. The surrogate pattern is well-understood in computer science, particularly when dealing with the problem of serialization. I think that this implementation is just tucked away as a parameter of the constructor to BinaryFormatter, and that's too bad.</p> <p>Still - VERY hidden. :)</p> http://stackoverflow.com/questions/283128/how-do-i-send-ctrlc-to-a-process-in-c/283357#283357 2 Answer by Rob for How do I send ctrl+c to a process in c#? Rob 2008-11-12T08:51:14Z 2008-11-12T08:51:14Z <p>@alonl: The user is attempting to wrap a command-line program. Command-line programs don't have message pumps unless they are specifically created, and even if that was the case, Ctrl+C doesn't have the same semantics in a Windows-environment application (copy, by default) as it does in a command-line environment (Break).</p> <p>I threw this together. CtrlCClient.exe simply calls Console.ReadLine() and waits:</p> <pre><code> static void Main(string[] args) { ProcessStartInfo psi = new ProcessStartInfo("CtrlCClient.exe"); psi.RedirectStandardInput = true; psi.RedirectStandardOutput = true; psi.RedirectStandardError = true; psi.UseShellExecute = false; Process proc = Process.Start(psi); Console.WriteLine("{0} is active: {1}", proc.Id, !proc.HasExited); proc.StandardInput.WriteLine("\x3"); Console.WriteLine(proc.StandardOutput.ReadToEnd()); Console.WriteLine("{0} is active: {1}", proc.Id, !proc.HasExited); Console.ReadLine(); } </code></pre> My output seems to do what you want: <pre> 4080 is active: True 4080 is active: False </pre> <p>Hope that helps!</p> <p>(To clarify: \x3 is the hex escape sequence for the hex character 3, which is ctrl+c. It's not just a magic number. ;) )</p> http://stackoverflow.com/questions/283316/ie6-and-ie7-sometimes-have-a-jquery-bug-with-nodename-is-null-or-not-an-object/283340#283340 0 Answer by Rob for IE6 and IE7 Sometimes Have A jQuery Bug With 'nodeName' is null or not an object Rob 2008-11-12T08:40:00Z 2008-11-12T08:40:00Z <p>Do you have any idea what kinds of nodes you might be running up against? Or, are you running in IE quirks mode? There might be some kinds of nodes such as #text that don't show up correctly in the DOM in quirks mode.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</code></pre> http://stackoverflow.com/questions/277623/whats-the-most-portable-way-to-make-a-silverlight-regular-net-rest-client/283260#283260 1 Answer by Rob for What's the most portable way to make a Silverlight & Regular .NET REST client Rob 2008-11-12T07:39:53Z 2008-11-12T07:39:53Z <p>I almost hate to suggest it but would you feel comfortable with <a href="http://msdn.microsoft.com/en-us/library/ms405827(VS.95).aspx" rel="nofollow" title="ChannelFactoryBase&lt;TChannel&gt;">reimplementing the WebChannelFactory&lt;T&gt; class</a>?</p> <p>From a cursory glance through the Silverlight API it looks like you won't get much help from Microsoft out of the box. You'd need to reimplement a channel class and a factory for it.</p> <p>Perhaps another way to create the channel and to isolate yourself from the platform-specific code is to create a custom implementation of it? Specifically what I mean is, you create yet another factory class, and the factory class either calls to the WebChannelFactory when it's available, or goes through the hoops of setting it up for you.</p> <p>Sorry I don't have a more in-depth suggestion. :)</p> http://stackoverflow.com/questions/283165/ways-to-hash-a-numeric-vector/283246#283246 1 Answer by Rob for Ways to hash a numeric vector? Rob 2008-11-12T07:28:43Z 2008-11-12T07:28:43Z <p>Depending on the size of the constants, I'd have to say the degree of chaos in the input vector will have an impact on the result. However, a quick qualitative analysis of your post would suggest that you have a good start:</p> <ul> <li>Your inputs are multiplied, therefore increasing the degree of separation between similar input values per iteration (for instance, 65 + 66 is much smaller than 65 * 66), which is good.</li> <li>It's deterministic, unless your vector should be considered a set and not a sequence. For clarity, should v = { 23, 30, 37 } be different than v = { 30, 23, 37 }?</li> <li>The uniformity of distribution will be varied based on the range and chaos of input values in v. However, that's true of a generalized integer hashing algorithm as well.</li> </ul> <p>Out of curiousity, why not just use an existing hashing algorithm for integers and perform some interesting math on the results?</p> http://stackoverflow.com/questions/283180/is-there-a-way-to-put-aspx-files-into-a-class-library-in-visual-studio-2008-net/283234#283234 1 Answer by Rob for Is there a way to put aspx files into a class library in Visual Studio 2008 .NET 3.5? Rob 2008-11-12T07:19:12Z 2008-11-12T07:19:12Z <p>The other difficulty with this approach is that you wouldn't really have access to controls created on the ASP.NET page directly without using <a href="http://msdn.microsoft.com/en-us/library/486wc64h.aspx" rel="nofollow" title="FindControl">FindControl</a>. </p> <p>However, all is not lost. Instead of using an ASP.NET Web Site, you can choose to use an ASP.NET Web Application Project. This uses the ASP.NET 1.1 functionality which allows you to essentially precompile.</p> <p><img src="http://www.robpaveza.net/pub/aspnet-web-app.png" alt="ASP.NET Web Application Project template in Visual Studio 2008" /></p> <p>The caveat is that, while you'll have the controls precompiled into your classes, you won't actually have the content on your page stored in your DLL.</p> <p>The alternative is to use the web site publishing wizard, which performs the automatic ASP.NET compilation before deployment. This, however, renders a series of DLLs that is fairly unusable; what is generated doesn't really make a lot of sense to developers (you'd get classes such as ASP.my_homepage_aspx) which, while usable, would hinder your development efforts.</p> http://stackoverflow.com/questions/1019906/asp-net-mvc-dynamic-routes-and-action-links-with-arbitrary-depth/1028431#1028431 Comment by Rob on ASP.NET MVC Dynamic Routes and Action Links with Arbitrary Depth Rob 2009-06-26T16:37:03Z 2009-06-26T16:37:03Z What I had done in the meantime was dynamically create the routes based on board IDs. I don't know that route handlers will do it for me, because they don't actually help construct routes, but it seems like a pretty good way to handle them as they come in. Thanks! http://stackoverflow.com/questions/480872/entity-framework-setting-a-foreign-key-property/1037910#1037910 Comment by Rob on Entity Framework: Setting a Foreign Key Property Rob 2009-06-26T16:35:31Z 2009-06-26T16:35:31Z Yes, that missing feature is annoying! :) http://stackoverflow.com/questions/1019906/asp-net-mvc-dynamic-routes-and-action-links-with-arbitrary-depth/1020541#1020541 Comment by Rob on ASP.NET MVC Dynamic Routes and Action Links with Arbitrary Depth Rob 2009-06-22T16:59:38Z 2009-06-22T16:59:38Z Yes. Part of it is that I'd like my URLs to get their structure from the database. This seems to be working... I'll post what I came up with a bit later today. http://stackoverflow.com/questions/1019906/asp-net-mvc-dynamic-routes-and-action-links-with-arbitrary-depth Comment by Rob on ASP.NET MVC Dynamic Routes and Action Links with Arbitrary Depth Rob 2009-06-20T00:38:44Z 2009-06-20T00:38:44Z One thing I've been thinking about doing is to populate my route table dynamically at runtime - constructing my routes based on the database. Would that work? http://stackoverflow.com/questions/1019906/asp-net-mvc-dynamic-routes-and-action-links-with-arbitrary-depth/1020541#1020541 Comment by Rob on ASP.NET MVC Dynamic Routes and Action Links with Arbitrary Depth Rob 2009-06-20T00:34:50Z 2009-06-20T00:34:50Z Thanks DSO, but that's not quite what I was looking for; you can imagine people create forums with all manners of middle areas. All I need in a URL is the /Forum marker, to know to marshal to the Forum controller; and optionally, the topic ID and page number, to indicate whether I want to go to the index, a board, or a topic. I want the board names in there for SEO reasons. Arguably I could make only the current board be part of the URL, but chomping part of it off wouldn't obey the REST principal of getting to the parent section. http://stackoverflow.com/questions/1002862/what-happened-to-html-actionlinktcontroller-in-asp-net-mvc/1002920#1002920 Comment by Rob on What happened to Html.ActionLink<TController> in ASP.NET MVC? Rob 2009-06-16T17:43:26Z 2009-06-16T17:43:26Z Thank you! I could not find this for the life of me! http://stackoverflow.com/questions/832448/restarting-a-wpf-storyboard/837002#837002 Comment by Rob on Restarting a WPF Storyboard Rob 2009-05-07T21:08:39Z 2009-05-07T21:08:39Z Also, need to make sure that IsControllable is set to true and the appropriate containing object is marked. http://stackoverflow.com/questions/344519/select-distinct-from-a-list-of-ienumerablet-in-net-2-0/344541#344541 Comment by Rob on Select Distinct from a list of IEnumerable<T> in .NET 2.0 Rob 2008-12-05T21:38:17Z 2008-12-05T21:38:17Z Wow, that's my mistake - I didn't realize that HashSet was part of System.Core. My mistake! http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/344543#344543 Comment by Rob on Why isn't LISP more widely used? Rob 2008-12-05T17:15:01Z 2008-12-05T17:15:01Z Java doesn't even come close to being a &quot;dynamically-typed&quot; language. Lisp is functional; Java is object-oriented, procedural. They don't even compare! http://stackoverflow.com/questions/344478/linq-to-sql-query-using-not-in/344498#344498 Comment by Rob on Linq to Sql query using "not in" Rob 2008-12-05T17:04:23Z 2008-12-05T17:04:23Z There's not really need to do the subquery - the Contains / !Contains will work within the context of the main query. http://stackoverflow.com/questions/331786/since-net-has-a-garbage-collector-why-do-we-need-finalizers-destructors-dispose/331795#331795 Comment by Rob on Since .NET has a garbage collector why do we need finalizers/destructors/dispose-pattern? Rob 2008-12-01T18:53:15Z 2008-12-01T18:53:15Z IMO this is the best answer here. The most important part of this - and why we use the disposable syntax - is to provide for the <i>deterministic release</i> of scarce resources. Great post. http://stackoverflow.com/questions/330497/c-constructor-coding-errors/331696#331696 Comment by Rob on C++ Constructor coding errors Rob 2008-12-01T18:43:38Z 2008-12-01T18:43:38Z The author indicated that he was &quot;on autopilot&quot; when he got the compiler warning that the method did not have a return type, and instead of correcting the spelling he added a return type. http://stackoverflow.com/questions/320158/net-library-to-draw-routed-lines-avoiding-obstacles Comment by Rob on .NET Library to draw routed lines avoiding obstacles Rob 2008-11-26T09:42:04Z 2008-11-26T09:42:04Z This almost sounds NP-complete... :) <a href="http://xkcd.com/287/" rel="nofollow">xkcd.com/287</a> http://stackoverflow.com/questions/319124/how-to-disable-the-minimize-button-in-c/319326#319326 Comment by Rob on How to disable the minimize button in C#? Rob 2008-11-26T09:08:47Z 2008-11-26T09:08:47Z Sorry, Joel Spolsky, while smart, isn't the end-all be-all authority on user interface design. Giving this as a blanket statement and then saying &quot;Joel Spolsky says&quot; doesn't address the problem. You don't know, and neither does Joel, the business case behind the UI design.