User Corin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:44:11Zhttp://stackoverflow.com/feeds/user/1736http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133671/format-date-on-binding-asp-net-mvc6Format Date On Binding (ASP.NET MVC)Corin2008-09-25T14:25:48Z2009-10-09T15:04:10Z
<p>In my ASP.net MVC app I have a view that looks like this:</p>
<pre><code>...
<label>Due Date</label>
<%=Html.TextBox("due")%>
...
</code></pre>
<p>I am using a <code>ModelBinder</code> to bind the post to my model (the due property is of <code>DateTime</code> type). The problem is when I put "01/01/2009" into the textbox, and the post does not validate (due to other data being input incorrectly). The binder repopulates it with the date <strong>and time</strong> "01/01/2009 <strong>00:00:00</strong>". </p>
<p><strong>Is there any way to tell the binder to format the date correctly (i.e. <code>ToShortDateString()</code>)?</strong></p>
http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use44What c# mocking framework to use?Corin2008-09-01T01:57:02Z2009-10-05T06:44:48Z
<p>I want to start using mock objects on my next c# project.</p>
<p>After a quick google I've found there are many:</p>
<ul>
<li><a href="http://www.nmock.org/" rel="nofollow">NMock</a> </li>
<li><a href="http://www.easymock.net/" rel="nofollow">EasyMock.Net</a></li>
<li><a href="http://www.typemock.com" rel="nofollow">TypeMock Isolator</a> <strong><em>Commercial / Paid</em></strong></li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a></li>
<li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a></li>
</ul>
<p>So my question is <strong>what one is your favourite and why?</strong></p>
http://stackoverflow.com/questions/397189/how-to-display-vector-graphics-svg-in-a-winforms-application3How to Display Vector Graphics (SVG) in a Winforms Application?Corin2008-12-29T05:34:46Z2009-09-28T01:14:52Z
<p><strong>Does anyone know of a way (preferably a control) to display vector graphics (preferably SVG) in a Winforms app?</strong></p>
<p>Im guessing that this would be easy to do with WPF, but I would prefer not to have to migrate the project.</p>
http://stackoverflow.com/questions/32664/c-generic-constraint-for-only-integers6C# generic constraint for only integersCorin2008-08-28T16:04:49Z2009-08-12T20:15:11Z
<p>Can anyone tell me if there is a way with c# generics to limit a type T to only</p>
<p>Int16, Int32, Int64, UInt16, UInt32, UInt64</p>
<p>I'm aware of the where keyword, but can't find an interface for <strong>only</strong> these types,</p>
<p>Something like:</p>
<pre><code>static bool IntegerFunction<T>(T value) where T : INumeric
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/183316/asp-net-mvc-handleerror/1164402#11644023Answer by Corin for asp.net MVC HandleErrorCorin2009-07-22T10:38:08Z2009-07-22T10:38:08Z<p>It should also be noted that errors that don't set the http error code to 500 </p>
<p>(e.g. UnauthorizedAccessException)</p>
<p>will not be handled by the HandleError filter.</p>
http://stackoverflow.com/questions/939309/c-get-delegate-func-implementation-from-concrete-class-via-reflection0C# Get Delegate (Func) implementation from concrete class via reflection?Corin2009-06-02T12:49:10Z2009-07-08T07:41:17Z
<p>Hi,</p>
<p>Sorry for the poor explaination of the problem </p>
<p>Totally rewriting question</p>
<p>I have the following method:</p>
<pre><code>public TReturn FindCached<TSearch, TReturn>(Func<TSearch, TReturn> searchMethod)
where TSearch : ISearchSpecification
where TReturn : class
{
SearchSpecification spec = new GetConcreteSearchSpecification<TSearch>();
//insert magic here to get an attribute from the method on
//the spec class that searchMethod invokes on the line below
return searchMethod(spec);
}
</code></pre>
<p>So I have a delegate (<code>searchMethod</code>) and an object (<code>spec</code>) that I want to invoke the delegate on. I want to inspect the object (<code>spec</code>) to find a <strong>custom attribute on the method</strong> that searchMethod will call when invoked.</p>
<p>Hope this is clearer.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/48680/winforms-c-set-focus-to-first-child-control-of-tab-page3Winforms c# - Set focus to first child control of tab page.Corin2008-09-07T18:57:24Z2009-06-12T14:13:41Z
<p>Say I have a <code>Textbox</code> nested within a <code>TabControl</code>. </p>
<p>When the form loads I would like to focus on that textbox (by default the focus is set to the tabControl).</p>
<p>Simply calling <code>textbox1.focus()</code> in the <code>Load</code> event of the form does not appear to work. </p>
<p>I have been able to focus it by doing the following:</p>
<pre><code> private void frmMainLoad(object sender, EventArgs e)
{
foreach (TabPage tab in this.tabControl1.TabPages)
{
this.tabControl1.SelectedTab = tab;
}
}
</code></pre>
<p><strong>My question is:</strong></p>
<p><strong>Is there a more elegant way to do this?</strong></p>
http://stackoverflow.com/questions/723644/can-i-have-nested-user-controls-in-aspnet-mvc/723650#7236502Answer by Corin for Can I have nested User Controls in ASPnet mvc?Corin2009-04-06T23:37:38Z2009-04-06T23:43:42Z<p>use nested calls to <a href="http://bradwilson.typepad.com/blog/2008/08/partial-renderi.html" rel="nofollow"><code>Html.RenderPartial</code></a>.</p>
<p>i.e. Have Html.RenderPartial in your page1.aspx view to render your usercontrol1.ascx view</p>
<p>that contains another Html.RenderPartial call to render usercontrol2.ascx</p>
http://stackoverflow.com/questions/401941/worst-sql-ever/402008#4020083Answer by Corin for Worst SQL EverCorin2008-12-31T01:13:41Z2008-12-31T01:13:41Z<p><strong>It's probably not the worst but I see this far too often (<a href="http://weblogs.sqlteam.com/jeffs/archive/2005/12/14/8546.aspx" rel="nofollow">Misuse of the group by clause</a>):</strong></p>
<pre><code>SELECT
C.CustomerID, C.CustomerName, C.CustomerType, C.Address1, C.City,
C.State, SUM(S.Sales) as TotalSales
FROM
Customers C
INNER JOIN Sales S
ON C.CustomerID = S.CustomerID
GROUP BY
C.CustomerID, C.CustomerName, C.CustomerType, C.Address1, C.City, C.State
</code></pre>
<p><strong>Instead of:</strong> </p>
<pre><code>SELECT
C.CustomerID, C.CustomerName,
C.CustomerType, C.Address1, C.City,
C.State, S.TotalSales
FROM
Customers C
INNER JOIN
(SELECT CustomerID, SUM(Sales) as TotalSales FROM Sales GROUP BY CustomerID) S
ON
C.CustomerID = S.CustomerID
</code></pre>
http://stackoverflow.com/questions/400113/best-way-to-implement-keyboard-shortcuts-in-winforms/400357#4003571Answer by Corin for Best way to implement keyboard shortcuts in winforms?Corin2008-12-30T14:17:16Z2008-12-30T15:38:13Z<p>If you have a menu then:<br />
Changing <code>ShortcutKeys</code> property of the <code>ToolStripMenuItem</code> should do the trick.</p>
<p>If not:<br />
You could create one and set it's <code>visible</code> property to false.</p>
http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/400412#40041213Answer by Corin for How does a good developer keep from creating code with a high bus hit factor?Corin2008-12-30T14:37:41Z2008-12-30T14:37:41Z<p>I'd say code that has <strong>good unit tests</strong>. For the replacement developer joining the project knowing that their changes are not breaking other parts of the system is important.</p>
http://stackoverflow.com/questions/398485/winforms-control-size-limit0winforms control size limitCorin2008-12-29T19:47:56Z2008-12-29T20:38:52Z
<p>I am using a Panel's paint event to display a really long diagram. I've run into the problem of .net controls size (height and width) are silently limited to a signed 16 bit integer (32,767). I'm assuming this is an underlying win32 limitation.</p>
<p><strong>Is there a way to get around this limitation and have larger controls?</strong></p>
http://stackoverflow.com/questions/392931/one-function-with-varying-return-types-possible-with-generics/392948#3929488Answer by Corin for One function with varying return types ... possible with Generics?Corin2008-12-25T16:37:04Z2008-12-25T16:44:18Z<pre><code>public static T FetchValue<T>(string key)
{
string value;
// logic to set value here
// ...
return (T)Convert.ChangeType(value, typeof(T), CultureInfo.InvariantCulture);
}
</code></pre>
http://stackoverflow.com/questions/292710/can-i-make-a-website-full-screen-without-flash-or-silverlight/292726#2927260Answer by Corin for Can I make a website full screen without flash or silverlight?Corin2008-11-15T16:29:07Z2008-11-15T16:29:07Z<p>No, you can't control the browser in that way with javascript.</p>
http://stackoverflow.com/questions/257879/using-findwindow-with-multiple-root-windows1using FindWindow with multiple root windowsCorin2008-11-03T03:38:51Z2008-11-03T10:10:00Z
<p>So I'm building an app that uses win32's SendMessage as IPC.</p>
<p>I'm using FindWindow to get the hWnd based on className and windowName. This has all being going fine and dandy until I want to talk to a root (as in child of the desktop) Window that has the same name / class name as other root Windows.</p>
<p><strong>Is there an alternative to FindWindow I can use to select the hWnd I want?</strong></p>
http://stackoverflow.com/questions/245482/asp-net-mvc-post-to-different-views-in-same-form/245718#2457182Answer by Corin for asp.net mvc post to different views in same formCorin2008-10-29T03:36:40Z2008-10-29T03:36:40Z<pre><code><form id="form1" name="form1" action="/Books/" method="get">
<input type="text" name="search" value="">
<input type="submit" name="id" value="1">
<input type="submit" name="id" value="2">
</form>
</code></pre>
http://stackoverflow.com/questions/245441/add-datasource-property-to-a-custom-winforms-control1Add DataSource Property to a Custom WinForms ControlCorin2008-10-29T00:55:55Z2008-10-29T01:29:56Z
<p>Hi All,</p>
<p>I want to add complex databinding to my custom winforms control. So I can do the following:</p>
<pre><code>myControl.DisplayMember = "Name";
myControl.ValueMember = "Name";
myControl.DataSource = new List<someObject>();
</code></pre>
<p>does anyone know what interfaces etc have to be implemented to achieve this?</p>
<p>I've had a look into it and all I can find is IBindableComponent, but that seems to be for Simple Binding rather than Complex Binding.</p>
http://stackoverflow.com/questions/238002/replace-line-breaks-in-a-string-c/238020#23802016Answer by Corin for Replace Line Breaks in a String C#Corin2008-10-26T13:38:57Z2008-10-28T14:43:00Z<p>Use replace with environment.newline</p>
<pre><code>myString = myString.Replace(Environment.Newline, "replacement text")
</code></pre>
<p>As mentioned in other posts, if the string comes from another environment (OS) then you'd need to replace that particular environments implementation of <a href="http://en.wikipedia.org/wiki/Newline" rel="nofollow">new line control characters</a>.</p>
http://stackoverflow.com/questions/201391/why-is-it-removed-asp-net-mvc-checkboxlist-w-o-mvccontrib/201423#2014234Answer by Corin for WHY is it removed: asp.net MVC CheckBoxList (w/o MVCContrib)Corin2008-10-14T14:35:37Z2008-10-14T14:41:57Z<p>A for loop in the view to generate the checkboxes</p>
<pre><code><% foreach(Inhoud i in ViewData["InhoudList"] as List<Inhoud>) { %>
<input type="checkbox" name="Inhoud" value="<%= i.name %>" checked="checked" /> <%= i.name %>
<% } %>
</code></pre>
<p>Don't use <code>Html.Checkbox</code>, as that will generate two values for each item in the list (as it uses a hidden input for false values)</p>
<p>And in the controller that the view posts to</p>
<pre><code>string[] Inhoud = Request.Form.GetValues("Inhoud");
</code></pre>
<p><strong>strong text</strong></p>
http://stackoverflow.com/questions/201245/cant-find-dynamic-controls-in-datagrid-on-postback/201267#2012670Answer by Corin for Can't find dynamic controls in datagrid on postbackCorin2008-10-14T14:00:03Z2008-10-14T14:00:03Z<p>you have to regenerate the controls. You should be able to get their values from the http request object</p>
http://stackoverflow.com/questions/147129/c-downcasting-when-binding-to-and-interface2c# downcasting when binding to and interfaceCorin2008-09-29T00:53:02Z2008-09-29T04:03:46Z
<p><strong>Is there a better way of binding a list of base class to a UI other than downcasting e.g:</strong></p>
<pre><code>static void Main(string[] args) {
List<Animal> list = new List<Animal>();
Pig p = new Pig(5);
Dog d = new Dog("/images/dog1.jpg");
list.Add(p);
list.Add(d);
foreach (Animal a in list)
{
DoPigStuff(a as Pig);
DoDogStuff(a as Dog);
}
}
static void DoPigStuff(Pig p)
{
if (p != null)
{
label1.Text = String.Format("The pigs tail is {0}", p.TailLength);
}
}
static void DoDogStuff(Dog d) {
if (d != null)
{
Image1.src = d.Image;
}
}
class Animal {
public String Name { get; set; }
}
class Pig : Animal{
public int TailLength { get; set; }
public Pig(int tailLength)
{
Name = "Mr Pig";
TailLength = tailLength;
}
}
class Dog : Animal {
public String Image { get; set; }
public Dog(String image)
{
Name = "Mr Dog";
Image = image;
}
}
</code></pre>
http://stackoverflow.com/questions/147129/c-downcasting-when-binding-to-and-interface/147229#1472290Answer by Corin for c# downcasting when binding to and interfaceCorin2008-09-29T01:39:24Z2008-09-29T01:39:24Z<p>Sorry I don't think I made this clear enough that I was asking about the specific situation of <strong>binding to a user interface</strong>. Obviously sticking UI code inside the class would be a bad idea.</p>
http://stackoverflow.com/questions/130605/can-linq-to-sql-do-bitwise-queries/130716#1307160Answer by Corin for Can LINQ (to SQL) do bitwise queries?Corin2008-09-25T00:03:43Z2008-09-25T00:03:43Z<p>If that doesn't work you could always use <code>ExecuteCommand</code>:</p>
<pre><code>DataContext.ExecuteCommand("select * from [User] where UserRolesBitmask | {0} = {0}", 22);
</code></pre>
http://stackoverflow.com/questions/112551/sql-server-priority-ordering6SQL Server Priority OrderingCorin2008-09-21T23:32:30Z2008-09-22T18:44:47Z
<p>Hi all,</p>
<p>I have a table that contains tasks and I want to give these an explicit ordering based on the priority of the task. The only way I can think to do this is via an <strong>unique</strong> int column that indexes where the task is in term of the priority (i.e. 1 is top 1000 is low).</p>
<p>The problem is that say I wanted to update task and set its priority to a lower value , I would have to update all the other rows between its current value and its new value.</p>
<p><strong>Can anyone suggest a better way of implementing this?</strong></p>
http://stackoverflow.com/questions/77293/what-is-an-easy-way-to-create-a-messagebox-with-custom-button-text-in-managed-c/77457#774572Answer by Corin for What is an easy way to create a MessageBox with custom button text in Managed C++?Corin2008-09-16T21:42:33Z2008-09-16T21:42:33Z<p>You can use "OK" and "Cancel"</p>
<p>By substituting <code>MessageBoxButtons::YesNo</code> with <code>MessageBoxButtons::OKCancel</code></p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.messageboxbuttons.aspx" rel="nofollow">MessageBoxButtons Enum</a></p>
<p>Short of that you would have to create a new form, as I don't believe the Enum can be extended.</p>
http://stackoverflow.com/questions/56107/what-is-the-best-way-to-parse-html-in-c/56139#561390Answer by Corin for What is the best way to parse html in C#?Corin2008-09-11T09:39:18Z2008-09-11T09:39:18Z<p>You could use a HTML DTD, and the generic XML parsing libraries.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52233#522336Answer by Corin for What are the core mathematical concepts a good developer should know?Corin2008-09-09T15:57:05Z2008-09-09T15:57:05Z<p><a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">Big O notation</a> in general algorithm analysis, and in relation to standard collections (sorting, retrieval insertion and deletion)</p>
http://stackoverflow.com/questions/51771/the-best-way-to-validate-xml-in-a-unit-test5The best way to validate XML in a unit test?Corin2008-09-09T12:46:21Z2008-09-09T13:14:38Z
<p>I have a class with a <code>ToString</code> method that produces XML. I want to unit test it to ensure it is producing valid xml. I have a DTD to validate the XML against. </p>
<p><strong>Should I include the DTD as a string within the unit test to avoid a dependency</strong> on it, or is there a smarter way to do this?</p>
http://stackoverflow.com/questions/36831/how-do-you-parse-an-ip-address-string-in-c/36871#368714Answer by Corin for How do you parse an IP address string in C#?Corin2008-08-31T14:13:11Z2008-08-31T14:13:11Z<p>Also you should remember that <a href="http://en.wikipedia.org/wiki/IPv4" rel="nofollow">IPv4</a> and <a href="http://en.wikipedia.org/wiki/IPv6" rel="nofollow">IPv6</a> are different lengths.</p>
http://stackoverflow.com/questions/34858/how-to-benchmark-a-sql-sever-query1How to benchmark a SQL Sever Query?Corin2008-08-29T17:52:23Z2008-08-30T02:43:45Z
<p>I'd like to know the standard way to benchmark a SQL Sever Query, preferibly I'd like to know about the tools that come with SQL Server rather than 3rd Party tools.</p>
http://stackoverflow.com/questions/939309/c-get-delegate-func-implementation-from-concrete-class-via-reflection/939396#939396Comment by Corin on C# Get Delegate (Func) implementation from concrete class via reflection?Corin2009-06-02T14:46:14Z2009-06-02T14:46:14Zattrs[0] comes back as
System.Runtime.CompilerServices.CompilerGeneratedAttribute
:(
I'm not sure how this could work though as searchMethod is a function defined on an interface, not the concrete implementation that contains the custom attribute.http://stackoverflow.com/questions/939309/c-get-delegate-func-implementation-from-concrete-class-via-reflection/939396#939396Comment by Corin on C# Get Delegate (Func) implementation from concrete class via reflection?Corin2009-06-02T14:03:01Z2009-06-02T14:03:01ZThanks again... my exact problem is getting "nameOfMethodToBeCalledHere" from the searchMethod Func
searchMethod.Method.Name is populated with backing field stuff :(http://stackoverflow.com/questions/939309/c-get-delegate-func-implementation-from-concrete-class-via-reflection/939396#939396Comment by Corin on C# Get Delegate (Func) implementation from concrete class via reflection?Corin2009-06-02T13:38:24Z2009-06-02T13:38:24ZThanks for your reply, I was unclear in my question: I'm actually trying to get a custom attribute from the method of the spec that searchMethod invokes.http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/400412#400412Comment by Corin on How does a good developer keep from creating code with a high bus hit factor?Corin2008-12-30T21:33:25Z2008-12-30T21:33:25ZWell written unit tests are a form of documentation in themselves.http://stackoverflow.com/questions/401090/preventive-vs-reactive-c-programmingComment by Corin on Preventive vs Reactive C# programmingCorin2008-12-30T19:52:43Z2008-12-30T19:52:43ZI do believe you mean "to err on the side of"http://stackoverflow.com/questions/398485/winforms-control-size-limitComment by Corin on winforms control size limitCorin2008-12-29T20:20:11Z2008-12-29T20:20:11ZDNA Sequence Datahttp://stackoverflow.com/questions/205644/error-when-using-extension-methods-in-c/338452#338452Comment by Corin on Error when using extension methods in C#Corin2008-12-25T18:17:36Z2008-12-25T18:17:36Z+1 Merry Christmashttp://stackoverflow.com/questions/46031/why-does-the-asp-net-web-forms-model-suck/46051#46051Comment by Corin on Why does the ASP.Net Web Forms model "suck"?Corin2008-12-22T15:23:30Z2008-12-22T15:23:30ZThey are fixing INamingContainer and ViewState in 4.0.http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121402#121402Comment by Corin on What is the one programming skill you have always wanted to master but haven't had time?Corin2008-10-23T14:07:15Z2008-10-23T14:07:15ZI would highly recommend the book "3D Math Primer for Graphics and Game Development" before starting graphics programing.http://stackoverflow.com/questions/196966/where-does-jquery-ui-fit-in-mvc/196999#196999Comment by Corin on Where does jQuery UI fit in MVC?Corin2008-10-14T14:18:43Z2008-10-14T14:18:43ZI'd say that you should be making a request to the controller and the controller should figure out what view or parts of the view to render and passing that info to the view via a model http://stackoverflow.com/questions/147129/c-downcasting-when-binding-to-and-interface/147238#147238Comment by Corin on c# downcasting when binding to and interfaceCorin2008-09-29T01:48:10Z2008-09-29T01:48:10ZHmmm, yes having both the properties being used in a string is a problem with my example... that is not really what I'm afterhttp://stackoverflow.com/questions/147129/c-downcasting-when-binding-to-and-interface/147139#147139Comment by Corin on c# downcasting when binding to and interfaceCorin2008-09-29T01:46:14Z2008-09-29T01:46:14ZThanks for the reply,
Although this is the ideal way to design the class if DoStuff was only dealing within the confines of the class. I am asking about binding to a user interface. http://stackoverflow.com/questions/133671/format-date-on-binding-asp-net-mvc/134097#134097Comment by Corin on Format Date On Binding (ASP.NET MVC)Corin2008-09-25T15:50:36Z2008-09-25T15:50:36ZThanks for the reply. I am aware of strongly typed pages and the benefits they bring, I believe this is more applicable in an editing view. I was specifically after information that is applicable to using a modelbinder (in a creation view) .http://stackoverflow.com/questions/116038/what-is-the-best-way-to-slurp-a-file-into-a-stdstring-in-c/116083#116083Comment by Corin on What is the best way to slurp a file into a std::string in c++?Corin2008-09-22T17:24:46Z2008-09-22T17:24:46Z+1 for using string streams. Comments above are both valid syntax corrections.http://stackoverflow.com/questions/112551/sql-server-priority-ordering/112576#112576Comment by Corin on SQL Server Priority OrderingCorin2008-09-21T23:53:34Z2008-09-21T23:53:34ZIts a nice idea, though im not sure its very practical. As it would make inserts tricky as well. i.e. after you're first record does the next insert priority become MAX(realNumber)? If so what happens when you insert another value with a lower prioirty.