User alumb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:59:09Zhttp://stackoverflow.com/feeds/user/80http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1046810/using-jslint-in-notepad0Using JSLint in Notepad++alumb2009-06-26T00:18:39Z2009-12-10T14:44:24Z
<p>I have seen other text editors use extensions to allow syntax checkers such as <a href="http://www.jslint.com" rel="nofollow">JSLint</a>, is this possible with Notepad++?</p>
http://stackoverflow.com/questions/1875154/extended-extjs-class-cant-find-custom-listener-function-oe-is-undefined/1875215#18752151Answer by alumb for Extended ExtJS Class can't find custom listener function - "oe is undefined"alumb2009-12-09T16:49:55Z2009-12-09T16:49:55Z<p>I had this problem yesterday. The issue with the duplicate and triplicate items in the context menu is due to extjs adding multiple elements to the page with the same ID. Each time you call this.contextMenu.showAt(xy) you are adding a div with the ID 'treeContextMenu' to the page. Most browsers, IE especially, deal with this poorly. The solution is to remove the old context menu before adding the new one. </p>
<p>Here is an abridged version of my code: </p>
<pre><code>var old = Ext.get("nodeContextMenu");
if(!Ext.isEmpty(old)) {
old.remove();
}
var menu = new Ext.menu.Menu({
id:'nodeContextMenu',
shadow:'drop',
items: [ ... ]
});
menu.showAt(e.xy);
</code></pre>
http://stackoverflow.com/questions/1859741/scorm-1-2-player-command-line-launch/1868192#18681920Answer by alumb for Scorm 1.2 Player: Command Line Launchalumb2009-12-08T16:38:13Z2009-12-08T16:38:13Z<p>SCORM is a protocol that specifies how one JavaScript component communicates to another JavaScript component. You could in theory have this communication take place in the context of a command line, rather than the context of the browser, but you'd have to have an LMS that supported this kind of communication. I think it unlikely you'll find a component that will do this. </p>
<p>If you are looking for something to script browser behavior, I'd look into <a href="http://seleniumhq.org/" rel="nofollow">selenium</a>. It will allow you to do automated testing through firefox. This thread may also be helpful: <a href="http://stackoverflow.com/questions/805910/automated-web-ui-testing">http://stackoverflow.com/questions/805910/automated-web-ui-testing</a></p>
http://stackoverflow.com/questions/1732149/writing-out-a-null-in-javascript0writing out a null in javascriptalumb2009-11-13T21:51:58Z2009-11-14T03:00:07Z
<p>This question is in follow up to this one: <a href="http://stackoverflow.com/questions/1712211/write-binary-data-using-javascript-on-the-server">write binary data using JavaScript on the server</a>. </p>
<p>The problem there with just using <code>Response.Write</code> to write the string is that the string contains a null character which JavaScript recognizes as the end of the string. </p>
<p>The string I'm trying to write starts with the following (written here in character codes)</p>
<pre><code>255 216 255 212 0 16 ...
</code></pre>
<p>JavaScript will only output the first 4 characters here, because it recognizes the 5th as a string terminator. Is there any way around this? </p>
<p><hr></p>
<p>I should note that I really do have to write out the binary null... the output of this is pdf, so I can't change the output format. </p>
http://stackoverflow.com/questions/1712211/write-binary-data-using-javascript-on-the-server2Write binary data using javascript on the server. alumb2009-11-11T00:27:50Z2009-11-11T18:30:51Z
<p>I'm trying to output a PDF using server side javascript (ASP). The current method I'm using is: </p>
<pre><code>xfile=Server.MapPath(lib.fso.GetTempName())
xf=lib.fopen(xfile,"wb");
lib.fwrite(xf,this.buffer);
lib.fclose(xf);
outB = Server.CreateObject("ADODB.Stream")
outB.Type = 1
outB.Open()
outB.LoadFromFile (xfile)
Response.BinaryWrite(outB.Read())
outB.Close()
lib.fso.DeleteFile(xfile);
</code></pre>
<p>This works, but requires write access on the server. Is there a way to do the same thing without writing to a file?</p>
<p>I havn't been able to figure out how to convert the string <code>this.buffer</code> into a <code>array of byte</code> that I can then write using <code>Response.BinaryWrite</code> without writing to a file first.</p>
http://stackoverflow.com/questions/1712211/write-binary-data-using-javascript-on-the-server/1712309#17123090Answer by alumb for Write binary data using javascript on the server. alumb2009-11-11T00:54:36Z2009-11-11T00:54:36Z<p>My solution was to use VBScript.</p>
<p>replace the above code with:</p>
<pre><code>Response.BinaryWrite(StringToMultiByte(this.buffer));
</code></pre>
<p>and add this to the end of the file:</p>
<pre><code><script language="vbscript" runat="server">
function StringToMultiByte(S)
Dim i, MultiByte
For i=1 To Len(S)
MultiByte = MultiByte & ChrB(Asc(Mid(S,i,1)))
Next
StringToMultiByte = MultiByte
End function
</script>
</code></pre>
http://stackoverflow.com/questions/326905/retrive-unicode-using-asp-from-sqlserver-20051retrive unicode using asp from sqlserver 2005alumb2008-11-28T23:36:56Z2009-11-11T00:32:16Z
<p>I'm using the following code to retrieve a message from the database and then write it out to a html page: </p>
<pre><code>Dim strDSN, cnn, cmd
strDSN = "Driver={SQL Server};" & "Server=(local)\sql2k5;" & ...
set cnn = Server.CreateObject("ADODB.Connection")
cnn.ConnectionString = strDSN
cnn.CursorLocation = adUseClient
cnn.Open
set cmd = Server.CreateObject("ADODB.Command")
set cmd.ActiveConnection = cnn
cmd.CommandText = "select Message from tblRecipients where ID = 72"
cmd.CommandType = adCmdText
set getRecordset = Server.CreateObject("ADODB.Recordset")
getRecordset.Open cmd, , adOpenKeyset, adLockReadOnly
Response.write getRecordset("Message")
</code></pre>
<p>however all I get is "???????". I checked it wasn't the browser, that is what is actually written out. </p>
<p>to insert the message I ran
update tblRecipients set Message = N'Добре' where ID = 72
in SQL server manager.</p>
<p>Any help on how to get it to display properly?</p>
http://stackoverflow.com/questions/326905/retrive-unicode-using-asp-from-sqlserver-2005/1712234#17122340Answer by alumb for retrive unicode using asp from sqlserver 2005alumb2009-11-11T00:32:16Z2009-11-11T00:32:16Z<p>Solution:
Man, this was a weird one. The problem was that the actual ASP file was encoded in ANSI. Apparently this is what encoding is used when the file is passed to the client (kinda makes sense if you remember that an asp file is just a file being passed to the client that is modified slightly by the asp engine). The solution was to change the encoding of the ASP file to utf-8. Thus, when the utf-8 characters are written into the file on its way to the client, they match the encoding of the rest of the file and are read by the browser correctly. </p>
<p>Hope this helps the next person.<br>
Cheers,<br>
Andy.</p>
http://stackoverflow.com/questions/357643/representing-repetitive-dates6Representing repetitive datesalumb2008-12-10T21:17:23Z2009-11-11T00:30:57Z
<h2>Repetitive Dates:</h2>
<p>Billing cycles come in a lot of different formats, for example: "the first of the month", "third Friday of the month", or "first weekday on or after 21st day after the 13th of the month" (thanks visa!). My goal is to be able to represent these different billing cycles in one easily parsed database text field. </p>
http://stackoverflow.com/questions/357643/representing-repetitive-dates/1712228#17122280Answer by alumb for Representing repetitive datesalumb2009-11-11T00:30:57Z2009-11-11T00:30:57Z<h2>Current solution: </h2>
<pre><code>YYYY/MM/DD+YY/MM/DD+DOW
</code></pre>
<ul>
<li>all blocks (delimited by <code>+</code>) are optional as well as all parts of each block.</li>
<li>first block denotes the starting date
<ul>
<li>if blank - denotes today</li>
<li>if missing portion - denotes all... ie "//12" would denote the 12th of the month every month.</li>
<li>negative denotes counting from the end of the period.. ie "//-1" denotes the last day of the month</li>
<li>overruns are carried into the next month ie "//40" would be 40 days after the first of the month</li>
</ul></li>
<li>second block denotes the change in date between repetitions
<ul>
<li>if blank - set date (from first block)</li>
<li>Add present portions - ie "/1/" means every month after the given starting date</li>
</ul></li>
<li>third block denotes the day of the week the calculated date should be moved to
<ul>
<li>available are <code>[m,t,w,r,f,s,d,b]</code> (7 days of the week, "business day")</li>
</ul></li>
</ul>
<h2>Calculation:</h2>
<ul>
<li>Calculation start on the date specified in the first block, filling in the missing portions with the date the record is added. </li>
<li>the DOW is then added to get a valid starting date. This is the first date of the event.</li>
<li>the next date is calculated by adding the second block to the last calculated first block and adding the DOW to get the next date.</li>
</ul>
<h2>Examples:</h2>
<ul>
<li>on march 12th, 2008 - "2008/3/12"</li>
<li>the first of the month every month - "//1+/1/"</li>
<li>third Friday of the month every month - "//21+/1/+f"</li>
<li>first weekday on or after 21st day after the 13th of the month - "//34+/1/+b"</li>
<li>every 2 weeks from today - "+//14"</li>
<li>last day of every second month starting with march - "/3/-1+/2/"</li>
</ul>
http://stackoverflow.com/questions/1591561/looking-for-a-good-embedable-discussion-thread1Looking for a good embedable discussion threadalumb2009-10-19T22:48:50Z2009-10-19T22:59:33Z
<p>I'd like to embed a discussion thread on a website. Doesn't need to be anything complicated, just need to be able to post comments. Threading would be nice, but isn't strictly necessary. Google wave would be perfect, except most people don't have wave accounts yet. Is there anything else out there that I can embed on a page that would facilitate a single thread of discussion?</p>
http://stackoverflow.com/questions/134388/where-do-you-do-your-validation-model-controller-or-view2Where do you do your validation? model, controller or viewalumb2008-09-25T16:35:01Z2009-09-16T15:27:04Z
<p>Where do you put user input validation in a web form application?</p>
<ol>
<li>View: Javascript client side</li>
<li>Controller: Server side language (C#...)</li>
<li>Model: Database (stored procedures or dependencies) </li>
</ol>
<p>I think there is validation required by each level:</p>
<ol>
<li>Did the user input a sane value
<ul>
<li>are dates actual dates, are numbers actualy numbers ...</li>
</ul></li>
<li>Do all of the checks in 1. again plus checks for malicious attacks(IE XSS or SQL injection)
<ul>
<li>The checks done in 1. are mainly to avoid a server round trip when the user makes a mistake.</li>
<li>Since they are done on the client side in javascript, you can't trust that they were run. Validating these values again will stop some malicious attacks.</li>
</ul></li>
<li>Are dependencies met (ie. did the user add a comment to a valid question)
<ul>
<li>A good interface makes these very hard to violate. If something is caught here, something went very wrong.</li>
</ul></li>
</ol>
<p>[inspired by <a href="http://stackoverflow.com/questions/134253/how-many-of-you-do-3-tier-design#134300">this response</a>]</p>
http://stackoverflow.com/questions/1046810/using-jslint-in-notepad/1046826#10468266Answer by alumb for Using JSLint in Notepad++alumb2009-06-26T00:23:14Z2009-06-26T00:23:14Z<p>I have managed to get two lint programs to run using the <a href="http://notepad-plus.sourceforge.net/" rel="nofollow">notepad++</a>'s <a href="http://sourceforge.net/project/showfiles.php?group_id=189927&package_id=224034" rel="nofollow">NppExec</a> Plugin.</p>
<p>The NppExec plugin is usually installed by default and can be found under plugins -> NppExec. (Using NppExec 0.3 RC1 and Notepad++ 5.1+).
<br/><br/></p>
<h2>1) JSLint</h2>
<p>first download the <a href="http://www.jslint.com/wsh/index.html" rel="nofollow">WSH version of jslint</a> from <a href="http://www.jslint.com" rel="nofollow">http://www.jslint.com</a>.<br />
Modify the last part of the file as follows:</p>
<pre><code>(function() {
if(!JSLINT(WScript.StdIn.ReadAll(),{passfail:false})) {
var e;
for(var i in JSLINT.errors) {
e=JSLINT.errors[i];
WScript.StdOut.WriteLine('Lint at line '+(e.line+1)+' character '+(e.character+1)+': '+e.reason);
WScript.StdOut.WriteLine(' '+(e.evidence||'').replace(/^\s*(\S*(\s+\S+)*)\s*$/,"$1"));
}
WScript.Quit(1);
}
}());
</code></pre>
<p><a href="http://lynet.ca/~alumb/jslint/jslint.js" rel="nofollow">(Pre-modified version here)</a><br />
This causes JSLint to output all of the errors, not just the first one.</p>
<p>Next, Notepad++'s NppExec doesn't allow the use of StdIn so I wrote a <a href="http://lynet.ca/~alumb/jslint/jslint.bat" rel="nofollow">batch file</a> to actually execute the command.<br />
This also allowed me to add a config file that is inserted before all javascript files. The options can be seen <a href="http://www.jslint.com/lint.html#options" rel="nofollow">here</a>.
The batch file looks like this: </p>
<pre><code>@copy /b "C:\Program Files\jslint\conf.txt"+%1 "C:\Program Files\jslint\lastoutput.txt" > temp.txt
@cscript /Nologo "C:\Program Files\jslint\jslint.js" < "C:\Program Files\jslint\lastoutput.txt"
</code></pre>
<p>You may need to modify the paths depending on where you put the jslint.js file.
The <a href="http://lynet.ca/~alumb/jslint/conf.txt" rel="nofollow">conf.txt</a> file looks like this: </p>
<pre><code>/*jslint forin:true*/
</code></pre>
<p>Make sure there is no return carriage at the end of this line. If there is a return carriage all the lines counts will be off by one. </p>
<p>Finally, the command I entered into NppExec is:</p>
<pre><code>"C:\Program Files\jslint\jslint.bat" "$(FULL_CURRENT_PATH)"
</code></pre>
<p><br/></p>
<h2>2) Javascript Lint</h2>
<p><a href="http://www.javascriptlint.com/" rel="nofollow">Javascript lint</a> is a slightly less strict parser and was much easier to implement. </p>
<p>First grab a copy of the windows version from <a href="http://www.javascriptlint.com/download/" rel="nofollow">http://www.javascriptlint.com/download/</a> and unzip it.
Then the NppExec command is:</p>
<pre><code>"C:\Program Files\JavascriptLint\jsl.exe" -conf "C:\Program Files\JavascriptLint\jsl.default.conf" -process "$(FULL_CURRENT_PATH)"
</code></pre>
<p>(note: Most instructions for Javascript Lint will say to add "pauseatend" to the end of the command, I found this caused problems in Notepad++ so I left it off)</p>
<p>Hope this helps someone,<br />
Cheers,<br />
Andy.</p>
http://stackoverflow.com/questions/890841/access-document-of-new-window-in-chrome2Access document of new window in chromealumb2009-05-21T00:05:25Z2009-05-21T00:50:22Z
<p>My goal is to submit a form in a new window. I'm using the following code:</p>
<pre><code>var xmlWindow = window.open("getXML.htm");
xmlWindow.document.getElementById("getXML").action = "getData.asp";
xmlWindow.document.getElementById("getXML").method = "post";
xmlWindow.document.getElementById("getXML").innerHTML = "<input type='hidden' name='moduleID' value='ex1'/>";
xmlWindow.document.getElementById("getXML").submit();
</code></pre>
<p>This works fine in IE and Firefox, but in chrome the xmlWindow.document.getElementById("getXML") is null. Any suggestions?</p>
<p>for reference here is getXML.htm:</p>
<pre><code><html>
<head>
<title>getXML</title>
</head>
<body>
<form id="getXML" name="getXML">
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/822547/how-do-i-generate-an-xml-file-and-allow-the-user-to-save-it-locally-using-javascr0how do I generate an xml file and allow the user to save it locally using javascript?alumb2009-05-04T23:04:14Z2009-05-05T00:03:24Z
<p>I am generating a XMl document via JavaScript and need to prompt the user to save it to their local machine. </p>
<p>This is the code I have at the moment: </p>
<pre><code>var xmlWindow = window.open("", "");
xmlWindow.document.write("<node>data</node>");
</code></pre>
<p>This writes the xml to a new window which the user can then hit file->save to download. </p>
<ol><li>Is there any more elegent way of doing this?</li><li>Is there any way to set the mimeType of the new window so the xml displays properly?</li><li>is there any way to specify the title so when the user hits save, the file name is set correctly?</li></ol>
<p>note: needs to be compatible with most brosers (IE6, IE7, FF, Chrome).</p>
http://stackoverflow.com/questions/809851/is-it-possible-to-intercept-the-file-from-a-input-typefile-in-javascript2Is it possible to intercept the file from a <input type=file> in javascript?alumb2009-05-01T01:16:38Z2009-05-01T06:55:25Z
<p>Is it possible to read the content of a file that has been selected with a file input control? I wish to do something like:</p>
<pre><code><input type="file" id="fileInput" onblur="readFile(this)"/>
<script language="javascript">
function readFile(file) {
document.write(file);
}
</script>
</code></pre>
<p>Is anything like this possible? or does the file upload just send the file to the server. </p>
http://stackoverflow.com/questions/735011/ie7-display-oddity-example-attached/736490#7364900Answer by alumb for IE7 display oddity (example attached)alumb2009-04-10T01:59:20Z2009-04-10T01:59:20Z<p>It would seem that IE is not picking up the styles. If I open the page in chrome, the "float:left" style appears on the description div. however, in IE this is not the case. </p>
<p>You currently have your includes in a div in the body of the document. If it is possible try moving these into the head. I'm talking about the link and script tags directly descendant of div id="pageHead".</p>
<p>(I am using IE6 and the developer toolbar to get this information)</p>
http://stackoverflow.com/questions/722294/how-do-i-create-two-frames-with-no-space-between-them/722324#7223240Answer by alumb for How do I create two frames with no space between them?alumb2009-04-06T17:03:44Z2009-04-06T17:03:44Z<p>Add border=0 to your frameset tag. </p>
http://stackoverflow.com/questions/722252/javascript-cant-render-this-number-correctly-3494793310847464221/722297#7222972Answer by alumb for Javascript can't render this number correctly: 3494793310847464221 alumb2009-04-06T16:54:47Z2009-04-06T16:54:47Z<p>One possible solution is to use a BigInt library such as: <a href="http://www.leemon.com/crypto/BigInt.html" rel="nofollow">http://www.leemon.com/crypto/BigInt.html</a></p>
<p>This will allow you to store integers of arbitrary precision, but it will not be as fast as standard arithmetic. </p>
http://stackoverflow.com/questions/687992/2-column-full-height-layout-in-ie612 column full height layout in IE6alumb2009-03-26T23:55:54Z2009-03-27T20:33:46Z
<p>So I am trying to replicate this in IE6: <a href="http://lynet.ca/~alumb/layout.html" rel="nofollow">http://lynet.ca/~alumb/layout.html</a><br />
It works perfectly in FF and Chrome, but fails miserably in IE6. Any suggestions?</p>
<p>Here is the full set of requirements:</p>
<pre><code>+-----------------------------+
| NavBar |
|-----------------------------|
|Menu | Content |
| | |
| | |
| | |
| | |
| | |
| | |
+-----------------------------+
</code></pre>
<ul>
<li>NavBar is a set height in EM (say 2em)</li>
<li>Menu is a set width in EM (say 10em) and fills to the bottom of the page</li>
<li>There should be no global page scrollbar</li>
<li>menu must scroll in place and not cover the navbar (like overflow:scroll)</li>
<li>content is an iFrame that fills the full space available.</li>
<li>layout must survive resising the browser</li>
</ul>
<p>I have tried css, but it results in a crazy amount of css and I still can't get the iframe to fill the space correctly.<br />
I have tried tables, but I can't get the menu to scroll in the right way.<br />
The only solution I have involves frames, but this is not really the route I want to go. </p>
<p><hr /></p>
<p>Solution:<br />
So after about 36 hours of bashing at it, I finally have a solution. The only way I could get this to work was with table based layouts. However, there is a quirk in Firefox that causes height:100% to be calculated differently than in every other browser, so I also had to add the position:fixed styling. This is mostly ignored by IE6 which falls back on the table based layout. </p>
<p>An example of the final layout can be seen here: <a href="http://lynet.ca/~alumb/working.html" rel="nofollow">http://lynet.ca/~alumb/working.html</a></p>
http://stackoverflow.com/questions/486576/frozen-table-header-inside-scrollable-div/498313#4983134Answer by alumb for Frozen table header inside scrollable divalumb2009-01-31T05:10:31Z2009-01-31T05:10:31Z<p>Here is a basic solution using javascript: </p>
<pre><code>function position(table) {
table.rows[0].style.position="absolute";
table.rows[0].style.top="0px";
table.style.marginTop = table.rows[0].clientHeight/1.2;
var widths = Array();
for(var i = 0; i < table.rows[0].cells.length; i++) {
widths[i] = max(table.rows[0].cells[i].clientWidth, table.rows[1].cells[i].clientWidth);
}
for(var row = 0; row < table.rows.length; row++) {
for(var col = 0; col < widths.length; col ++) {
table.rows[row].cells[col].style.width = widths[col] + "px";
}
}
}
function max(num1, num2) { return (num1 > num2) ? num1 : num2; }
</code></pre>
<p>You can see an example in action here: <a href="http://lynet.ca/~alumb/table.htm" rel="nofollow">http://lynet.ca/~alumb/table.htm</a></p>
http://stackoverflow.com/questions/142058/xsl-relative-path-for-xslimport-or-xslinclude1Xsl relative path for xsl:import or xsl:includealumb2008-09-26T21:20:35Z2009-01-23T20:56:58Z
<p>I am trying to use VBSctipt to do an xslt transform on an xml object.<br />
The xsl file I'm translating includes the <code><xsl:import href="script.xsl"/></code> directive. If I use the absolute href (<a href="http://localhost/mysite/script.xsl" rel="nofollow">http://localhost/mysite/script.xsl</a>) it imports the style sheet fine; however, if I use the relative path (script.xsl) it reports "resource not found". I need to be able to port this amongst a set of machines, so I need to be able to use the relative uri. Any suggestions?</p>
<p>notes:</p>
<ul>
<li>VBscript file is at <a href="http://localhost/myscript.asp" rel="nofollow">http://localhost/myscript.asp</a></li>
<li>first xsl file is at <a href="http://localhost/mysite/styles.xsl" rel="nofollow">http://localhost/mysite/styles.xsl</a></li>
<li>second xsl file is at <a href="http://localhost/mysite/script.xsl" rel="nofollow">http://localhost/mysite/script.xsl</a></li>
<li>using the relative path mysite/script.xsl also does not work.</li>
</ul>
<p>Addendum:</p>
<p>Thanks everyone for their answers but the more I dig into the code that is doing this, the stranger it is. myscript.asp is a rather unusual compilation of code. What happens is styles.xsl is included in the html output of myscript.asp as a xml chunk (<code><xml src=...></code>) and then that chunk is loaded as a stylesheet, using vbscript, on the client side. This stylesheet is then used to <code>transform</code> a xml chunk that is retrieved via xmlhttp. So the problem is the context of styles.xsl is the html on the client side and has no relation to where script.xsl is. </p>
<p>First Attempt:</p>
<p>I tried including script.xsl as another xml chunk and changing the import statement in every way I could imagine but without success. </p>
<p>Final solution:</p>
<p>Since the absolute url for includeing script.xsl worked from the beginning, my final solution was to convert style.xsl to style.asp with the correct doctype. In this file I was then able to retrieve the server name, protocol and path and echo them into the right place in the import statement using asp. Then, when this file got included in mysscript.asp, it had the correct absolute url for the server. This is a bit of a hack but the only way I found to solve this rather convoluted situation.</p>
http://stackoverflow.com/questions/422241/stop-and-start-running-again-processes-in-linux-using-c/422371#4223710Answer by alumb for Stop and start running again processes in Linux using C++alumb2009-01-07T22:09:40Z2009-01-07T22:09:40Z<p>What you are looking for is called blocking. Process B should block on a call from process A and Process A should block on a call from process B. If a processes is blocked (waiting for the call from the other process) it sits idly in the background and only wakes up when it receives a message. </p>
<p><a href="http://linux.die.net/man/2/select" rel="nofollow">Select</a> is probably the function you are looking for. </p>
http://stackoverflow.com/questions/390238/display-a-single-record-row-as-a-single-column/390259#3902591Answer by alumb for Display a single record (row) as a single columnalumb2008-12-23T22:34:00Z2008-12-23T22:34:00Z<p>Another simple way:</p>
<p>select 'FieldA', FieldA as Value from table<br />
union<br />
select 'FieldB', FieldB as Value from table</p>
<p>but pivots are really what you want to try for.</p>
http://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file2Type double byte character into vbscript filealumb2008-09-25T18:06:34Z2008-11-05T14:33:22Z
<p>I need to convert → (&rarr) to a symbol I can type into a ANSI VBScript file. I am writing a script that translates a select set of htmlcodes to their actual double byte symbols using a regex. Many languages accomplish this using "\0x8594;"... what is the equivelent in VBScript?</p>
http://stackoverflow.com/questions/250970/detect-a-error-object-doesnt-support-this-property-or-method0detect a 'Error: Object doesn't support this property or method'alumb2008-10-30T17:09:55Z2008-10-31T03:44:37Z
<p>The object I'm working on is instantiated in javascript, but used in VBSctipt. In one code path the variable M.DOM.IPt is defined and has a value, however, in the other it is not. I need to detect if it has been defined or not. I checked that M.DOM is defined and accessable in both code paths. Every test I have tried simply results in <code>Error: Object doesn't support this property or method</code>. </p>
<p>I have tried:</p>
<ul>
<li><code>IsEmpty(M.DOM.IPt)</code></li>
<li><code>M.DOM.IPt is Nothing</code></li>
<li><code>isNull(M.DOM.IPt)</code></li>
</ul>
<p>Is there any way to detect the variable isn't defined and avoid the error?</p>
<p>note: I can put <code>On Error Resume Next</code> in and it will simply ignore the error, but I actually need to detect it and conditionally do something about it.</p>
http://stackoverflow.com/questions/34029/date-based-sum-in-excel-google-docs-spreadsheets2Date based sum in Excel / Google Docs spreadsheetsalumb2008-08-29T05:57:00Z2008-10-26T21:00:57Z
<p>I have a bunch of rows with a date and a dollar amount (expenses).
I want to produce a list of the days of the month and what the balance of the expenses is. So, for example the 5th entry in the list would be 8/5/2008 and the sum of all the expenses that occurred on or before 8/5/2008. Approximately this is =sumif(D4:D30-A5,">0",E4:E30) but of course that doesn't work (where the source data is dates in D4:D30 and the expenses are in E4:E30).</p>
<p>Notes</p>
<ul>
<li>source data can't be sorted for various reasons.</li>
<li>must work in google spreadsheets, which is a fairly complete subset of excel's functions.</li>
</ul>
http://stackoverflow.com/questions/220142/simplest-way-to-print-out-the-contents-of-a-text-field-in-mssql1Simplest way to print out the contents of a text field in mssqlalumb2008-10-20T22:18:43Z2008-10-21T21:11:55Z
<p>I need to output the contents of a text field using MS Query Analyzer. I have tried this:</p>
<pre><code>select top 1 text from myTable
</code></pre>
<p>(where text is a <code>text</code> field)</p>
<p>and</p>
<pre><code>DECLARE @data VarChar(8000)
select top 1 @data = text from myTable
PRINT @data
</code></pre>
<p>The first one prints only the first 2000 or so characters and the second only prints the first 8000 characters. Is there any way to get all of the text?</p>
<p>Notes:</p>
<ul>
<li>must work with MSSQL7</li>
</ul>
http://stackoverflow.com/questions/220152/best-workstation-furniture-for-programming/220172#2201729Answer by alumb for Best workstation furniture for programming?alumb2008-10-20T22:31:17Z2008-10-20T22:31:17Z<p>Joel talks about desks here: <a href="http://www.joelonsoftware.com/items/2008/06/06.html" rel="nofollow">http://www.joelonsoftware.com/items/2008/06/06.html</a></p>
<p>Jeff talks about chairs here: <a href="http://www.codinghorror.com/blog/archives/001146.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001146.html</a></p>
http://stackoverflow.com/questions/150977/perform-regex-replace-in-a-sql-query1Perform regex (replace) in a sql queryalumb2008-09-29T22:16:39Z2008-10-08T15:38:56Z
<p>What is the best way to replace all '&lt' with <code>&lt;</code> in a given database column? Basically perform <code>s/&lt[^;]/&lt;/gi</code></p>
<p>Notes:</p>
<ul>
<li>must work in MSSQL 2000</li>
<li>Must be repeatable (and not end up with <code>&lt;;;;;;;;;;</code>)</li>
</ul>
http://stackoverflow.com/questions/1875154/extended-extjs-class-cant-find-custom-listener-function-oe-is-undefined/1875522#1875522Comment by alumb on Extended ExtJS Class can't find custom listener function - "oe is undefined"alumb2009-12-09T17:56:41Z2009-12-09T17:56:41ZI had no idea about the Ext.id function. I still think the best solution would be to re-use the same object, but I'll defiantly use this function for other things.http://stackoverflow.com/questions/1875154/extended-extjs-class-cant-find-custom-listener-function-oe-is-undefined/1875215#1875215Comment by alumb on Extended ExtJS Class can't find custom listener function - "oe is undefined"alumb2009-12-09T17:54:00Z2009-12-09T17:54:00Zyea... bmoeskau is correct. that would be a better solution. http://stackoverflow.com/questions/1732149/writing-out-a-null-in-javascriptComment by alumb on writing out a null in javascriptalumb2009-11-13T22:41:56Z2009-11-13T22:41:56ZNot using a database. I'm writing out binary data for a pdf.... so it has to be the null character.http://stackoverflow.com/questions/1712211/write-binary-data-using-javascript-on-the-server/1717188#1717188Comment by alumb on Write binary data using javascript on the server. alumb2009-11-13T21:52:26Z2009-11-13T21:52:26Zsee: <a href="http://stackoverflow.com/questions/1732149/writing-out-a-null-in-javascript" rel="nofollow" title="writing out a null in javascript">stackoverflow.com/questions/1732149/…</a>http://stackoverflow.com/questions/1712211/write-binary-data-using-javascript-on-the-server/1717188#1717188Comment by alumb on Write binary data using javascript on the server. alumb2009-11-12T17:04:57Z2009-11-12T17:04:57ZCould you be more clear on "going to kill your server"?
I did try the Response.write method, but it created corrupt PDFs. I suspect this is due to how the images are encoded and output as text. I'd bet that Response.write does some sort of encoding which is corrupting the image data as it is written to the output buffer. http://stackoverflow.com/questions/1607721/extjs-remove-item-from-formpanelComment by alumb on ExtJS remove item from FormPanelalumb2009-10-22T23:16:17Z2009-10-22T23:16:17ZHow do you know which Field set you need to remove?http://stackoverflow.com/questions/1591561/looking-for-a-good-embedable-discussion-thread/1591580#1591580Comment by alumb on Looking for a good embedable discussion threadalumb2009-10-19T23:00:53Z2009-10-19T23:00:53ZNabble is certainly in the right area. It would be nice if you could post without having to go to another page. http://stackoverflow.com/questions/822547/how-do-i-generate-an-xml-file-and-allow-the-user-to-save-it-locally-using-javascr/822715#822715Comment by alumb on how do I generate an xml file and allow the user to save it locally using javascript?alumb2009-05-05T01:11:05Z2009-05-05T01:11:05Zunfortunatlly, this is not possible. This has to be all client side. I don't control the server side. http://stackoverflow.com/questions/822547/how-do-i-generate-an-xml-file-and-allow-the-user-to-save-it-locally-using-javascr/822612#822612Comment by alumb on how do I generate an xml file and allow the user to save it locally using javascript?alumb2009-05-04T23:32:52Z2009-05-04T23:32:52ZI'm not actually trying to write it locally without the user's intervention. Just produce a 'save file' dialog box as if the file had come from a server. http://stackoverflow.com/questions/809851/is-it-possible-to-intercept-the-file-from-a-input-typefile-in-javascript/809871#809871Comment by alumb on Is it possible to intercept the file from a <input type=file> in javascript?alumb2009-05-01T04:16:22Z2009-05-01T04:16:22Zno. Oil and Gas industry. Our firm is still set on IE6 (for reason I'm not sure of (read "crazy IT department")) and we have to be able to deploy internally as well as to clients. http://stackoverflow.com/questions/809851/is-it-possible-to-intercept-the-file-from-a-input-typefile-in-javascript/809871#809871Comment by alumb on Is it possible to intercept the file from a <input type=file> in javascript?alumb2009-05-01T01:31:38Z2009-05-01T01:31:38Znope, 95% will be IE (probably 6) and the rest are unknown. So it needs to be cross browser.http://stackoverflow.com/questions/809851/is-it-possible-to-intercept-the-file-from-a-input-typefile-in-javascript/809871#809871Comment by alumb on Is it possible to intercept the file from a <input type=file> in javascript?alumb2009-05-01T01:27:52Z2009-05-01T01:27:52Zthis is a good suggestion, unfortunately, I need to be able to run completely on the client side. This app may be distributed on a CD.http://stackoverflow.com/questions/759374/browser-independent-javascript-debugger/759420#759420Comment by alumb on Browser Independent JavaScript debugger?alumb2009-04-17T16:28:18Z2009-04-17T16:28:18ZVS 2003 also works decently. http://stackoverflow.com/questions/724103/how-to-create-a-modal-popup-using-javascript/724109#724109Comment by alumb on How to create a modal popup using javascriptalumb2009-04-07T04:10:45Z2009-04-07T04:10:45ZExt.js also has one.http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/1210#1210Comment by alumb on What JavaScript library would you choose for a new project and why?alumb2009-04-06T17:32:19Z2009-04-06T17:32:19Za) the OP didn't state it had to be free. b) It is released under GPL3, which is free. c) You do have to pay to get the nightly builds from the repo, but all the stable releases are available for free.