User mike wills - Stack Overflow most recent 30 from stackoverflow.com 2009-07-04T07:20:33Z http://stackoverflow.com/feeds/user/2535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/381891/what-resources-would-you-recommend-for-rpg36-code-conversion What resources would you recommend for RPG36 code conversion? Mike Wills 2008-12-19T19:08:39Z 2009-06-29T22:19:32Z <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> 2 http://stackoverflow.com/questions/1038532/subversion-for-iseries/1047274#1047274 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/32260/sending-email-in-c-net-through-gmail Sending Email in C#.NET Through Gmail Mike Wills 2008-08-28T13:28:38Z 2009-06-21T10:27:25Z <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> 6 http://stackoverflow.com/questions/1003995/whats-a-good-web-based-analytics-package-thatll-work-without-requiring-javascip/1004009#1004009 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 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> 1 http://stackoverflow.com/questions/977791/confusion-on-rldc-subreports 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> 2 http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error 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> 2 http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports 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> 2 http://stackoverflow.com/questions/988930/rss-enclosure-is-ignored/988978#988978 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 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 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" rel="nofollow">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> 3 http://stackoverflow.com/questions/835381/how-is-the-best-option-for-ibm-iseries-legacy-code-consuming-web-services/840006#840006 Answer by Mike Wills for how is the best option for ibm iseries legacy code consuming web services Mike Wills 2009-05-08T14:20:16Z 2009-05-08T14:20:16Z <p>Both are really good options. It really depends on your expertise in your team. If all you know is RPG, use the RPG solution. If you have someone with .NET or Java experience, then use that.</p> <p>If you have more questions related to this, there is a great community of developers that can help on the <a href="http://lists.midrange.com/listinfo/web400" rel="nofollow">Web400 mailing list</a>. </p> http://stackoverflow.com/questions/805007/string-replace-method-in-rpg-iv/807841#807841 Answer by Mike Wills for String replace method in RPG IV Mike Wills 2009-04-30T16:32:28Z 2009-04-30T16:32:28Z <p>Take a look at the following articles:</p> <ul> <li><a href="http://www.itjungle.com/fhg/fhg030409-story01.html" rel="nofollow">http://www.itjungle.com/fhg/fhg030409-story01.html</a></li> <li><a href="http://www.itjungle.com/fhg/fhg022509-story01.html" rel="nofollow">http://www.itjungle.com/fhg/fhg022509-story01.html</a></li> </ul> <p>These should help.</p> http://stackoverflow.com/questions/807238/credit-card-3-digit-code-what-is-the-official-name-for-it Credit Card 3 digit code - What is the official name for it? Mike Wills 2009-04-30T14:36:54Z 2009-04-30T15:20:08Z <p>I am working on a payment form and that 3-digit code on the back of the card, what is that called? I can't find a consistent reference as to what to call it.</p> 4 http://stackoverflow.com/questions/796817/how-to-call-spring-web-service-from-rpg/800608#800608 Answer by Mike Wills for How to call Spring web service from RPG ? Mike Wills 2009-04-29T02:13:22Z 2009-04-29T02:13:22Z <p>It may be best to ask this on the <a href="http://lists.midrange.com/listinfo/rpg400-l" rel="nofollow">RPG400-L</a> list. There are many XML experts in there.</p> <p>RPG can do XML on V5R4 and above. There are other tools like the <a href="http://www.rpg-xml.com/" rel="nofollow">RPG-XML</a> that could help as well.</p> http://stackoverflow.com/questions/770384/how-to-use-c-with-air/778405#778405 Answer by Mike Wills for How to use C# with AIR? Mike Wills 2009-04-22T17:48:38Z 2009-04-22T17:48:38Z <p>The only way I know of doing this is with C# web service programs and the AIR/Flex apps communicate with the web services.</p> http://stackoverflow.com/questions/752349/has-anyone-here-tried-using-the-iseries-python-port/753731#753731 Answer by Mike Wills for Has anyone here tried using the iSeries Python port? Mike Wills 2009-04-15T21:08:52Z 2009-04-15T21:08:52Z <p>Another place to look is on the mailing list <a href="http://lists.midrange.com/listinfo/midrange-l" rel="nofollow">MIDRANGE-L</a> or search the archives for the list at <a href="http://archive.midrange.com/midrange-l/index.htm" rel="nofollow">midrange.com</a>. I know they have talked about this a while back.</p> http://stackoverflow.com/questions/735546/marking-a-record-as-read-and-opening-up-a-new-page-to-display-the-data Marking a Record as Read AND Opening Up a New Page to Display the Data Mike Wills 2009-04-09T19:16:33Z 2009-04-09T19:18:54Z <p>I have a DataGrid that I use to display an "inbox" of information. I would like the have the person click on a link which would mark the record as read and have the information display in a new window. I am relatively new to C#. What would be a good approach to accomplishing this?</p> 1 http://stackoverflow.com/questions/732204/wordpress-audio-plugin-display-mp3-link-if-browser-dosent-support-flash/732643#732643 Answer by Mike Wills for WordPress audio plugin: Display mp3 link if browser dosen't support Flash Mike Wills 2009-04-09T03:08:40Z 2009-04-09T03:08:40Z <p>Check out PodPress or PowerPress. They are the main Podcast plugins for WordPress. </p> http://stackoverflow.com/questions/710723/how-can-you-use-parameterized-statements-with-db2-text-search/710935#710935 Answer by Mike Wills for How can you use parameterized statements with DB2 Text Search? Mike Wills 2009-04-02T18:12:27Z 2009-04-03T13:48:16Z <p><strike>Instead of @field you need to use "?". Everything is basically the same.</strike></p> <p>Okay, here is a live code sample.</p> <pre><code> sqlStmt = "SELECT COMPLAINT_NUMBER, VIOLATION_NUMBER, COMMON_ADDRESS_KEY, " + "DEPT_CODE, DEPT_CODE_DESC, DIVISION_CODE, DIVISION_CODE_DESC, " + "EMPLOYEE_NAME, COMPLAINT_CODE, COMPLAINT_CODE_DESC, COMPLAINT_DATE, " + "COMMON_ADDRESS_OWNER, RESOLUTION_CODE, 1 AS SORTORDER " + "FROM QMFILES/NVMASTP " + "WHERE VCLOSEDATE = 0 AND " + "DEPT_CODE LIKE @DEPT_CODE1 AND " + "DIVISION_CODE LIKE @DIVISION_CODE1 AND " + "COMPLAINT_DATE BETWEEN @FROM_COMPLAINT_DATE1 AND @TO_COMPLAINT_DATE1 " + statusQry + "UNION " + "SELECT COMPLAINT_NUMBER, VIOLATION_NUMBER, COMMON_ADDRESS_KEY, " + "DEPT_CODE, DEPT_CODE_DESC, DIVISION_CODE, DIVISION_CODE_DESC, " + "EMPLOYEE_NAME, COMPLAINT_CODE, COMPLAINT_CODE_DESC, COMPLAINT_DATE, " + "COMMON_ADDRESS_OWNER, RESOLUTION_CODE, 2 AS SORTORDER " + "FROM QMFILES/NVMASTP " + "WHERE VCLOSEDATE &lt;&gt; 0 AND " + "DEPT_CODE LIKE @DEPT_CODE2 AND " + "DIVISION_CODE LIKE @DIVISION_CODE2 AND " + "COMPLAINT_DATE BETWEEN @FROM_COMPLAINT_DATE2 AND @TO_COMPLAINT_DATE2 " + statusQry + "ORDER BY DEPT_CODE, DIVISION_CODE, COMPLAINT_CODE, SORTORDER"; iDB2Command cmd = new iDB2Command(sqlStmt, conn); conn.Open(); cmd.DeriveParameters(); conn.Close(); cmd.Parameters["@DEPT_CODE1"].Value = dept; cmd.Parameters["@DIVISION_CODE1"].Value = serviceArea; cmd.Parameters["@DEPT_CODE2"].Value = dept; cmd.Parameters["@DIVISION_CODE2"].Value = serviceArea; cmd.Parameters["@FROM_COMPLAINT_DATE1"].Value = Convert.ToDecimal(fromDateString); cmd.Parameters["@TO_COMPLAINT_DATE1"].Value = Convert.ToDecimal(toDateString); cmd.Parameters["@FROM_COMPLAINT_DATE2"].Value = Convert.ToDecimal(fromDateString); cmd.Parameters["@TO_COMPLAINT_DATE2"].Value = Convert.ToDecimal(toDateString); </code></pre> <p>I hope this helps you out more.</p> http://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output/710451#710451 Answer by Mike Wills for iSeries stored procedure - how to get handle on the spool file output? Mike Wills 2009-04-02T16:17:30Z 2009-04-02T16:17:30Z <p>I need a bit more information, but I'll make some assumptions. Please clarify if I assumed wrong.</p> <p>The QUSER in QUSRWRK behavior is correct. You are now running through the SQL server (or similar server). All connections run under these settings.</p> <p>There are a couple approaches. </p> <p>1) Assuming that this all runs in one job. Using '*" for the job information should work.</p> <p>2) The other option is to use RTVJOBA CURUSER(&amp;ME). The current user is the person that is logged in. USER would not work in this case.</p> http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive Keeping Visual Studio Projects on a Network Drive Mike Wills 2008-10-01T20:46:17Z 2009-03-23T07:52:42Z <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" rel="nofollow">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> 7 http://stackoverflow.com/questions/30835/source-versioning-for-visual-studio-express Source Versioning for Visual Studio Express Mike Wills 2008-08-27T18:38:54Z 2009-03-22T09:41:59Z <p>Is there any Visual Studio Express plug ins for source versioning? I am starting a project on my own and only have the Express version of Visual Studio 2008.</p> 4 http://stackoverflow.com/questions/40219/what-is-the-policy-here-on-homework What is the policy here on homework? Mike Wills 2008-09-02T18:32:22Z 2009-03-20T14:50:26Z <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> 12 http://stackoverflow.com/questions/628078/add-pdf-to-afp-output/629028#629028 Answer by Mike Wills for Add PDF to AFP Output Mike Wills 2009-03-10T05:32:25Z 2009-03-10T05:32:25Z <p>A better place to ask this question might be on <a href="http://lists.midrange.com/listinfo/midrange-l" rel="nofollow">Midrange.com</a>. There are many people that I am sure can help you with that.</p> http://stackoverflow.com/questions/617917/is-there-a-way-to-stop-wysisyg-editor-in-wordpress-from-trimming-out-certain-tags/619063#619063 Answer by Mike Wills for Is there a way to stop WYSISYG editor in wordpress from trimming out certain tags? Mike Wills 2009-03-06T14:36:47Z 2009-03-06T14:36:47Z <p>One thing to look at is in the Writing settings, uncheck "WordPress should correct invalidly nested XHTML automatically" It may not fix it all, but it does take care of some of them.</p> http://stackoverflow.com/questions/607502/as400-data-connection-in-asp-net/609136#609136 Answer by Mike Wills for AS400 Data Connection in ASP.NET Mike Wills 2009-03-04T03:39:14Z 2009-03-04T03:39:14Z <p>Check the size of your iSeries system as well. Depending on the size of the query and if the system is undersized for the applications running on it, this may take time. While it shouldn't be thrown out as a posibility, I have seen a similar behavior in the past. But of course more likely is a network issue.</p> <p>The other idea if you can solve the speed issue or is a sizing problem is to store it in an MS SQL Server then write the records from SQL Server to the iSeries from there.</p> http://stackoverflow.com/questions/583442/what-things-cant-you-do-in-your-programming-language/583465#583465 Answer by Mike Wills for What things can't you do in your programming language? Mike Wills 2009-02-24T20:34:25Z 2009-02-24T20:34:25Z <p>OOP in RPG. It is all procedural. IBM is introducing some of the concepts, but isn't true OO.</p> http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database/490610#490610 Answer by Mike Wills for What database tool to use on Linux to read an as/400 database? Mike Wills 2009-01-29T05:51:37Z 2009-01-29T05:51:37Z <p>Eclipse and Quantum DB</p> http://stackoverflow.com/questions/243873/wordpress-plugin-development WordPress Plugin Development Mike Wills 2008-10-28T16:08:14Z 2009-01-24T23:05:42Z <p>Besides the CODEX what resources do you recommend to help a person new to creating plugins help create a WordPress plugin. I have an idea, but need a bit better explanation than what is in the CODEX to get started.</p> <p>UPDATE: Is there a book that I could buy to help me out with this?</p> 4 http://stackoverflow.com/questions/996617/reporting-services-rdlc-table-page-breaks-within-a-cell-with-a-subreport/1001783#1001783 Comment by Mike Wills Mike Wills 2009-06-16T14:37:04Z 2009-06-16T14:37:04Z Thank you! I must not have been using the right keywords to find this. Now to try something else... http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports/983058#983058 Comment by Mike Wills Mike Wills 2009-06-11T19:22:15Z 2009-06-11T19:22:15Z 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. http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error/975058#975058 Comment by Mike Wills Mike Wills 2009-06-11T13:25:29Z 2009-06-11T13:25:29Z We are running SQL Server 2008. However, these are RLDC reports, so they are running on the web server not the SQL server. http://stackoverflow.com/questions/977791/confusion-on-rldc-subreports/977824#977824 Comment by Mike Wills Mike Wills 2009-06-10T19:59:07Z 2009-06-10T19:59:07Z Oh wow... how many other Got.... sites are there? I know about the two mail sites. http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error/972035#972035 Comment by Mike Wills Mike Wills 2009-06-09T20:01:47Z 2009-06-09T20:01:47Z That didn't seem to work. At least in the Web.config file. http://stackoverflow.com/questions/958190/filling-a-form-with-c/958202#958202 Comment by Mike Wills Mike Wills 2009-06-08T14:18:50Z 2009-06-08T14:18:50Z Sounds like ABCpdf might be the one to look at. Thanks! http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542802#542802 Comment by Mike Wills Mike Wills 2009-06-05T16:45:46Z 2009-06-05T16:45:46Z Thank you! I needed this today! http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document Comment by Mike Wills Mike Wills 2009-06-04T14:21:59Z 2009-06-04T14:21:59Z Does anyone know of any examples or tutorials on how to do this? http://stackoverflow.com/questions/807238/credit-card-3-digit-code-what-is-the-official-name-for-it/807246#807246 Comment by Mike Wills Mike Wills 2009-04-30T14:40:27Z 2009-04-30T14:40:27Z Thank you for the quick response. http://stackoverflow.com/questions/756290/procedure-pointers-in-rpgle-procptr Comment by Mike Wills Mike Wills 2009-04-16T19:18:12Z 2009-04-16T19:18:12Z This question is confusing. Can you please clarify what you are looking for? http://stackoverflow.com/questions/710723/how-can-you-use-parameterized-statements-with-db2-text-search/710935#710935 Comment by Mike Wills Mike Wills 2009-04-13T14:55:31Z 2009-04-13T14:55:31Z I'm sorry, I was focusing on the error not the statement. This doesn't help you at all? http://stackoverflow.com/questions/721108/sub-select-issue Comment by Mike Wills Mike Wills 2009-04-06T14:30:14Z 2009-04-06T14:30:14Z How are the dates defined. Decimal or actual dates? http://stackoverflow.com/questions/710723/how-can-you-use-parameterized-statements-with-db2-text-search/710935#710935 Comment by Mike Wills Mike Wills 2009-04-03T13:48:52Z 2009-04-03T13:48:52Z Sorry, I was wrong. I hope that helps. http://stackoverflow.com/questions/710723/how-can-you-use-parameterized-statements-with-db2-text-search/710935#710935 Comment by Mike Wills Mike Wills 2009-04-03T04:33:18Z 2009-04-03T04:33:18Z I'll post a sample tomorrow of how I did it. http://stackoverflow.com/questions/663650/what-is-javas-future-if-ibm-purchases-sun Comment by Mike Wills Mike Wills 2009-03-19T21:23:03Z 2009-03-19T21:23:03Z Since this "question" is closed... IBM is heavily invested in Java. They won't kill it, that is for sure.