User Jiminy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:41:48Z http://stackoverflow.com/feeds/user/23355 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/838367/why-do-i-see-restricted-in-my-devexpress-xtraeditors-dateedit-control 1 Why do I see 'Restricted' in my DevExpress.XtraEditors.DateEdit control Jiminy 2009-05-08T05:29:16Z 2009-09-04T03:00:03Z <p>From a customer site we have a screenshot of one of our DevExpress date controls (DateEdit) showing the text 'Restricted' where the date is normally shown, has anybody seen this or know why it might happen.</p> <p>We've been unable to reproduce this in-house, I thought it might be the NullText for the control, but that just sets the control to the current date and the database field that it is reading from is not nullable so I don't believe that is the problem. I've searched the DevExpress site but nothing there.</p> <p>The field is also disabled for the user so they can't have set it themselves.</p> http://stackoverflow.com/questions/905365/desktop-development-versus-web-development/905382#905382 0 Answer by Jiminy for Desktop development versus Web development Jiminy 2009-05-25T04:55:56Z 2009-05-25T04:55:56Z <p>You may want to listen to this podcast</p> <p>Herding Code 47: Joe Brinkman on Webforms vs ASP.NET MVC</p> <p><a href="http://herdingcode.com/?p=183" rel="nofollow">http://herdingcode.com/?p=183</a></p> <p>I haven't listened to it yet but they often have thoughts worth considering.</p> http://stackoverflow.com/questions/896534/sql-server-2005-table-functions-in-a-select-statement 1 SQL Server 2005 - Table Functions in a Select statement Jiminy 2009-05-22T05:58:44Z 2009-05-22T18:50:56Z <p>I have a table called PurchaseOrderDetail. </p> <pre><code>TABLE PurchaseOrderDetail PurchaseOrderDetail int, Comments nvarchar(500) </code></pre> <p>In the Comments field of each item I have a ‘;’ separated list that stores A Contract Name, Contract No, License Name, License Version.</p> <p>i.e.</p> <pre><code>PurchaseOrderDetail Comments 1 'Microsoft Office Standard 2007;12%;;' 2 'Microsoft Visio 2007;9%;;' </code></pre> <p>I also have a function called Split that takes a delimiter and a string and returns a table,</p> <p>So calling this select * from Split(';', 'Microsoft Office Standard 2007;12%;;')</p> <p>returns this</p> <pre><code>pn s [ column names] 1 Microsoft Office Standard 2007 2 12% </code></pre> <p>I need to break this information out for each PurchaseOrderDetail and show them in a report</p> <p>So something like this</p> <pre><code>select PurchaseOrderDetailID, cn.s as ContractName, cno.s as ContractNo from dbo.PurchaseOrderDetail as pod join dbo.Split(';', pod.Comments) as cn on cn.pn = 1 join dbo.Split(';', pod.Comments) as cno on cno.pn = 2 </code></pre> <p>although that doesn’t run, but I hope it suggests intent.</p> <p>I’d like my results to be:</p> <pre><code>PurchaseOrderDetailID ContractName ContractNo 1 Microsoft Office Standard 2007 12% </code></pre> <p>Is it possible, or am I tackling this the wrong way</p> http://stackoverflow.com/questions/881226/how-do-i-concatenate-two-strings-with-the-jet-oledb-4-0-provider 2 How do I concatenate two strings with the Jet.OLEDB.4.0 provider Jiminy 2009-05-19T06:23:50Z 2009-05-19T09:40:37Z <p>I'm passing a query to an internal application that runs that query and returns the result, the connection is to a CSV file and I'm connecting with the Provider=Microsoft.Jet.OLEDB.4.0</p> <p>I'd like to join to strings in to one column but I'm getting an error.</p> <p>Can this be done, does anyone know how to do it?</p> <p>Example of what I'm doing:</p> <pre><code>select PurchaseOrderNo, PurchaseOrderDate, Description, Quantity, ContractName + 'delimiter' + ContractNo as LinePrimaryKeys from [POImport baseline.csv] </code></pre> <p>the error is: - Error - The provider could not determine the Double value. For example, the row was just created, the default for the Double column was not available, and the consumer had not yet set a new Double value.</p> <p>From other reading it looks like not both of the values I'm joining are being recognized as strings.</p> <p>for example replacing PurchaseOrderNo + 'delimiter' + ContractNo as LinePrimaryKeys with PurchaseOrderNo + 'delimiter' + PurchaseOrderNo as LinePrimaryKeys</p> <p>stops the error. So now how do I Cast to string?</p> <p>This doesn't work. ContractName + 'cn' + CAST(ContractName as nvarchar(50)) as LinePrimaryKeys</p> http://stackoverflow.com/questions/729642/int-to-string/767205#767205 0 Answer by Jiminy for Int To String? Jiminy 2009-04-20T07:06:43Z 2009-04-20T07:06:43Z <p>John this is off topic but have you considered with this method to pass in a class made up of each of the sub items to add. So: </p> <pre><code>class ListItem { public string Name {get; set;} public int Empty {get; set;} public int Population {get; set;} public int Max {get; set;} public bool Checked {get; set;} } </code></pre> <p>That way you would need to have each of the items in the arrays passed in lined up. Trying to line up items in many arrays often make interfaces hard to use. Your method would look like</p> <pre><code>FillList(IList&lt;ListItem&gt; listItems) { if (this.InvokeRequired) { this.Invoke((MethodInvoker)delegate { foreach (ListItem listItem in listItems) { ListViewItem item = new ListViewItem(listItem .Name); item.SubItems.Add(listItem.Empty.ToString()); item.SubItems.Add(listItem.Population.ToString()); item.SubItems.Add(listItem.Max.ToString()); item.SubItems.Add(listItem.Checked ? "No" : "Yes"); listView1.Items.Add(item); } } } } </code></pre> <p>I've just written this code straight in so there maybe some code cleanup required</p> http://stackoverflow.com/questions/759703/comment-the-interface-implementation-or-both/759732#759732 1 Answer by Jiminy for Comment the interface, implementation or both? Jiminy 2009-04-17T09:27:46Z 2009-04-17T09:27:46Z <p>We just comment the interface, comments are so easy to get out of sync with either the derived or base class/interface that's it's nice to have it in just one place.</p> <p>Although it looks like @Nath maybe suggesting an automated documentation tool that helps keep things together (sounds cool if you use that). Here at WhereIWorkAndYouDontCare the comments are for dev so a single place in the code is preferred</p> http://stackoverflow.com/questions/732742/database-modeling-question-different-data-required-deppending-on-the-user-type/732756#732756 0 Answer by Jiminy for Database modeling question - different data required deppending on the user type Jiminy 2009-04-09T04:10:42Z 2009-04-09T04:10:42Z <p>I've previously done the same thing. As long as you store the customer type then it's not difficult to get the correct details.</p> <p>You may consider 2 tables and use views to union them if there is going to be one table that is much larger than the other, although an index on the customer type will do much the same thing. By 'much the same ting' i mean make data of one type quick to access.</p> <p>The nice thing about putting all the data in one table is you don't have to do any joins to get to the data, which helps with the speed of the query and ease of writing.</p> http://stackoverflow.com/questions/688922/how-do-you-find-out-if-a-control-derives-from-a-class 1 How do you find out if a control derives from a class Jiminy 2009-03-27T08:28:45Z 2009-03-27T08:53:22Z <p>I have a list of controls (_controlList) and from that list of controls I want to get the ones that derive from a given class. So I have code that looks like this.</p> <pre><code>List&lt;Control&gt; _controlList = new List&lt;Control&gt;(); public Control[] ControlsThatIsA(Type soughtType) { List&lt;Control&gt; result = new List&lt;Control&gt;(); foreach (Control control in _controlList) { // This would have been nice but doesn't compile ////////////// // if (control.GetType() is soughtType) { result.Add(control); } } return result.ToArray(); } </code></pre> <p>Any thoughts. I don't have to pass in the Type, it could be the string name of the class</p> http://stackoverflow.com/questions/415244/how-do-you-make-a-unit-test-when-the-results-vary/415261#415261 3 Answer by Jiminy for How do you make a unit test when the results vary? Jiminy 2009-01-06T02:40:25Z 2009-01-06T06:49:40Z <p>It sounds like your testing at too high a level. Consider mocking the web service interface and writing other unit tests on the data layer that access the database. Some more detail here might make this question easier to answer, for example the situation you're trying to test.</p> <p>I would normally expect the results of a unit test not to change, or at least to be within a range that you're expecting</p> http://stackoverflow.com/questions/249156/do-you-break-up-addresses-into-street-city-state-zip/249169#249169 2 Answer by Jiminy for Do you break up addresses into street / city / state / zip? Jiminy 2008-10-30T03:04:18Z 2008-10-30T03:04:18Z <p>I tend to split it up, allows searching to be done for a specific section of the address and you can limit the addresses you want to handle by knowing the formatting i.e. Only ship to east coast addresses.</p> http://stackoverflow.com/questions/155852/design-time-serialization-in-c/160438#160438 1 Answer by Jiminy for Design time serialization in C# Jiminy 2008-10-02T01:00:53Z 2008-10-02T01:00:53Z <p>Could you put more code up of the class that is having the serialization issue, maybe the constructor and the property to give reference to the variables you're using.</p> <p>Just a note: I've had a lot of issues with the visual designer and code generation, if I've got a property on a control then generally I put</p> <p>[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] </p> <p>on the property and handle the initialization myself.</p> http://stackoverflow.com/questions/146670/hardest-concept-to-grasp-as-a-beginner/147704#147704 0 Answer by Jiminy for Hardest concept to grasp as a beginner Jiminy 2008-09-29T06:25:30Z 2008-09-29T06:25:30Z <p>From a C++ programmer, the first hard concept would be pointers. Especially references (&amp;) and function pointers. Also, pointer arithmetic was hard until i was actual looking a memory and watching the pointer move.</p> http://stackoverflow.com/questions/147670/get-list-of-available-servers-in-sql-server-group/147694#147694 0 Answer by Jiminy for get list of available servers in SQL server group Jiminy 2008-09-29T06:19:22Z 2008-09-29T06:19:22Z <p>In C# I've used calls to odbc32.dll</p> <p>for example:</p> <p>[DllImport("odbc32.dll", CharSet = CharSet.Ansi)]</p> <p>private static extern short SQLBrowseConnect( IntPtr hconn, StringBuilder inString, short inStringLength, StringBuilder outString, short outStringLength, out short outLengthNeeded);</p> <p>documentation for that function is on MSDN <a href="http://msdn.microsoft.com/en-us/library/ms130926.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms130926.aspx</a></p> http://stackoverflow.com/questions/896534/sql-server-2005-table-functions-in-a-select-statement/899412#899412 Comment by Jiminy on SQL Server 2005 - Table Functions in a Select statement Jiminy 2009-05-24T23:15:33Z 2009-05-24T23:15:33Z KM you're right, and if this option was available to me I'd take it. But sometimes you can't change the schema, even though you'd like to. However I do think I'll create a view that should make the query using this table easier to write. http://stackoverflow.com/questions/896534/sql-server-2005-table-functions-in-a-select-statement/896539#896539 Comment by Jiminy on SQL Server 2005 - Table Functions in a Select statement Jiminy 2009-05-22T06:14:55Z 2009-05-22T06:14:55Z Thanks Matt, if you find your way in to Melbourne sometime we'll have to sort you out a beer http://stackoverflow.com/questions/896061/how-to-return-an-interface-type-without-mentioning-the-derived-class-name Comment by Jiminy on How to return an interface type without mentioning the derived class name? Jiminy 2009-05-22T02:05:13Z 2009-05-22T02:05:13Z I find the question a little unclear, but it may just be me. Are you trying to replace this line 'return TypeDescriptor.GetProperties(typeof(DerivedList));' with something that doesn't mention it's own class name? http://stackoverflow.com/questions/881226/how-do-i-concatenate-two-strings-with-the-jet-oledb-4-0-provider/881255#881255 Comment by Jiminy on How do I concatenate two strings with the Jet.OLEDB.4.0 provider Jiminy 2009-05-19T06:58:23Z 2009-05-19T06:58:23Z Thanks DR, that worked a treat http://stackoverflow.com/questions/881226/how-do-i-concatenate-two-strings-with-the-jet-oledb-4-0-provider/881255#881255 Comment by Jiminy on How do I concatenate two strings with the Jet.OLEDB.4.0 provider Jiminy 2009-05-19T06:52:22Z 2009-05-19T06:52:22Z You might be right, it looks like this error could be coming from the XML file I'm adding the query to. http://stackoverflow.com/questions/881226/how-do-i-concatenate-two-strings-with-the-jet-oledb-4-0-provider/881255#881255 Comment by Jiminy on How do I concatenate two strings with the Jet.OLEDB.4.0 provider Jiminy 2009-05-19T06:40:40Z 2009-05-19T06:40:40Z You get the error: - Error - An error occurred while parsing EntityName http://stackoverflow.com/questions/184823/devexpress-xtragrid/280314#280314 Comment by Jiminy on Devexpress Xtragrid Jiminy 2009-05-12T02:08:29Z 2009-05-12T02:08:29Z In doing this you are creating a repository item, which is what is assigned to the edit control of the column http://stackoverflow.com/questions/838367/why-do-i-see-restricted-in-my-devexpress-xtraeditors-dateedit-control/841318#841318 Comment by Jiminy on Why do I see 'Restricted' in my DevExpress.XtraEditors.DateEdit control Jiminy 2009-05-10T22:51:03Z 2009-05-10T22:51:03Z No I haven't tried that yet. I think I might post a question to DevExpress first. http://stackoverflow.com/questions/767401/how-do-i-break-this-down-into-unit-tests/767459#767459 Comment by Jiminy on How do I break this down into Unit Tests? Jiminy 2009-04-21T08:05:23Z 2009-04-21T08:05:23Z If people are going to down vote an entry then follow that up with a comment on why, so the author has the opportunity to improve there work. http://stackoverflow.com/questions/729642/int-to-string Comment by Jiminy on Int To String? Jiminy 2009-04-20T07:07:46Z 2009-04-20T07:07:46Z John this is off topic but have you considered with this method to pass in a class made up of each of the sub items to add. I've added detail in a reply below http://stackoverflow.com/questions/688922/how-do-you-find-out-if-a-control-derives-from-a-class/688973#688973 Comment by Jiminy on How do you find out if a control derives from a class Jiminy 2009-03-27T08:56:02Z 2009-03-27T08:56:02Z Thanks for your comments pTG I didn't know about .IsSubClassOf. http://stackoverflow.com/questions/688922/how-do-you-find-out-if-a-control-derives-from-a-class/688940#688940 Comment by Jiminy on How do you find out if a control derives from a class Jiminy 2009-03-27T08:49:34Z 2009-03-27T08:49:34Z Thanks Marc, that's a very nice way of solving that http://stackoverflow.com/questions/688922/how-do-you-find-out-if-a-control-derives-from-a-class/688929#688929 Comment by Jiminy on How do you find out if a control derives from a class Jiminy 2009-03-27T08:35:22Z 2009-03-27T08:35:22Z I've tried this and it doesn't compile it went very closely with what i had. This complies for you? http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185181#185181 Comment by Jiminy on What is the best comment in source code you have ever encountered? Jiminy 2009-03-16T00:23:22Z 2009-03-16T00:23:22Z That is ridiculous, who writes comments when they're drunk. http://stackoverflow.com/questions/155852/design-time-serialization-in-c/160438#160438 Comment by Jiminy on Design time serialization in C# Jiminy 2009-01-06T04:42:36Z 2009-01-06T04:42:36Z In the constructor or in the OnLoad event on the form