User Mike Wills - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T19:37:16Z http://stackoverflow.com/feeds/user/2535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive 2 Keeping Visual Studio Projects on a Network Drive Mike Wills 2008-10-01T20:46:17Z 2009-11-24T05:39:29Z <p>We just did a move from storing all files locally to a network drive. Problem is that is where my VS projects are also stored now. (No versioning system yet, working on that.) I know I heard of problems with doing this in the past, but never heard of a work-around. Is there a work around?</p> <p>So my VS is installed locally. The files are on a network drive. How can I get this to work?</p> <p>EDIT: I know what SHOULD be done, but is there a band-aid I can put on right now to fix this and maintain the network drive?</p> <p>EDIT 2: I am sure I am not understanding something, but <a href="http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive#159702">Bob King</a> has the right idea. I'll work with the lead web developer when he gets back into the office to figure out a temporary solution until we get some sort of version control setup. Thanks for the ideas.</p> http://stackoverflow.com/questions/1711096/processing-xml-from-a-table-with-one-line-in-one-record-each 0 Processing XML from a Table (with one line in one record each) Mike Wills 2009-11-10T20:51:34Z 2009-11-10T20:56:13Z <p>IBM only provides a database connection to the iSeries, thus I have to work around this issue with using a table to pass data from the iSeries to .NET. The RPGLE program creates an XML document in a table for processing on the .NET side. The thing is that on one record in the table has one line of the XML document. </p> <p>To help visualize pretend that there is an auto-increment primary key.</p> <pre><code> 1 &lt;?xml version="1.0" encoding="utf-8" ?&gt; 2 &lt;displayFile name="APDS001FM"&gt; 3 &lt;recordFormatname="SFL1"&gt; 4 &lt;fieldName name="*IN12" io="I" type="alpha" len="1"&gt;0&lt;/fieldName&gt; 5 &lt;fieldName name="WLINE" io="O" type="alpha" len="79"&gt;PURCHASE ORDER&lt;/fieldName&gt; 6 &lt;/recordFormat&gt; 7 &lt;/displayFile&gt; </code></pre> <p>I need to parse this out to get at the "WLINE" data (in this case "PURCHASE ORDER"). </p> <p>What would be the best approach to get the records out of the table into a XDocument so I can easily work with the XML.</p> <p>I tried loading all of the records into a string. But XDocument doesn't seem have to have a way to load it from a string.</p> <pre><code>// Retieve the XML and process it. XMLOUTPTableAdapter xmlOutTA = new XMLOUTPTableAdapter(); DataLayer.DataSet1.XMLOUTPDataTable xmlOutDT = xmlOutTA.GetData(); foreach (DataLayer.DataSet1.XMLOUTPRow row in xmlOutDT) { xmlString += row.XMLLINE; } // Create and XML Document XDocument xmlDoc = XDocument.Load(xmlString); </code></pre> <p>Is what I was hoping to do.</p> http://stackoverflow.com/questions/1608182/changing-how-fckeditor-sets-the-path-for-images 0 Changing how fckeditor sets the path for images Mike Wills 2009-10-22T15:51:23Z 2009-10-22T15:51:23Z <p>I found <a href="http://stackoverflow.com/questions/963958/how-to-set-image-path-for-fckeditor">this question</a> that is really close to what I want. </p> <p>Here is the situation that makes this question different. We have a C#.NET web application that creates newsletters for emailing out. Because we are using email, we have to have a static URL for every image. </p> <p>I have done what was instructed <a href="http://www.discussweb.com/php-programming/3866-fckeditor-image-upload-path.html" rel="nofollow">here</a>, however, the users like to use the upload tab instead of clicking the "Browser Server" button on the Image Info tab and uploading through there. This function still uses a dynamic URL. Besides educating the users (which has been done several times), is there a way to change this to a static URL?</p> <p>I have been pouring through the code trying to figure this out and not having much luck. To top it off, my JavaScript skills are pretty weak. </p> <p>Can someone please point me in the right direction?</p> http://stackoverflow.com/questions/1503197/how-long-can-memory-leaks-persist-in-rpgle-programs/1504330#1504330 0 Answer by Mike Wills for How long can memory leaks persist in RPGLE programs? Mike Wills 2009-10-01T14:33:47Z 2009-10-01T14:33:47Z <p>I am not familiar with those built-in-functions, but <em>normally</em> everything is cleaned up when the job ends (or user logs off if interactive). If you can't find an answer, I can point you to another community were your answer may be known.</p> http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card 0 How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:15:08Z 2009-09-25T20:27:33Z <p>How does one determine that the card a person is entering is a debit card, check card, or credit card?</p> <p>I am looking at this for web payments in the US only. This is for utility billing.</p> http://stackoverflow.com/questions/1473542/getting-your-customers-bills-in-to-bill-pay-sites 2 Getting Your Customer's Bills in to Bill Pay Sites Mike Wills 2009-09-24T18:56:03Z 2009-09-24T19:10:07Z <p>We are looking at ways to cut costs, and one idea I had was to push our customer's bills into the Bill Pay systems that banks (and other sites) use. Only thing is, I don't know how to do that? My searches in the past didn't turn up any information for the company side.</p> <p>Can anyone point me in a productive direction? Is there a single clearing house for this or do you have to set something up with each site?</p> <p><strong>More details:</strong> We are a local government that sends out utility bills on a monthly basis. We currently offer ACH and online bill payment (through our web site) options. But with so many (or so it seems) people using the free bill pay that banks are now offering, it would be a great option to push their bills to those that like to use this option. If it's cost effective, that is.</p> http://stackoverflow.com/questions/40219/what-is-the-policy-here-on-homework 10 What is the policy here on homework? [closed] Mike Wills 2008-09-02T18:32:22Z 2009-08-27T17:37:02Z <p>I am not a student, but I know other avenues have had problems in the past with students trying to get others to do their work for them. I am sure most of the people on this site right now would not give a student the code they need to complete the assignment, but would help them out so that they can do the assignment themselves. What is the official policy on this though?</p> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail 12 Sending Email in C#.NET Through Gmail Mike Wills 2008-08-28T13:28:38Z 2009-08-15T04:02:55Z <p>Instead of relying on my host to send email, I was thinking of sending the messages though my gmail account. The emails are personalized emails to the bands I play on my show. Has anyone had success doing this?</p> http://stackoverflow.com/questions/1267367/create-a-spooled-file-from-java-with-a-specified-job-name-on-iseries/1269729#1269729 0 Answer by Mike Wills for Create a Spooled File from Java with a specified Job name on iSeries Mike Wills 2009-08-13T02:29:07Z 2009-08-13T02:29:07Z <p>Job, user and job number are assigned by the system and cannot be changed. To the best of my knowledge anyway.</p> http://stackoverflow.com/questions/134244/retrieving-an-record-problem 0 Retrieving an Record Problem Mike Wills 2008-09-25T16:09:43Z 2009-07-30T20:35:00Z <p>Okay, that may not be the best subject...</p> <p>I am setting up an approval workflow within an application. I pass the username and the dollar amount to the subprocedure and figure out what workflow I need to use for the approval process. I thought I had this working until I try to handle the condition when the user hasn't been setup.</p> <p>So in my table I have:</p> <pre>wfid wfuser wfamt 1 user1 0 2 user2 0 2 user2 10000.00</pre> <p>Now if user3 tries to send something to the workflow, it shouldn't go becuase they are not setup. (Please note I have another table that contains the actual flow definition)</p> <p>I had this code to retrieve the correct workflow:</p> <pre><code> setgt (userId:amount) ARWFR1; readp ARWFR1; return wfid; </code></pre> <p>Obviously this works if the user is properly setup. However, throw our user3 sinareo back in and it won't work right. So then I tried:</p> <pre><code> setgt (userId:amount) ARWFR1; readpe (userId) ARWFR1; if (%eof()); return 0; endif; return wfid; </code></pre> <p>This is not working as I had expected. I am sure I am missing obvious, can you see it? I hope my current logic is clear enough.</p> http://stackoverflow.com/questions/135188/source-control-on-the-ibm-i-iseries 3 Source Control on the IBM i (iSeries) Mike Wills 2008-09-25T18:49:16Z 2009-07-30T20:34:23Z <p>On the web side we are working on getting source control. Now, I want to see what can be done for the iSeries side. What is your favorite source control application for iSeries and why? I am looking for low-cost if possible.</p> http://stackoverflow.com/questions/381891/what-resources-would-you-recommend-for-rpg36-code-conversion 0 What resources would you recommend for RPG36 code conversion? Mike Wills 2008-12-19T19:08:39Z 2009-07-30T20:20:42Z <p>The question really asks it all. We have a bunch of really old S/36 programs that need to be moderized. I am more looking for articles or sites that explain what the old method does and how to convert it to RPGLE.</p> http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort 1 DataTable.DefaultView.Sort Doesn't Sort Mike Wills 2009-07-30T18:45:39Z 2009-07-30T20:20:12Z <p>I am confused on DataTable.DefaultView.Sort. Here is the segment of the code I want to use it in.</p> <pre><code>actionLogDT.DefaultView.Sort = "StartDate"; foreach (CustomerService.ActionLogStartEndRow logRow in actionLogDT) { // code here } </code></pre> <p>The samples I have seen don't use the foreach loop and thus is confusing me on how to process this. It isn't sorting as I thought it should be.</p> <p>I see that .DefaultView returns a view, and .Table gives a compile error.</p> http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1209095#1209095 1 Answer by Mike Wills for DataTable.DefaultView.Sort Doesn't Sort Mike Wills 2009-07-30T20:20:12Z 2009-07-30T20:20:12Z <p>I had to take a slightly different approach. <a href="http://forums.asp.net/p/425620/425629.aspx" rel="nofollow">This post</a> was the closest I could find to get my code to work. Here is the working result:</p> <pre><code>actionLogDT.DefaultView.Sort = "StartDate"; DataView dv = actionLogDT.DefaultView; foreach (DataRowView logRow in dv) { . . . } </code></pre> <p>From there I just have to cast the value back into it's proper type.</p> <pre><code>(string)logRow["Status"].ToString() </code></pre> http://stackoverflow.com/questions/1149375/pros-and-cons-of-asna-visual-rpg-avr/1209029#1209029 0 Answer by Mike Wills for Pros and Cons of ASNA Visual RPG (AVR) Mike Wills 2009-07-30T20:07:42Z 2009-07-30T20:07:42Z <p>You may want to ask the RPG-L mailing list this question. You can find it at <a href="http://lists.midrange.com/listinfo/rpg400-l" rel="nofollow">http://lists.midrange.com/listinfo/rpg400-l</a></p> http://stackoverflow.com/questions/1207687/should-pdf-files-generated-from-latex-source-files-be-under-version-control/1207694#1207694 13 Answer by Mike Wills for Should PDF files generated from LaTeX source files be under version control? Mike Wills 2009-07-30T16:20:47Z 2009-07-30T18:49:05Z <p><strike>I don't see any problem with versioning a PDF if it could ever change. That way you can track the changes made to the PDF over the years of development much like you do your code.</strike></p> <p>Update after clarification: Since there is source to these PDF files, only the source should be stored. Storing the PDF files would be like storing the compiled objects generated from your source code.</p> http://stackoverflow.com/questions/1207685/how-do-i-handle-a-dbnull-datetime-field-coming-from-the-sql-server 1 How do I handle a DBNull DateTime field coming from the SQL Server? Mike Wills 2009-07-30T16:18:44Z 2009-07-30T17:27:42Z <p>I am getting this error when I retrieve a row with a null DataTime field:</p> <blockquote> <p>'srRow.Closed_Date' threw an exception of type 'System.Data.StrongTypingException'</p> </blockquote> <p>How do I properly handle these?</p> http://stackoverflow.com/questions/1207472/force-an-iteration-of-a-loop 0 Force an iteration of a loop Mike Wills 2009-07-30T15:43:33Z 2009-07-30T15:48:33Z <p>In my "native" programming language (RPG), I can write a loop and just leave the loop or force an iteration. It is kind of like a GOTO.</p> <pre><code>dow (x &lt; 999); read file; if (%eof); leave; // Leave the loop endif; if (field &lt;&gt; fileField); iter; // Iterate to the next record endif; enddo; </code></pre> <p>My question is if there is a similar option is C#. In my case, I am working with a foreach loop.</p> http://stackoverflow.com/questions/1172902/removing-unused-columns-from-a-bar-chart 0 Removing Unused Columns from a Bar Chart Mike Wills 2009-07-23T16:21:11Z 2009-07-24T18:39:55Z <p>I am creating a departmental bar chart that shows time frames for a set of tasks. Some departments share tasks, others are unique. I have the chart running except that I don't want all possible tasks listed for every department. I would only like to display those tasks that the department actually did. </p> <p>Here is an example of the data (# in days):</p> <pre><code>IT Pending 5 IT In Process 8 CD Pending 10 CD 1st Inspection 15 CD Re-inspection 5 </code></pre> <p>In this case I don't want to see "1st Inspection" or "Re-inspection" for IT because IT doesn't do that job nor do we want CD to have "In Process".</p> <p>Is it possible to remove these unneeded series for a category?</p> <p>The primary reason for asking this is because our data set is so large, it is nearly impossible to read the report. I think removing these unneeded columns would really help.</p> http://stackoverflow.com/questions/1172902/removing-unused-columns-from-a-bar-chart/1179413#1179413 1 Answer by Mike Wills for Removing Unused Columns from a Bar Chart Mike Wills 2009-07-24T18:39:55Z 2009-07-24T18:39:55Z <p>It must have been a long week for me. I switched how I was generating the graph and got what I wanted. My data was fine, I am now using the status for the category field and got it working.</p> http://stackoverflow.com/questions/1153573/elseif-vs-else-if -4 elseif vs. else if Mike Wills 2009-07-20T13:26:37Z 2009-07-24T12:55:18Z <p>Why would you use one over the other?</p> http://stackoverflow.com/questions/1038532/subversion-for-iseries/1047274#1047274 0 Answer by Mike Wills for Subversion for iSeries Mike Wills 2009-06-26T04:07:14Z 2009-06-26T04:07:14Z <p>I could be wriong, but the last I heard, SoftLanding is no longer maintaining the opensorce subversion product. </p> http://stackoverflow.com/questions/1003995/whats-a-good-web-based-analytics-package-thatll-work-without-requiring-javascip/1004009#1004009 2 Answer by Mike Wills for What's a good web-based analytics package that'll work without requiring javascipt? Mike Wills 2009-06-16T21:22:03Z 2009-06-16T21:22:03Z <p>AwStats is a server-side that processes based on your server logs. </p> http://stackoverflow.com/questions/996617/reporting-services-rdlc-table-page-breaks-within-a-cell-with-a-subreport 0 Reporting Services RDLC Table Page Breaks within a Cell with a SubReport Mike Wills 2009-06-15T15:02:59Z 2009-06-16T14:16:29Z <p>I am having a paging issue with my RLDC report that has a SubReport. The report has a table that prints the header data, then has a SubReport that I placed in a detail cell row within the table to print several detail lines that relate to the header data.</p> <p>This works as I want. However, the SubReport can span more than one page and this can lead to my problem. When the page is 2/3 full (or even less than 1/4 full) and the SubReport has enough items in it to cause it to go to a second page, the SubReport will then print on the next page. I would rather have it fill out the rest of the page before wrapping to new page.</p> <p>I have searched all of the options to see if I could figure this out. Is there a setting I am missing somewhere?</p> http://stackoverflow.com/questions/977791/confusion-on-rldc-subreports 1 Confusion on RLDC Subreports Mike Wills 2009-06-10T19:50:24Z 2009-06-15T16:15:09Z <p>Is there a "for Dummies" guide to subreports? I am having a hell of a time trying to figure out how to get this working. All of the guides I have found seem to summarize how to set it up, but I can never get it quite working properly.</p> <p>What I want to do is print a master record and all included child records. I have a view setup for both, but I can't figure out how to get this all setup to work together.</p> http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error 1 SQL Reporting Service Report Image Error Mike Wills 2009-06-09T15:14:16Z 2009-06-15T16:14:19Z <p>For a quick temporary solution I made an image of a form that the users wanted to have programatically filled out. I then embedded that image in a report and filled the page with the image. I then put the fields on top of the image to fill out the areas in the form that needs filling. I realize this may not be the best solution, but it worked and we needed to get something working in just a couple days and as long as the user exports it to PDF, it works fine.</p> <p>Normally there are only a few pages, but today they have almost 40 pages. The problem is that after about page 35, the image becomes a small red X (like when an image is missing on a web page) but it will still print the text that goes on top of the image. </p> <p>To add to my confusion, after a couple tweaks of how it page breaks, the report will run fine on my PC but not on the server. This report is using the Visual Studio reports and are stored on the intranet server not the SQL Server.</p> <p>The image is about 250k and is a PNG.</p> <p>I hope I have explained this clearly. Any ideas?</p> http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports 1 Replace DataSource for Reporting Services RDLC Reports Mike Wills 2009-06-11T18:59:21Z 2009-06-15T16:13:31Z <p>I am making some changes and need to change the DataSource for my report. How can I do that without losing all of the work I have done? Assume the field names are the same.</p> <p>Update: The reports are still in Visual Studio and I need to change from a TableAdapter to a DataTable which I will fill through a class.</p> <p>Update 2: Currently it is using fields in CustomerService_report_vw_ServiceRequest, I want to change that to CustomerService_ServiceRequest. I am seeing this in the expression editor. So when I select the Fields option in the Expression Editor, I want to see the fields in CustomerService_ServiceRequest. </p> <p>Does that make more sense?</p> <p>Update 3: So if you add a field from the other DataTable, you can switch your DataSetName to the new one. Now, how do I remove the old one?</p> http://stackoverflow.com/questions/988930/rss-enclosure-is-ignored/988978#988978 1 Answer by Mike Wills for RSS Enclosure is ignored Mike Wills 2009-06-12T20:50:42Z 2009-06-12T20:50:42Z <p>Two things:</p> <ol> <li>The enclosure should not be stored on your hard drive. This should be a world accessible URL. (This assumes that you are publishing this on the web.)</li> <li>Run the feed through a <a href="http://beta.feedvalidator.org/" rel="nofollow">feed validator</a> to look for errors.</li> </ol> http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports/987617#987617 0 Answer by Mike Wills for Replace DataSource for Reporting Services RDLC Reports Mike Wills 2009-06-12T16:23:10Z 2009-06-12T16:23:10Z <p>I manually edited the *rldc file in a text editor and edited the XML therein to removed the DataSet.</p> http://stackoverflow.com/questions/958190/filling-a-form-with-c 1 Filling a form with C# Mike Wills 2009-06-05T21:13:56Z 2009-06-05T21:42:18Z <p>I am researching filling out a form programatically. I have seen <a href="http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document">this question</a> which is pretty similar to what we want to do. But I have a few other questions.</p> <ol> <li>Is there any examples of this online to get me started?</li> <li>We have some areas where we have circle this option or X that option. How would that be handled?</li> </ol> <p>The form itself is in PDF and Word formats.</p> http://stackoverflow.com/questions/1711096/processing-xml-from-a-table-with-one-line-in-one-record-each/1711126#1711126 Comment by Mike Wills on Processing XML from a Table (with one line in one record each) Mike Wills 2009-11-10T20:59:06Z 2009-11-10T20:59:06Z My first time working with LINQ. I missed that and it didn't turn up in my web searches. Thanks! http://stackoverflow.com/questions/1473542/getting-your-customers-bills-in-to-bill-pay-sites/1473574#1473574 Comment by Mike Wills on Getting Your Customer's Bills in to Bill Pay Sites Mike Wills 2009-10-22T19:06:51Z 2009-10-22T19:06:51Z I should also mention that there is nothing preventing a person from adding their bill to the bill pay system. Which currently sends us a check. This, however, causes extra work for the bill processors. We are looking for ways to save them time (thus save us money). We are contacting the bank on this. I'll update once I know what exactly needs to be done for future people to look at. http://stackoverflow.com/questions/1596488/how-can-i-get-the-ebcdic-value-of-a-character-in-rpgle Comment by Mike Wills on How can I get the EBCDIC value of a character in RPGLE? Mike Wills 2009-10-20T20:29:20Z 2009-10-20T20:29:20Z Is this hash going to be used for encryption? There are encryption functions in RPG that would do that for you. I have used the encryption functions. If this is the case, I can post my test app here for you to look at. http://stackoverflow.com/questions/1595949/how-can-i-get-the-ebcdic-value-of-a-character-in-rpgle Comment by Mike Wills on How can I get the "EBCDIC value" of a character in RPGLE? Mike Wills 2009-10-20T18:03:13Z 2009-10-20T18:03:13Z What are you trying to do? You question is kind of confusing. http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card/1479375#1479375 Comment by Mike Wills on How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:34:10Z 2009-09-25T20:34:10Z I don't know the cost of Debit vs. Credit for processing, but I have heard in the past that debit transactions are cheaper for the vendor thus the push to debit. http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card/1479408#1479408 Comment by Mike Wills on How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:24:39Z 2009-09-25T20:24:39Z The magnetic strip makes sense. http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card/1479375#1479375 Comment by Mike Wills on How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:20:04Z 2009-09-25T20:20:04Z See my comment for chaos's answer. http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card/1479373#1479373 Comment by Mike Wills on How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:19:22Z 2009-09-25T20:19:22Z So how does that work when I am at Home Depot? When I swipe my credit card, it just processes it. If it is a check card, it asks. http://stackoverflow.com/questions/1473542/getting-your-customers-bills-in-to-bill-pay-sites/1473574#1473574 Comment by Mike Wills on Getting Your Customer's Bills in to Bill Pay Sites Mike Wills 2009-09-24T19:11:04Z 2009-09-24T19:11:04Z We already offer ACH and a way to pay with a credit card through our website. http://stackoverflow.com/questions/1241392/is-there-such-a-thing-as-imap-for-podcasts Comment by Mike Wills on Is there such a thing as IMAP for podcasts? Mike Wills 2009-08-07T13:19:17Z 2009-08-07T13:19:17Z I am with you on this. When you have the addiction, you need to satisfy the craving. The problem with iPods is that iTunes takes over and you are at the mercy of that master list. To my knowledge there is no solution like this currently. I would love to have one though. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/474133#474133 Comment by Mike Wills on Worst UI You've Ever Used Mike Wills 2009-07-31T17:56:14Z 2009-07-31T17:56:14Z I don't see what the problem is with iTunes in Windows. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343740#343740 Comment by Mike Wills on Worst UI You've Ever Used Mike Wills 2009-07-31T17:54:15Z 2009-07-31T17:54:15Z I think this should be #1 voted http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Mike Wills on DataTable.DefaultView.Sort Doesn't Sort Mike Wills 2009-07-30T19:46:44Z 2009-07-30T19:46:44Z Basically the same casting error. Unable to cast object of type 'System.Data.DataRow' to type 'ActionLogStartEndRow'. http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Mike Wills on DataTable.DefaultView.Sort Doesn't Sort Mike Wills 2009-07-30T19:33:23Z 2009-07-30T19:33:23Z @Jeromy - I am sure it does. I am using the .XSD data layer to accomplish all of this. http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Mike Wills on DataTable.DefaultView.Sort Doesn't Sort Mike Wills 2009-07-30T19:30:01Z 2009-07-30T19:30:01Z Doing that gives me an &quot;Unable to cast object of type 'System.Data.DataRowView' to type 'ActionLogStartEndRow'.&quot; error.