User Ken Paul - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:55:14Z http://stackoverflow.com/feeds/user/26671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1545915/windows-processes-vs-applications 3 Windows processes vs. applications Ken Paul 2009-10-09T20:32:01Z 2009-10-12T23:57:45Z <p>I can easily identify running processes by looping through the WMI <code>Win32_Process</code> elements. Is there a similar way to identify "applications" as in Task Manager? I assume that this is comparable to knowing whether the process has an open window. For example, when you exit Outlook, the <code>OUTLOOK.EXE</code> process keeps running. Task Manager no longer shows it as an application, but the process is still there. I want to be able to determine this difference from a script. I think I can handle examples in most any language. </p> http://stackoverflow.com/questions/971296/how-to-use-dlls-in-the-same-directory-as-an-excel-file/971361#971361 0 Answer by Ken Paul for How to use dll's in the same directory as an excel file Ken Paul 2009-06-09T17:13:37Z 2009-06-09T17:13:37Z <p><code>ActiveWorkbook.Path</code> gives you the full path to the folder containing the currently-active workbook. So try this:</p> <pre><code>Declare Sub FortranCall Lib ActiveWorkbook.Path &amp; "\Fcall.dll" (r1 As Long, ByVal num As String) </code></pre> http://stackoverflow.com/questions/811968/how-can-i-get-vertical-alignment-in-flow-slot-in-shoes 0 How can I get vertical alignment in flow slot in Shoes? Ken Paul 2009-05-01T15:52:01Z 2009-05-19T15:03:24Z <p>The default vertical alignment in a <code>flow</code> slot is apparently to top-align the elements. Here's a sample:</p> <pre><code>Shoes.app (:title =&gt; "Vertical Alignment", :width =&gt; 300, :height =&gt; 150) do background "#DFA" flow :margin =&gt; 30 do title "BIG" tagline "MEDIUM" inscription "SMALL" end end </code></pre> <p>How do I get the <code>flow</code> slot to center-align its elements short of calculating a <code>:rise</code> value for each element? I would have expected a vertical-alignment style for <code>flow</code> slots and a horizontal-alignment style for <code>stack</code> slots, but I don't see anything like that. What did I miss?</p> http://stackoverflow.com/questions/825331/where-to-put-ruby-gem-files-so-that-shoes-setup-can-find-them 2 Where to put ruby .gem files so that Shoes.setup can find them? Ken Paul 2009-05-05T15:09:42Z 2009-05-05T15:49:43Z <p>A lot of questions have been asked about gem support in Shoes, but none have answered where to put them. I've got Shoes Raisins 1134 on Windows XP, and I've downloaded <code>dbi-0.4.1.gem</code> and am trying to get the following to work:</p> <pre><code>Shoes.setup do gem 'dbi' end require 'dbi' Shoes.app ... end </code></pre> <p>When I run this, I get the dialog that says <code>Installing dbi -- Looking for dbi</code> which sits for hours not finding the gem file. I've tried putting it in all of the following places to no avail:</p> <ul> <li>The folder that contains the above script</li> <li>D:\Program Files\Common Files\Shoes\0.r1134\ruby\gems</li> <li>D:\Program Files\Common Files\Shoes\0.r1134\ruby\gems\1.8\gems</li> </ul> <p>Which is wrong -- the folder or the code?</p> <h2>EDIT - ANSWER:</h2> <p>Thanks to @Pesto for the answer. I had read the quoted text, but misunderstood it to reference where Shoes PUT the installed gem files, not where it GOT the gem source. In Windows XP, the reference translates to <code>%USERPROFILE%\Application Data\Shoes</code>, and the install worked perfectly. Now to start playing with it ...</p> http://stackoverflow.com/questions/798947/shoes-problems-clipboard-and-scroll-bar 2 Shoes problems: clipboard and scroll bar Ken Paul 2009-04-28T17:07:18Z 2009-04-28T22:19:49Z <p>The code below has (at least) two problems: the <code>Copy</code> button doesn't update the clipboard, and the <code>edit_box</code> doesn't show a vertical scroll bar when it should.</p> <pre><code>Shoes.app (:title =&gt; "Test", :width =&gt; 1000, :height =&gt; 600) do background "#DFA" stack :margin =&gt; 30 do flow do button "Paste" do @sql.text = clipboard end button "Copy", :margin_left =&gt; 15 do clipboard = @sql.text alert(@sql.text.length.to_s + " characters copied to clipboard.") end end stack :margin_top =&gt; 10, :width =&gt; "100%", :height =&gt; 500, :scroll =&gt; true do @sql = edit_box :width =&gt; "100%", :height =&gt; "100%" end end end </code></pre> <p>The <code>Paste</code> button correctly pastes the clipboard contents into the <code>edit_box</code>. If you make changes, then click <code>Copy</code>, the <code>alert</code> message displays the correct number of characters. If you then click <code>Paste</code> again, the original clipboard contents are pasted. The <code>Copy</code> button never correctly updates the clipboard.</p> <p>Also, if you generate more lines than fit the <code>edit_box</code>, either by editing or pasting, no scroll bar ever appears.</p> <p>Any help on these two issues will be much appreciated. My environment is Windows XP if that helps.</p> <p><strong>UPDATE WITH ANSWERS:</strong> Thanks to @Pesto for answering the clipboard question. It turns out that qualifying <code>clipboard</code> with either <code>app.</code> or <code>self.</code> works as expected in both the <code>Paste</code> and <code>Copy</code> buttons.</p> <p>After digging deeper into the scrollbar issue, I think I understand why the <code>edit_box</code> doesn't show a scrollbar. The scrollbar in Shoes applies only to slots (<code>stack</code> and <code>flow</code>), and not to individual elements like <code>edit_box</code>. The <code>edit_box</code> height is specified in such a way as to always fit within the enclosing <code>stack</code>, so the <code>stack</code> never needs a scrollbar. This led me to a work-around that is not ideal, but is acceptable for my application. Simply change the <code>edit_box</code> height to a larger-than-necessary value such as <code>"10000px"</code> and the scrollbar appears. Unfortunately, it's there whether needed or not, but that's better than no scrollbar. I'm sure that some additional tinkering can dynamically change the <code>edit_box</code> height to exactly fit the contents, so that the scrollbar will appear only when needed.</p> http://stackoverflow.com/questions/448077/accessing-oracle-db-through-sql-server-using-openrowset 0 Accessing Oracle DB through SQL Server using OPENROWSET Ken Paul 2009-01-15T19:18:38Z 2009-04-09T13:24:13Z <p>I'm trying to access a large Oracle database through SQL Server using OPENROWSET in client-side Javascript, and not having much luck. Here are the particulars:</p> <ul> <li>A SQL Server view that accesses the Oracle database using OPENROWSET works perfectly, so I know I have valid connection string parameters. However, the new requirement is for extremely dynamic Oracle queries that depend on client-side selections, and I haven't been able to get dynamic (or even parameterized) Oracle queries to work from SQL Server views or stored procedures.</li> <li>Client-side access to the SQL Server database works perfectly with dynamic and parameterized queries.</li> <li>I cannot count on clients having any Oracle client software. Therefore, access to the Oracle database has to be through the SQL Server database, using views, stored procedures, or dynamic queries using OPENROWSET.</li> <li>Because the SQL Server database is on a shared server, I'm not allowed to use globally-linked databases.</li> </ul> <p>My idea was to define a function that would take my own version of a parameterized Oracle query, make the parameter substitutions, wrap the query in an OPENROWSET, and execute it in SQL Server, returning the resulting recordset. Here's sample code:</p> <pre><code>// db is a global variable containing an ADODB.Connection opened to the SQL Server DB // rs is a global variable containing an ADODB.Recordset . . . ss = "SELECT myfield FROM mytable WHERE {param0} ORDER BY myfield;"; OracleQuery(ss,["somefield='" + somevalue + "'"]); . . . function OracleQuery(sql,params) { var s = sql; var i; for (i = 0; i &lt; params.length; i++) s = s.replace("{param" + i + "}",params[i]); var e = "SELECT * FROM OPENROWSET('MSDAORA','(connect-string-values)';" + "'user';'pass','" + s.split("'").join("''") + "') q"; try { rs.Open("EXEC ('" + e.split("'").join("''") + "')",db); } catch (eobj) { alert("SQL ERROR: " + eobj.description + "\nSQL: " + e); } } </code></pre> <p>The SQL error that I'm getting is <code>Ad hoc access to OLE DB provider 'MSDAORA' has been denied. You must access this provider through a linked server.</code> which makes no sense to me. The Microsoft explanation for this error relates to a registry setting (<code>DisallowAdhocAccess</code>). This is set correctly on my PC, but surely this relates to the DB server and not the client PC, and I would expect that the setting there is correct since the view mentioned above works.</p> <p>One alternative that I've tried is to eliminate the enclosing EXEC in the Open statement:</p> <pre><code>rs.Open(e,db); </code></pre> <p>but this generates the same error. </p> <p>I also tried putting the OPENROWSET in a stored procedure. This works perfectly when executed from within SQL Server Management Studio, but fails with the same error message when the stored procedure is called from Javascript.</p> <p>Is what I'm trying to do possible? If so, can you recommend how to fix my code? Or is a completely different approach necessary?</p> <p>Any hints or related information will be welcome. Thanks in advance.</p> http://stackoverflow.com/questions/711757/vba-parse-string-into-tokens/711869#711869 4 Answer by Ken Paul for VBA parse string into tokens Ken Paul 2009-04-02T22:26:02Z 2009-04-02T22:26:02Z <p>I would use regular expressions. In <strong>Tools | References</strong>, add the highest version of the Microsoft VBScript Regular Expressions library available on your PC (5.5 on mine). Then you can use code such as the following:</p> <pre><code>Sub main() Dim x, m Set x = myparser("BBCTEEBOBBB") For Each m In x Debug.Print m.Value Next End Sub Function myparser(string_to_parse) Dim splitter As New RegExp splitter.Pattern = "E|BB|CT|BOB" splitter.Global = True Set myparser = splitter.Execute(string_to_parse) End Function </code></pre> <p>The <code>myparser</code> function generates a <code>MatchCollection</code> object which can be toured as in the <code>main</code> subroutine. The output is a list, in order, of all of the matches found in the input string. You should be able to easily convert this to generate an array or space-delimited string.</p> http://stackoverflow.com/questions/687833/how-to-get-the-last-value-of-arraylist/687845#687845 1 Answer by Ken Paul for How to get the last value of Arraylist Ken Paul 2009-03-26T22:44:40Z 2009-03-26T22:44:40Z <p>The <code>size()</code> method returns the number of elements in the ArrayList. The index values of the elements are <code>0</code> through <code>(size()-1)</code>, so you would use <code>myArrayList.get(myArrayList.size()-1)</code> to retrieve the last element.</p> http://stackoverflow.com/questions/552065/how-to-supply-cookie-to-java-htmldocument 0 How to supply cookie to Java HTMLDocument? Ken Paul 2009-02-16T02:22:43Z 2009-02-16T02:36:28Z <p>I'm trying to read a web site as an HTMLDocument; and the site requires either a cookie from a previous logon, or a response to a popup dialog. I'm thinking that supplying the necessary cookie is the easiest to accomplish, but I haven't found a way to do that. The code to open and read the document is:</p> <pre><code>URL url = new URL(suppliedURL); URLConnection conn = url.openConnection(); InputStream is = conn.getInputStream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); HTMLEditorKit htmlKit = new HTMLEditorKit(); HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument(); HTMLEditorKit.Parser parser = new ParserDelegator(); HTMLEditorKit.ParserCallback callback = htmlDoc.getReader(0); parser.parse(br, callback, true); </code></pre> <p>The retrieved document contains incorrect information that can only be corrected by invoking a logon dialog or supplying a cookie.</p> <p>So the questions are:</p> <ol> <li><p>How do I supply a cookie when opening this page?</p></li> <li><p>How do I copy the information from an existing IE cookie to the cookie I supply?</p></li> </ol> http://stackoverflow.com/questions/339744/better-languages-than-sql-for-stored-procedures 5 Better languages than SQL for stored procedures Ken Paul 2008-12-04T06:49:04Z 2009-01-16T12:02:43Z <p>I'm getting increasingly frustrated with the limitations and verbosity required to actually commit some business logic to stored procedures, using languages such as Transact-SQL or PL/SQL. I would love to convert some current databases to Oracle and take advantage of its support for Java stored procedures, but that option is not available at the moment. </p> <p>What alternatives would you recommend in the way of databases that support stored procedures in other languages?</p> http://stackoverflow.com/questions/448077/accessing-oracle-db-through-sql-server-using-openrowset/448851#448851 0 Answer by Ken Paul for Accessing Oracle DB through SQL Server using OPENROWSET Ken Paul 2009-01-15T23:02:36Z 2009-01-15T23:02:36Z <p>I'm answering this myself. I found the answer, and I'm not happy with the results. The functions that have worked are being run under my personal user id, and I have db-owner privileges. For the <em>ad hoc</em> access to work, I need to either set the <code>DisallowAdhocAccess</code> registry setting to 0, or give db-owner privileges to the user id used in the web access. Because this is a shared server with tight security, I won't be allowed to change the registry setting, which would affect much more than my database. And I consider the second option to be equally dangerous.</p> <p>As a result, I'm apparently stuck with forcing users to have the Oracle Instant Client installed so I can open an ADO connection to the Oracle database directly in client-side Javascript.</p> <p>I will still welcome any alternative thoughts on this.</p> http://stackoverflow.com/questions/445247/where-can-i-get-images-or-full-windows-oss-to-run-in-virtual-machines/445290#445290 2 Answer by Ken Paul for Where can I get images or full Windows OS's to run in Virtual Machines Ken Paul 2009-01-15T01:06:19Z 2009-01-15T01:06:19Z <p>Another virtualization tool you should consider is <a href="http://www.virtualbox.org/wiki/VirtualBox" rel="nofollow">VirtualBox</a> by Sun. It runs on any platform, and can run most any OS, even with seamless windows. It's free, easy to install and uses minimal resources. Here's a list of known <a href="http://www.virtualbox.org/wiki/Guest_OSes" rel="nofollow">supported OSes</a></p> http://stackoverflow.com/questions/201261/making-excel-functions-affect-other-cells/418508#418508 0 Answer by Ken Paul for Making Excel functions affect 'other' cells Ken Paul 2009-01-06T22:51:40Z 2009-01-13T00:38:03Z <p>Here's an easy VBA workaround that works. For this example, open a new Excel workbook and copy the following code into the code area for <code>Sheet1</code> (not <code>ThisWorkbook</code> or a VBA <code>Module</code>). Then go into <code>Sheet1</code> and put something into one of the upper-left cells of the worksheet. If you type a number and hit Enter, then the cell to the right will be updated with 4 times the number, and the cell background will become light-blue. Any other value causes the next cell to be cleared. Here's the code:</p> <pre><code>Dim busy As Boolean Private Sub Worksheet_Change(ByVal Target As Range) If busy Then Exit Sub busy = True If Target.Row &lt;= 10 And Target.Column &lt;= 10 Then With Target.Offset(0, 1) If IsNumeric(Target) Then .Value = Target * 4 .Interior.Color = RGB(212, 212, 255) Else .Value = Empty .Interior.ColorIndex = xlColorIndexNone End If End With End If busy = False End Sub </code></pre> <p>The subroutine captures all cell change events in the sheet. If the row and column are both &lt;= 10, then the cell to the right is set to 4 times the changed cell if the value is numeric; otherwise the cell to the right is cleared.</p> http://stackoverflow.com/questions/435905/what-are-the-legal-ways-to-get-textbooks-programming-books-in-pdf-only-with-an-o/436035#436035 1 Answer by Ken Paul for What are the legal ways to get textbooks/programming books in PDF only, with an option to always download it again? Ken Paul 2009-01-12T16:40:48Z 2009-01-12T16:40:48Z <p>My company has a subscription to <a href="http://books24x7.com" rel="nofollow">Books24x7</a> which has online copies of any book I've ever looked for, and with a great search capability. I don't know what the cost would be for a personal subscription. I believe they have an option to create and download PDF subsets.</p> http://stackoverflow.com/questions/427039/justify-text-in-a-html-xhtml-textarea/427056#427056 2 Answer by Ken Paul for Justify Text in a HTML/XHTML TextArea Ken Paul 2009-01-09T04:17:24Z 2009-01-09T04:17:24Z <p>I believe that common practice is to use the <code>TEXTAREA</code> for input without worying about justification; and then, once the input is processed (i.e. the <code>FORM</code> is submitted, or an event of the <code>TEXTAREA</code> is captured), the contents are displayed in a non-editable text element (such as <code>P</code>, <code>SPAN</code>, <code>TD</code>) where the <code>text-align: justify;</code> style attribute will be honored.</p> http://stackoverflow.com/questions/421046/what-are-all-of-the-allowable-characters-for-peoples-names/421214#421214 3 Answer by Ken Paul for What are all of the allowable characters for people's names? Ken Paul 2009-01-07T17:27:49Z 2009-01-07T23:38:24Z <p>On the issue of name fields, the <strong><em>WRONG</em></strong> answer is first name, middle initial, last name, etc. for many reasons.</p> <ol> <li><p>Many people are known by their middle name, and formally use a first initial, middle name, last name format.</p></li> <li><p>In some cultures, the surname is the first name, and the given name is the last name.</p></li> <li><p>Multiple first and/or middle given names is getting more common. As @Dour High Arch points out, the other extreme is people with only one word in their name.</p></li> </ol> <p>In an object-oriented database, you would store a Name object with methods to return a directory-style or signature-style name; and the backing store would contain whatever data was necessary to support those methods.</p> <p>I haven't yet seen a relational database model that improves on the model of two variable-length strings for directory-style and signature-style names.</p> http://stackoverflow.com/questions/417309/help-with-a-simple-formula-for-a-novice/417360#417360 3 Answer by Ken Paul for Help with a simple formula for a novice Ken Paul 2009-01-06T17:09:58Z 2009-01-06T17:09:58Z <p>I would use the HYPERLINK cell function to generate the link. For example:</p> <pre><code>Cell A2: 2402 Cell B2: =HYPERLINK("http://www. ... /property" &amp; A2 &amp; "_image1.jpg","Click to see ...") </code></pre> <p>You can then copy the formula into all of the following rows, and the reference to cell A2 will change to be relative to the current row.</p> <p>This can also be generated dynamically using VBA code if necessary.</p> http://stackoverflow.com/questions/404351/char-vs-char-how-do-you-pronounce-it/415610#415610 1 Answer by Ken Paul for char vs char - how do you pronounce it? Ken Paul 2009-01-06T06:11:00Z 2009-01-06T06:11:00Z <p>I think the answer depends on you age and programming background. Older programmers who started with languages that required you to spell out all keywords will typically pronounce this "<strong>care</strong>" because they're <strong><em>thinking</em></strong> "character" when they say it. Younger programmers who grew up primarily on terse, cryptic languages typically pronounce it as in "<strong>char</strong>-broiled". I'm in the first group. </p> <p>Then there's the <em>SQL factor</em>. If you actually read SQL a lot, you tend to say "vare-care" or "var-kar", but not "vare-char" (as in "char-broiled").</p> <p>As others have said, the most important factor is that the listeners understand the speaker.</p> <p>Once we've mastered telepathy, many such issues disappear. :-)</p> http://stackoverflow.com/questions/410608/portable-web-font-technology 2 Portable web font technology Ken Paul 2009-01-04T07:28:11Z 2009-01-04T16:23:54Z <p>After reading the question on <a href="http://stackoverflow.com/questions/410461/font-typeface-selection-for-the-web">web font typeface selection</a>, it occurred to me that portable network fonts were the answer. We used to use a package by Bitstream to generate subsets of needed fonts to embed in web pages so that it looked the same in every browser on every platform. When I Googled this, I found an RFC that looks like it's owned by Bitstream, and not much else.</p> <p>What happened to this technology? Am I just not seeing it? Or did it disappear because it was proprietary? If so, what's on the horizon for this technology?</p> http://stackoverflow.com/questions/402017/how-can-my-uninstall-process-properly-deal-with-restoring-registry-entries 0 How can my uninstall process properly deal with restoring registry entries? Ken Paul 2008-12-31T01:16:39Z 2008-12-31T01:55:45Z <p>Sometimes it's necessary to modify Windows registry settings during an application install. I've recently been frustrated by applications that don't restore these settings when they are uninstalled. As I thought more about this, it occurs to me that there may not be a good (or valid) way to save and restore registry settings. Take the following sequence of events for example:</p> <ol> <li>Application A owns the Open action for file extension <code>.abc</code>.</li> <li>Application B is installed, and hijacks the Open action for file extension <code>.abc</code>.</li> <li>Application A is uninstalled.</li> <li>Application B is uninstalled.</li> </ol> <p>At step 3, if Application A is smart enough, it will detect that it no longer owns the Open action and will therefore skip any attempt to restore it.</p> <p>At step 4, is there any valid action that Application B can take? </p> <ul> <li>Doing nothing leaves the Open action pointing to a deleted executable.</li> <li>Restoring the pointer to Application A is likewise a deleted executable.</li> <li>Asking the user is not allowed since this is typically considered way beyond the technical skills of the typical user. If you don't agree, then substitute a different registry change in steps 1 and 2 that you think would be out of scope for the user to answer.</li> <li>Deleting the action will likewise require the user to make an uninformed decision at a later time, or else make some function unavailable to the user.</li> </ul> <p>This is only one of many bad situations that I can envision where there is no obvious one-and-only "correct" solution. My next project will require registry changes during install, and I'd like to know the best or recommended practice for the uninstall. Unfortunately, I've been burned by bad uninstall practices in current commercial packages, so I'm aware that there's no consensus on best practice here, and it's either a lot of work to do it right, or else a design flaw in the Registry, or both.</p> <p>This is a very real programming problem for me. I'm tagging it Subjective because I'm not sure there's any one-size-fits-all <strong><em>right</em></strong> answer to this. Please feel free to disagree.</p> http://stackoverflow.com/questions/387177/web-displays-paging-vs-long-tables 5 Web displays: Paging vs. long tables Ken Paul 2008-12-22T19:59:21Z 2008-12-22T23:03:30Z <p>It seems that the trend in web design is to provide paged output, where long tables are displayed a page at a time. My customers don't like that, and have requested that the web sites I design for them show all entries in long tables. The arguments for paging seem to be mostly based on the performance hit of displaying long tables, and this is less of a concern in a high-bandwidth corporate intranet. Arguments against paging include the ability to print the entire table, do string searches against the entire table, select arbitrary ranges from the entire table for copying, etc. I've pointed out that these features can easily be added to paged web designs (e.g. a print button that prints the entire table, or a button that creates a CSV file of the the table), but the paged output still seems inconvenient to them. Our typical table is about 100 to 600 items. Obviously tables that would be significantly larger would probably have to be paged.</p> <p><strong>Questions:</strong></p> <ol> <li>What is your experience with personal or customer preferences for paged vs. full output in long tables?</li> <li>Web design tools seem to be pushing the paging paradigm. Are they out of touch, or are my customers unusual?</li> <li>If you're thinking "It depends on the length of the table", what threshold would you use?</li> </ol> http://stackoverflow.com/questions/373324/how-to-escape-everything-in-a-block-in-html/373735#373735 1 Answer by Ken Paul for How to escape everything in a block in HTML Ken Paul 2008-12-17T05:36:38Z 2008-12-17T05:36:38Z <p>You need to use <code>&lt;pre&gt;&lt;code&gt; ... &lt;/code&gt;&lt;/pre&gt;</code>. </p> <p><code>&lt;xmp&gt;</code> is deprecated and should not be used. See <a href="http://www.htmlcodetutorial.com/_XMP.html" rel="nofollow">http://www.htmlcodetutorial.com/_XMP.html</a>.</p> http://stackoverflow.com/questions/370013/jquery-delete-all-table-rows-except-first 3 jQuery delete all table rows except first Ken Paul 2008-12-15T23:03:44Z 2008-12-16T14:30:55Z <p>Using jQuery, how do I delete all rows in a table except the first? This is my first attempt at using index selectors. If I understand the examples correctly, the following should work:</p> <pre><code>$(some table selector).remove("tr:gt(0)"); </code></pre> <p>which I would read as "Wrap some table in a jQuery object, then remove all 'tr' elements (rows) where the element index of such rows is greater than zero". In reality, it executes without generating an error, but doesn't remove any rows from the table.</p> <p>What am I missing, and how do I fix this? Of course, I could use straight javascript, but I'm having so much fun with jQuery that I'd like to solve this using jQuery.</p> http://stackoverflow.com/questions/232387/in-sql-how-can-you-group-by-in-ranges/232463#232463 14 Answer by Ken Paul for In SQL, how can you "group by" in ranges? Ken Paul 2008-10-24T04:05:56Z 2008-12-15T03:51:50Z <p>I see answers here that won't work in SQL Server's syntax. I would use:</p> <pre><code>select t.range as [score range], count(*) as [number of occurences] from ( select case when score between 0 and 9 then ' 0-9 ' when score between 10 and 19 then '10-19' when score between 20 and 29 then '20-29' ... else '90-99' end as range from scores) t group by t.range </code></pre> <p>EDIT: see comments</p> http://stackoverflow.com/questions/297213/translate-an-index-into-an-excel-column-name/297440#297440 1 Answer by Ken Paul for Translate an index into an Excel Column Name Ken Paul 2008-11-18T00:10:16Z 2008-12-15T02:29:42Z <p>It's for this very reason that I avoid column names in programmed interface to Excel. Using column <strong>numbers</strong> works very well in Cell(r,c) references and R1C1 addressing.</p> <p>EDIT: The Range function also takes cell references, as in Range(Cell(r1,c1),Cell(r2,c2)). Also, you can use the Address function to get the A1-style address of a cell or range.</p> <p>EDIT2: Here's a VBA function that uses the Address() function to retrieve the column name:</p> <pre><code>Function colname(colindex) x = Cells(1, colindex).Address(False, False) ' get the range name (e.g. AB1) colname = Mid(x, 1, Len(x) - 1) ' return all but last character End Function </code></pre> http://stackoverflow.com/questions/365866/how-do-you-use-xml-within-the-world-of-web-applications/366142#366142 1 Answer by Ken Paul for How do *you* use XML within the world of web applications? Ken Paul 2008-12-14T03:40:45Z 2008-12-14T07:04:29Z <p>I'll give you two examples of needs that we satisfied using XML:</p> <ol> <li><p>We needed to communicate data collected from many UNIX servers about file allocations, sending the details to a Windows server for analysis. Both the detail and summaries are graphically displayed through a web application. </p></li> <li><p>We needed to store multiple formats of form responses in a single repository for later searching and "playback". The forms are generated, stored, searched and played back within a web application.</p></li> </ol> <p>In both cases we needed the ability to convey loosely-structured data in a self-defining format. In both cases we invented a generic XML structure that was easy for the sending process to generate, easy for the receiving process to both store (essentially a single long string), search and decode, and was easily read and understood by humans, both now and after we're all long gone. We could have invented a syntax other than XML, but nobody could think of anything better at the time, and it has served us well. I can't share specific examples because the data is considered proprietary.</p> http://stackoverflow.com/questions/357739/how-do-i-combine-a-combo-box-with-a-tree-in-swing/357873#357873 3 Answer by Ken Paul for How do I combine a Combo Box with a Tree in Swing? Ken Paul 2008-12-10T22:40:48Z 2008-12-10T22:40:48Z <p>I think I would implement this as a JTree component in a JViewPort, followed by an expansion button. When collapsed, it would look like a combo box. When you click the expansion button, the viewport would expand, allowing you to scroll and select a node in the JTree. When you selected the node, the view port would collapse back to only show the selected node and the expansion button.</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/357474#357474 0 Answer by Ken Paul for What dead programming languages do you know? Ken Paul 2008-12-10T20:23:08Z 2008-12-10T20:23:08Z <p>I started out writing in Autocoder, Fargo and SPS for the 2nd generation IBM 1400-series mainframes. I think these qualify as dead languages, although we had a 1401 emulator card deck for early IBM 360s.</p> http://stackoverflow.com/questions/356908/should-small-companies-code-their-sites-to-support-chrome/356979#356979 1 Answer by Ken Paul for Should small companies code their sites to support Chrome? Ken Paul 2008-12-10T17:56:34Z 2008-12-10T17:56:34Z <p>I'm aware of several large companies that have outlawed use of Chrome until it allows installation on other than the C drive. I would guess that if Chrome overcomes this and some of the UI issues mentioned elsewhere, it will become very popular. I think you should plan to support Chrome.</p> http://stackoverflow.com/questions/347235/base64-encoded-string-search/347244#347244 -1 Answer by Ken Paul for Base64 encoded string search Ken Paul 2008-12-07T04:49:42Z 2008-12-07T04:49:42Z <p>You can't just search for an encoded substring. Your search string will be encoded differently depending on where in the original string it appears. I think you will need to decode the entire string and then search for your substring.</p> http://stackoverflow.com/questions/1545915/windows-processes-vs-applications/1545952#1545952 Comment by Ken Paul on Windows processes vs. applications Ken Paul 2009-10-12T23:50:34Z 2009-10-12T23:50:34Z Is there a WMI object for that? That would definitely answer the question. http://stackoverflow.com/questions/835418/what-are-the-stackoverflow-standard-answers/835532#835532 Comment by Ken Paul on What are the StackOverflow standard answers? Ken Paul 2009-05-07T16:39:04Z 2009-05-07T16:39:04Z Many questions are too generic for specific answers. &quot;It depends ...&quot; is often the most useful answer if followed by an explanation of different actions/answers and the conditions under which they apply. http://stackoverflow.com/questions/816171/where-to-get-geography-data/831795#831795 Comment by Ken Paul on Where to get geography data? Ken Paul 2009-05-06T21:32:56Z 2009-05-06T21:32:56Z When designing your database, keep in mind that there are many zip codes with multiple towns associated, several that cross county boundaries, and even a few that cross state boundaries. http://stackoverflow.com/questions/829947/ms-word-macro-delete-paragraphs/830409#830409 Comment by Ken Paul on MS Word Macro - Delete Paragraphs Ken Paul 2009-05-06T16:37:16Z 2009-05-06T16:37:16Z The request is to delete paragraphs NOT containing the string (or symbol). Change the &quot;If InStr(...&quot; to &quot;If Not InStr(...&quot;. http://stackoverflow.com/questions/811968/how-can-i-get-vertical-alignment-in-flow-slot-in-shoes/812056#812056 Comment by Ken Paul on How can I get vertical alignment in flow slot in Shoes? Ken Paul 2009-05-02T00:30:02Z 2009-05-02T00:30:02Z Thanks, @Pesto. Let's hope _why reads this, and I'll try to be more patient. http://stackoverflow.com/questions/798947/shoes-problems-clipboard-and-scroll-bar/799390#799390 Comment by Ken Paul on Shoes problems: clipboard and scroll bar Ken Paul 2009-04-28T19:37:38Z 2009-04-28T19:37:38Z Many thanks. The app.clipboard fix works perfectly. Why is this not required in the Paste function? http://stackoverflow.com/questions/448077/accessing-oracle-db-through-sql-server-using-openrowset/734208#734208 Comment by Ken Paul on Accessing Oracle DB through SQL Server using OPENROWSET Ken Paul 2009-04-10T14:59:47Z 2009-04-10T14:59:47Z I agree. If I could get the query to work server-side I would do that. The problem is that I can't get the query to work on the server at all, due to the restrictions of OPENROWSET syntax. http://stackoverflow.com/questions/552065/how-to-supply-cookie-to-java-htmldocument/552084#552084 Comment by Ken Paul on How to supply cookie to Java HTMLDocument? Ken Paul 2009-02-16T18:06:09Z 2009-02-16T18:06:09Z OK - thanks -- I'll give that a try. http://stackoverflow.com/questions/552065/how-to-supply-cookie-to-java-htmldocument/552084#552084 Comment by Ken Paul on How to supply cookie to Java HTMLDocument? Ken Paul 2009-02-16T07:04:36Z 2009-02-16T07:04:36Z I don't think I can use Apache. I'm looking for a Java solution. Maybe I'm misunderstanding you. http://stackoverflow.com/questions/445247/where-can-i-get-images-or-full-windows-oss-to-run-in-virtual-machines/445290#445290 Comment by Ken Paul on Where can I get images or full Windows OS's to run in Virtual Machines Ken Paul 2009-01-15T02:20:58Z 2009-01-15T02:20:58Z @romandas -- sorry you didn't find it helpful. It points to sources of images, which were asked for, and provides an additional, useful tip. If I had asked the question, I would want to see this kind of feedback. http://stackoverflow.com/questions/428013/regex-replacing-58-to-etc/429204#429204 Comment by Ken Paul on Regex Replacing &#58; to ":" etc Ken Paul 2009-01-09T21:57:10Z 2009-01-09T21:57:10Z +1 -- I'm totally impressed that there are still SNOBOL programmers around -- I love that language, but haven't used it in &gt;30 years. http://stackoverflow.com/questions/427039/justify-text-in-a-html-xhtml-textarea/427056#427056 Comment by Ken Paul on Justify Text in a HTML/XHTML TextArea Ken Paul 2009-01-09T04:32:37Z 2009-01-09T04:32:37Z Then I think the simple answer is NO. A Google search on &quot;textarea justify&quot; shows lots of similar questions with no usable solution except maybe to replace the <code>TEXTAREA</code> with a Rich Text widget. http://stackoverflow.com/questions/418821/code-review-in-java/418884#418884 Comment by Ken Paul on Code Review in Java? Ken Paul 2009-01-07T03:37:50Z 2009-01-07T03:37:50Z +1 for good points, summarized well, and excellent links http://stackoverflow.com/questions/410608/portable-web-font-technology/410877#410877 Comment by Ken Paul on Portable web font technology Ken Paul 2009-01-05T05:08:15Z 2009-01-05T05:08:15Z That's a good reference -- I'll try it. Thank you. http://stackoverflow.com/questions/404280/uninstalling-a-windows-app-installed-by-a-nonexistent-user Comment by Ken Paul on Uninstalling a Windows app installed by a nonexistent user. Ken Paul 2009-01-01T00:50:45Z 2009-01-01T00:50:45Z +1 -- it's a good question. Installing, uninstalling, and other deployment issues are definately integrated with coding and programming.