User Lance Roberts - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T03:56:30Zhttp://stackoverflow.com/feeds/user/13295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766582#17665822Answer by Lance Roberts for Any cheap or free IDE's out there for VB6 programming?Lance Roberts2009-11-19T21:10:34Z2009-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#17524090Answer by Lance Roberts for SQL Server 2000 InstallationLance Roberts2009-11-17T22:44:09Z2009-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#17258410Answer by Lance Roberts for excel macro to select multiple row Lance Roberts2009-11-12T22:24:58Z2009-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#171221019Answer by Lance Roberts for What's your take on the programming language Go?Lance Roberts2009-11-11T00:27:43Z2009-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-20052How to INSERT an array of values in SQL Server 2005?Lance Roberts2008-10-03T16:12:30Z2009-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#16346200Answer by Lance Roberts for Is there a way to use a wildcard in a "where" statment for MySQL?Lance Roberts2009-10-28T01:00:54Z2009-10-28T01:00:54Z<p>You'd have to be using dynamic SQL, like</p>
<blockquote>
<p>"SELECT * FROM my_table WHERE id " &
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#16336320Answer by Lance Roberts for How to know where AS keyword should be used ?Lance Roberts2009-10-27T20:57:39Z2009-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#15973490Answer by Lance Roberts for How can I get the current user's SID in VB6?Lance Roberts2009-10-20T21:13:46Z2009-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#15836071Answer by Lance Roberts for Spreadsheet: Count Repeated Values In A ColumnLance Roberts2009-10-18T00:37:03Z2009-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#15746450Answer by Lance Roberts for Can this be done using excel macos?Lance Roberts2009-10-15T19:50:35Z2009-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#15637351Answer by Lance Roberts for DesigningTips.comLance Roberts2009-10-14T00:47:01Z2009-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#15569830Answer by Lance Roberts for How to fall through a Select Case in Excel VBA?Lance Roberts2009-10-12T21:13:41Z2009-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-documentation0OBEL resources and documentation?Lance Roberts2009-10-06T19:46:17Z2009-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-1Answer by Lance Roberts for How many Programming Books do you read each year?Lance Roberts2009-09-30T21:41:24Z2009-09-30T21:41:24Z<p>I read all I can read.</p>
http://stackoverflow.com/questions/1495384/personal-matters/1495398#1495398-3Answer by Lance Roberts for Personal mattersLance Roberts2009-09-29T23:07:14Z2009-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-file0How do you strip quotes out of an ECHO'ed string in a Windows batch file?Lance Roberts2009-04-29T22:56:41Z2009-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-1Answer by Lance Roberts for What makes a language readable or not readable?Lance Roberts2009-09-24T19:01:21Z2009-09-24T19:01:21Z<p>The literacy level of the reader.</p>
http://stackoverflow.com/questions/1466846/comparing-database-platforms/1466874#14668740Answer by Lance Roberts for Comparing Database PlatformsLance Roberts2009-09-23T15:49:07Z2009-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-workaround0SQL string replacement workaroundLance Roberts2009-09-22T17:03:05Z2009-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#14505271Answer by Lance Roberts for Problem with dates using CarlosAg.ExcelXmlWriterLance Roberts2009-09-20T07:33:20Z2009-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#14503420Answer by Lance Roberts for MATLAB excluding data outside 1 standard deviationLance Roberts2009-09-20T05:10:23Z2009-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 > mean-std,1,'first'):find(B < 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#1799109Answer by Lance Roberts for What is MATLAB good for? Why is it so used by universities? When is it better than Python?Lance Roberts2008-10-07T19:13:08Z2009-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#14356830Answer by Lance Roberts for Jagged Oval Edge issueLance Roberts2009-09-16T21:49:01Z2009-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#14356262Answer by Lance Roberts for regular expression in vba excel looking for groups out of a stringLance Roberts2009-09-16T21:36:25Z2009-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#14339851Answer by Lance Roberts for Select * from table OR select id,field1, field2, field3 from table - best practice?Lance Roberts2009-09-16T16:15:13Z2009-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#14309081Answer by Lance Roberts for Hotel Management PHP Date Restrictive QueryLance Roberts2009-09-16T04:15:30Z2009-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 < checkindate)</p>
http://stackoverflow.com/questions/1420045/how-to-find-distance-from-the-latitude-and-longitude-of-two-locations/1420055#14200551Answer by Lance Roberts for How to find distance from the latitude and longitude of two locations?Lance Roberts2009-09-14T06:59:02Z2009-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#14200331Answer by Lance Roberts for Looping Rows in SQL ServerLance Roberts2009-09-14T06:52:27Z2009-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#14009324Answer by Lance Roberts for What are the best web design sites?Lance Roberts2009-09-09T17:18:37Z2009-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#13921404Answer by Lance Roberts for Am I too old to became software developer?Lance Roberts2009-09-08T05:26:58Z2009-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#1766585Comment by Lance Roberts on Any cheap or free IDE's out there for VB6 programming?Lance Roberts2009-11-19T21:23:54Z2009-11-19T21:23:54Zedited my answer to say just that.http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766585#1766585Comment by Lance Roberts on Any cheap or free IDE's out there for VB6 programming?Lance Roberts2009-11-19T21:22:40Z2009-11-19T21:22:40ZMZ-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-hereComment by Lance Roberts on Can I get a job here?Lance Roberts2009-11-18T23:46:30Z2009-11-18T23:46:30ZNo. They're all taken.http://stackoverflow.com/questions/1752384/sql-server-2000-installationComment by Lance Roberts on SQL Server 2000 InstallationLance Roberts2009-11-17T22:43:02Z2009-11-17T22:43:02ZThis is a question for ServerFault.http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language/340307#340307Comment by Lance Roberts on What is your favorite esoteric programming language?Lance Roberts2009-11-17T18:26:19Z2009-11-17T18:26:19ZSee 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-programComment by Lance Roberts on Why am I getting too much headaches when i program?Lance Roberts2009-11-16T17:28:51Z2009-11-16T17:28:51ZProgramming is hard, lets go shopping.http://stackoverflow.com/questions/1726677/is-perl-officially-deadComment by Lance Roberts on Is Perl officially dead?Lance Roberts2009-11-13T17:31:54Z2009-11-13T17:31:54ZThere'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-rowComment by Lance Roberts on excel macro to select multiple row Lance Roberts2009-11-12T22:23:58Z2009-11-12T22:23:58ZWhat is it doing wrong? what is the error message or problem?http://stackoverflow.com/questions/1724541/stack-using-charComment by Lance Roberts on stack using charLance Roberts2009-11-12T19:06:56Z2009-11-12T19:06:56ZYou 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-charComment by Lance Roberts on c++ stack using charLance Roberts2009-11-12T18:22:41Z2009-11-12T18:22:41Zahh, then we need a close reason for 'inadequate punctuation'.http://stackoverflow.com/questions/1724276/c-stack-using-charComment by Lance Roberts on c++ stack using charLance Roberts2009-11-12T18:21:32Z2009-11-12T18:21:32ZHe 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#1712210Comment by Lance Roberts on What's your take on the programming language Go?Lance Roberts2009-11-11T02:24:04Z2009-11-11T02:24:04ZGot it, thanks.http://stackoverflow.com/questions/167643/how-to-insert-an-array-of-values-in-sql-server-2005/1682344#1682344Comment by Lance Roberts on How to INSERT an array of values in SQL Server 2005?Lance Roberts2009-11-05T18:11:49Z2009-11-05T18:11:49ZI flagged the moderator to delete your answer.http://stackoverflow.com/questions/1633576/how-to-know-where-as-keyword-should-be-used/1633633#1633633Comment by Lance Roberts on How to know where AS keyword should be used ?Lance Roberts2009-10-27T21:07:21Z2009-10-27T21:07:21ZBOL is one of the hardest places to get good info from.http://stackoverflow.com/questions/1573740/can-this-be-done-using-excel-macos/1574645#1574645Comment by Lance Roberts on Can this be done using excel macos?Lance Roberts2009-10-16T19:03:35Z2009-10-16T19:03:35ZI 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.