User Lance Roberts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:56:30Z http://stackoverflow.com/feeds/user/13295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766582#1766582 2 Answer by Lance Roberts for Any cheap or free IDE's out there for VB6 programming? Lance Roberts 2009-11-19T21:10:34Z 2009-11-19T21:23:11Z <p>I don't know of a complete IDE, but <a href="http://www.mztools.com/v3/mztools3.aspx" rel="nofollow">MZ-Tools makes a great IDE addin</a> for VBA/VB6 (and it's free).</p> http://stackoverflow.com/questions/1752384/sql-server-2000-installation/1752409#1752409 0 Answer by Lance Roberts for SQL Server 2000 Installation Lance Roberts 2009-11-17T22:44:09Z 2009-11-17T22:44:09Z <p>You need to own a copy of SQL Server 2000, it isn't out there for free.</p> http://stackoverflow.com/questions/1725768/excel-macro-to-select-multiple-row/1725841#1725841 0 Answer by Lance Roberts for excel macro to select multiple row Lance Roberts 2009-11-12T22:24:58Z 2009-11-12T22:24:58Z <p>You just need to Union the Rows you need.</p> <p>Like this:</p> <pre><code>Set workingRange = Application.Union(workingRange, newRange) </code></pre> <p>Of course, that means using range objects and not row numbers.</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712210#1712210 19 Answer by Lance Roberts for What's your take on the programming language Go? Lance Roberts 2009-11-11T00:27:43Z 2009-11-11T02:23:56Z <p>Links:</p> <p><a href="http://arstechnica.com/open-source/news/2009/11/go-new-open-source-programming-language-from-google.ars" rel="nofollow">Ars-Technica</a></p> <p><a href="http://www.pcworld.com/businesscenter/article/181886/google%5Fcreates%5Fprogramming%5Flanguage%5Fto%5Fsimplify%5Fapp%5Fdev.html" rel="nofollow">PC World</a></p> <p><a href="http://google-opensource.blogspot.com/2009/11/hey-ho-lets-go.html" rel="nofollow">Google Open Source Blog</a></p> <p><a href="http://www.youtube.com/watch?v=rKnDgT73v8s" rel="nofollow">Tech Talk Video</a></p> http://stackoverflow.com/questions/167643/how-to-insert-an-array-of-values-in-sql-server-2005 2 How to INSERT an array of values in SQL Server 2005? Lance Roberts 2008-10-03T16:12:30Z 2009-11-05T17:48:45Z <p>How do I write the SQL code to INSERT (or UPDATE) an array of values (with probably an attendant array of fieldnames, or with a matrix with them both) without simple iteration?</p> http://stackoverflow.com/questions/1634584/is-there-a-way-to-use-a-wildcard-in-a-where-statment-for-mysql/1634620#1634620 0 Answer by Lance Roberts for Is there a way to use a wildcard in a "where" statment for MySQL? Lance Roberts 2009-10-28T01:00:54Z 2009-10-28T01:00:54Z <p>You'd have to be using dynamic SQL, like</p> <blockquote> <p>"SELECT * FROM my_table WHERE id " &amp; qualifier</p> </blockquote> <p>Then set qualifier to "= '3'" or to "1".</p> http://stackoverflow.com/questions/1633576/how-to-know-where-as-keyword-should-be-used/1633632#1633632 0 Answer by Lance Roberts for How to know where AS keyword should be used ? Lance Roberts 2009-10-27T20:57:39Z 2009-10-27T21:07:54Z <p>When you use the CREATE TABLE or VIEW statement, the AS keyword pulls in the records from the statement following, to fill the Table or View with initially.</p> <p>So your example View will start as an exact copy of the People table.</p> <p>This allows you choose the fields that you want to load into your Table or View.</p> http://stackoverflow.com/questions/1597301/how-can-i-get-the-current-users-sid-in-vb6/1597349#1597349 0 Answer by Lance Roberts for How can I get the current user's SID in VB6? Lance Roberts 2009-10-20T21:13:46Z 2009-10-20T21:13:46Z <p>Try to implement this function:</p> <pre><code>Declare Function LookupAccountSid Lib "advapi32.dll" _ Alias "LookupAccountSidA" (ByVal lpSystemName As String, _ ByVal Sid As Long, ByVal Name As String, cbName As Long, _ ByVal ReferencedDomainName As String, _ cbReferencedDomainName As Long, peUse As Integer) As Long </code></pre> <p>Here's a <a href="http://www.devx.com/tips/Tip/26387" rel="nofollow">link</a> to it implemented.</p> http://stackoverflow.com/questions/1583600/spreadsheet-count-repeated-values-in-a-column/1583607#1583607 1 Answer by Lance Roberts for Spreadsheet: Count Repeated Values In A Column Lance Roberts 2009-10-18T00:37:03Z 2009-10-18T00:37:03Z <p>On a new sheet, list the unique years in one column, then their quantity count in the column next to them. Select the entire range created, then create a chart.</p> <p>I'm unsure from your question what you would specifically need more than this (and I work in Excel 2003).</p> http://stackoverflow.com/questions/1573740/can-this-be-done-using-excel-macos/1574645#1574645 0 Answer by Lance Roberts for Can this be done using excel macos? Lance Roberts 2009-10-15T19:50:35Z 2009-10-16T19:01:36Z <p>You can use the Application.WorksheetFunction.Transpose() function to flip the values.</p> <p>Example: For an entire row,</p> <pre><code>Application.WorksheetFunction.Transpose("A1":"A1".End(xlToLeft)) </code></pre> http://stackoverflow.com/questions/1563730/designingtips-com/1563735#1563735 1 Answer by Lance Roberts for DesigningTips.com Lance Roberts 2009-10-14T00:47:01Z 2009-10-14T00:47:01Z <p>I think you should design a website to create designs on how to take over the world.</p> http://stackoverflow.com/questions/1556910/how-to-fall-through-a-select-case-in-excel-vba/1556983#1556983 0 Answer by Lance Roberts for How to fall through a Select Case in Excel VBA? Lance Roberts 2009-10-12T21:13:41Z 2009-10-12T21:13:41Z <p>You'll just have to do it the long way.</p> <pre><code>Select Case cmd case "ONE": MsgBox "one" MsgBox "two" MsgBox "three" case "TWO": MsgBox "two" MsgBox "three" case "THREE": MsgBox "three" End select </code></pre> http://stackoverflow.com/questions/1527695/obel-resources-and-documentation 0 OBEL resources and documentation? Lance Roberts 2009-10-06T19:46:17Z 2009-10-06T19:46:17Z <p>I'm diving into some OBEL coding and only have one manual from the vendor. I was hoping to find more documentation, or websites out there with more information.</p> <p>OBEL is short for Object Embedded Language, and is a scripting language modeled off of Smalltalk. My information seems to show that it was created by Metso Automation in the 90's.</p> <p>Any info would be appreciated.</p> http://stackoverflow.com/questions/1500784/how-many-programming-books-do-you-read-each-year/1500809#1500809 -1 Answer by Lance Roberts for How many Programming Books do you read each year? Lance Roberts 2009-09-30T21:41:24Z 2009-09-30T21:41:24Z <p>I read all I can read.</p> http://stackoverflow.com/questions/1495384/personal-matters/1495398#1495398 -3 Answer by Lance Roberts for Personal matters Lance Roberts 2009-09-29T23:07:14Z 2009-09-29T23:07:14Z <p>Caffeine.......</p> http://stackoverflow.com/questions/804646/how-do-you-strip-quotes-out-of-an-echoed-string-in-a-windows-batch-file 0 How do you strip quotes out of an ECHO'ed string in a Windows batch file? Lance Roberts 2009-04-29T22:56:41Z 2009-09-29T15:44:32Z <p>I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file I'm writing it to. How to you ECHO a string like that and strip the quotes off?</p> <p><strong>UPDATE:</strong></p> <p>I've spent the last two days working on this and finally was able to kludge something together. Richard's answer worked to strip the quotes, but even when I put the ECHO in the subroutine and directly outputed the string, Windows still got hung up on the chars in the string. I'll accept Richard's answer since it answers the question asked.</p> <p>I ended up using Greg's sed solution, but had to modify it because of sed/windows bugs/features (it didn't help that it came with no documentation). There are a few caveats to using sed in Windows: you have to use double quotes instead of single quotes, you can't escape the double quotes in the string directly, you have to endquote the string, escape using the ^ (so ^") then beqin quote for the next section. Also, someone pointed out that if you pipe input to sed, there's a bug with a pipe being in the string (I didn't get to verify this since in my final solution, I just found a way not to have all quotes in the middle of the string, and just removed all quotes, <strong>I never could get the endquote to be removed by itself.</strong>) Thanks for all the help.</p> http://stackoverflow.com/questions/1473393/what-makes-a-language-readable-or-not-readable/1473568#1473568 -1 Answer by Lance Roberts for What makes a language readable or not readable? Lance Roberts 2009-09-24T19:01:21Z 2009-09-24T19:01:21Z <p>The literacy level of the reader.</p> http://stackoverflow.com/questions/1466846/comparing-database-platforms/1466874#1466874 0 Answer by Lance Roberts for Comparing Database Platforms Lance Roberts 2009-09-23T15:49:07Z 2009-09-23T15:49:07Z <p>I don't think you need to test the simple CRUD stuff, it's hard to imagine a vendor that doesn't support the basics.</p> http://stackoverflow.com/questions/1461307/sql-string-replacement-workaround 0 SQL string replacement workaround Lance Roberts 2009-09-22T17:03:05Z 2009-09-22T19:20:48Z <p>I'm working in a modified version of Sybase 10 that doesn't have the stuff, replace or str_replace functions. I need to replace part of string in a number of records.</p> <p>Are there any creative ways to program around this, so I don't have to do them all manually?</p> <p>Example:</p> <pre><code>UPDATE status SET description = replace(description,'abc','def') WHERE name = 'test' </code></pre> <p><strong>EDIT:</strong> I've found that we have NO string-manipulation functions and I'll have to do exports and imports to do bulk string changes. I'll leave this question up so others who aren't quite restricted as I am will be able to find the answers.</p> http://stackoverflow.com/questions/1445017/problem-with-dates-using-carlosag-excelxmlwriter/1450527#1450527 1 Answer by Lance Roberts for Problem with dates using CarlosAg.ExcelXmlWriter Lance Roberts 2009-09-20T07:33:20Z 2009-09-22T06:14:28Z <p>I haven't used his library, but work in Excel a lot. I don't know what he's doing with a datatype for a cell, since they don't work that way. Dates in Excel cells are all integers with Date Formatting.</p> <p>I would try to put the date in as an integer, the trick is converting your string to the correct integer. See <a href="http://www.cpearson.com/excel/datetime.htm" rel="nofollow">this link</a> for information on Excel's Date as Numbers methodology. I would then set the WorksheetStyle.NumberFormat Property.</p> http://stackoverflow.com/questions/1450322/matlab-excluding-data-outside-1-standard-deviation/1450342#1450342 0 Answer by Lance Roberts for MATLAB excluding data outside 1 standard deviation Lance Roberts 2009-09-20T05:10:23Z 2009-09-20T05:10:23Z <p>Taking A as your original vector, and B as the final one:</p> <pre><code>B = sort(A) B = B(find(B &gt; mean-std,1,'first'):find(B &lt; mean+std,1,'last')) </code></pre> http://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha/179910#179910 9 Answer by Lance Roberts for What is MATLAB good for? Why is it so used by universities? When is it better than Python? Lance Roberts 2008-10-07T19:13:08Z 2009-09-19T16:59:15Z <p>MATLAB is great for doing array manipulation, doing specialized math functions, and for creating nice plots quick.</p> <p>I'd probably only use it for large programs if I could use a lot of array/matrix manipulation.</p> <p>You don't have to worry about the IDE as much as in more formal packages, so it's easier for students without a lot of programming experience to pick up.</p> http://stackoverflow.com/questions/1435659/jagged-oval-edge-issue/1435683#1435683 0 Answer by Lance Roberts for Jagged Oval Edge issue Lance Roberts 2009-09-16T21:49:01Z 2009-09-16T21:49:01Z <p>You should check on <a href="http://doctype.com/" rel="nofollow">Doctype.com</a></p> http://stackoverflow.com/questions/1435603/regular-expression-in-vba-excel-looking-for-groups-out-of-a-string/1435626#1435626 2 Answer by Lance Roberts for regular expression in vba excel looking for groups out of a string Lance Roberts 2009-09-16T21:36:25Z 2009-09-16T21:36:25Z <p>In VBA:</p> <pre><code>Split(inputstring) </code></pre> <p>You can also set a different delimiter, but it uses space by default.</p> <p>This <a href="http://stackoverflow.com/questions/1112806/vba-string-tokens">dupe</a> has a little more info.</p> http://stackoverflow.com/questions/1433971/select-from-table-or-select-id-field1-field2-field3-from-table-best-practic/1433985#1433985 1 Answer by Lance Roberts for Select * from table OR select id,field1, field2, field3 from table - best practice? Lance Roberts 2009-09-16T16:15:13Z 2009-09-16T16:24:47Z <p>You should specify the columns in most cases, this works best for future changes and maintenance. It also pulls less data, enhancing performance.</p> http://stackoverflow.com/questions/1430856/hotel-management-php-date-restrictive-query/1430908#1430908 1 Answer by Lance Roberts for Hotel Management PHP Date Restrictive Query Lance Roberts 2009-09-16T04:15:30Z 2009-09-16T04:15:30Z <p>When choosing rooms the new customer can place his reservation on, you just SELECT all the rooms that aren't booked in that time frame.</p> <p>something like:</p> <p>SELECT rooms FROM table1 WHERE (begindate > checkoutdate) OR (enddate &lt; checkindate)</p> http://stackoverflow.com/questions/1420045/how-to-find-distance-from-the-latitude-and-longitude-of-two-locations/1420055#1420055 1 Answer by Lance Roberts for How to find distance from the latitude and longitude of two locations? Lance Roberts 2009-09-14T06:59:02Z 2009-09-14T06:59:02Z <p><a href="http://jan.ucc.nau.edu/~cvm/latlongdist.html" rel="nofollow">This link</a> has all the info you need, either on it or linked.</p> http://stackoverflow.com/questions/1420027/looping-rows-in-sql-server/1420033#1420033 1 Answer by Lance Roberts for Looping Rows in SQL Server Lance Roberts 2009-09-14T06:52:27Z 2009-09-14T06:52:27Z <p>SELECT CodeDesc FROM Table1</p> <p>Then print all the returned Data.</p> <p>(Of course you don't use T-SQL to do the printing)</p> http://stackoverflow.com/questions/1034758/what-are-the-best-web-design-sites/1400932#1400932 4 Answer by Lance Roberts for What are the best web design sites? Lance Roberts 2009-09-09T17:18:37Z 2009-09-09T17:18:37Z <p>The SO equivalent for Web Design is <a href="http://doctype.com/" rel="nofollow">Doctype</a>.</p> http://stackoverflow.com/questions/1392124/am-i-too-old-to-became-software-developer/1392140#1392140 4 Answer by Lance Roberts for Am I too old to became software developer? Lance Roberts 2009-09-08T05:26:58Z 2009-09-08T05:26:58Z <p>No, age isn't really a determinant. If you apply yourself, you'll do just fine.</p> http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766585#1766585 Comment by Lance Roberts on Any cheap or free IDE's out there for VB6 programming? Lance Roberts 2009-11-19T21:23:54Z 2009-11-19T21:23:54Z edited my answer to say just that. http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766585#1766585 Comment by Lance Roberts on Any cheap or free IDE's out there for VB6 programming? Lance Roberts 2009-11-19T21:22:40Z 2009-11-19T21:22:40Z MZ-Tools also has a free VBA/VB6 addin (if that's what you were referring to). http://stackoverflow.com/questions/1759922/can-i-get-a-job-here Comment by Lance Roberts on Can I get a job here? Lance Roberts 2009-11-18T23:46:30Z 2009-11-18T23:46:30Z No. They're all taken. http://stackoverflow.com/questions/1752384/sql-server-2000-installation Comment by Lance Roberts on SQL Server 2000 Installation Lance Roberts 2009-11-17T22:43:02Z 2009-11-17T22:43:02Z This is a question for ServerFault. http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language/340307#340307 Comment by Lance Roberts on What is your favorite esoteric programming language? Lance Roberts 2009-11-17T18:26:19Z 2009-11-17T18:26:19Z See meta.stackoverflow.com/questions/24079/ for why we munge obscenites on StackOverflow. Also see Bill the Lizards comment on earlier answers. http://stackoverflow.com/questions/1743604/why-am-i-getting-too-much-headaches-when-i-program Comment by Lance Roberts on Why am I getting too much headaches when i program? Lance Roberts 2009-11-16T17:28:51Z 2009-11-16T17:28:51Z Programming is hard, lets go shopping. http://stackoverflow.com/questions/1726677/is-perl-officially-dead Comment by Lance Roberts on Is Perl officially dead? Lance Roberts 2009-11-13T17:31:54Z 2009-11-13T17:31:54Z There's definitely no reason for the downvotes, it's a legitimate question, they should have just upvoted the NO answer. http://stackoverflow.com/questions/1725768/excel-macro-to-select-multiple-row Comment by Lance Roberts on excel macro to select multiple row Lance Roberts 2009-11-12T22:23:58Z 2009-11-12T22:23:58Z What is it doing wrong? what is the error message or problem? http://stackoverflow.com/questions/1724541/stack-using-char Comment by Lance Roberts on stack using char Lance Roberts 2009-11-12T19:06:56Z 2009-11-12T19:06:56Z You need to have more detail than this, but less than your last question. sorry I'm not a C++ guy or I'd whip you an answer out. http://stackoverflow.com/questions/1724276/c-stack-using-char Comment by Lance Roberts on c++ stack using char Lance Roberts 2009-11-12T18:22:41Z 2009-11-12T18:22:41Z ahh, then we need a close reason for 'inadequate punctuation'. http://stackoverflow.com/questions/1724276/c-stack-using-char Comment by Lance Roberts on c++ stack using char Lance Roberts 2009-11-12T18:21:32Z 2009-11-12T18:21:32Z He asked a question, maxpower47 clarified that was the question, why in the world did people close this as not a real question? http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712210#1712210 Comment by Lance Roberts on What's your take on the programming language Go? Lance Roberts 2009-11-11T02:24:04Z 2009-11-11T02:24:04Z Got it, thanks. http://stackoverflow.com/questions/167643/how-to-insert-an-array-of-values-in-sql-server-2005/1682344#1682344 Comment by Lance Roberts on How to INSERT an array of values in SQL Server 2005? Lance Roberts 2009-11-05T18:11:49Z 2009-11-05T18:11:49Z I flagged the moderator to delete your answer. http://stackoverflow.com/questions/1633576/how-to-know-where-as-keyword-should-be-used/1633633#1633633 Comment by Lance Roberts on How to know where AS keyword should be used ? Lance Roberts 2009-10-27T21:07:21Z 2009-10-27T21:07:21Z BOL is one of the hardest places to get good info from. http://stackoverflow.com/questions/1573740/can-this-be-done-using-excel-macos/1574645#1574645 Comment by Lance Roberts on Can this be done using excel macos? Lance Roberts 2009-10-16T19:03:35Z 2009-10-16T19:03:35Z I edited in a quick example based on one row, your parameter is just the range you want to transpose, and of course you want to assign it to an range of the correct reverse dimensions. you can use xldown for the column, there are many ways to grab ranges in excel.