User Dan Williams - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T19:24:57Zhttp://stackoverflow.com/feeds/user/4230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon839What's your favorite "programmer" cartoon?Dan Williams2008-09-17T15:34:11Z2009-11-27T04:59:34Z
<p>Personally I like this one:</p>
<p><img src="http://www.jeffpalm.com/fox/fox.jpg" alt="alt text" /></p>
<p>P.S. Do not hotlink the cartoon without the site's permission please. </p>
http://stackoverflow.com/questions/62618/what-is-the-best-way-to-merge-mp3-files2What is the best way to merge mp3 files?Dan Williams2008-09-15T13:02:39Z2009-11-18T22:05:49Z
<p>I've got many, many mp3 files that I would like to merge into a single file. I've used the command line method</p>
<pre><code>copy /b 1.mp3+2.mp3 3.mp3
</code></pre>
<p>but it's a pain when there's a lot of them and their namings are inconsistent. The time never seems to come out right either.</p>
http://stackoverflow.com/questions/1125280/setting-the-default-page-for-asp-net-visual-studio-server-configuration0Setting the default page for ASP.NET (Visual Studio) server configurationDan Williams2009-07-14T13:12:09Z2009-07-14T14:12:29Z
<p>When I build and run my application I get a directory listing in the browser (<strong>also happens for sub folders</strong>), and I have to click on Index.aspx. It's making me crazy.</p>
<p>Visual Studio 2008
ASP.NET Development Server 9.0.0.0</p>
http://stackoverflow.com/questions/332988/get-iis6-to-serve-json-files-inc-post-get/1120015#11200150Answer by Dan Williams for Get IIS6 to serve JSON files (inc. POST,GET)?Dan Williams2009-07-13T15:07:11Z2009-07-13T15:07:11Z<p>Make sure you have Active Server Pages Allowed in the Web Service Extensions section of your IIS configuration.</p>
<p>IIS Manager -> (local computer) -> Web Service Extensions -> Active Server Pages</p>
http://stackoverflow.com/questions/55360/dopostback-is-not-working-in-firefox2__doPostBack is not working in firefoxDan Williams2008-09-10T21:28:13Z2009-06-16T22:46:40Z
<p>The __doPostBack is not working in firefox 3 (have not checked 2). Everything is working great in IE 6&7 and it even works in Chrome??</p>
<p>It's a simple asp:LinkButton with an OnClick event</p>
<pre><code><asp:LinkButton ID="DeleteAllPicturesLinkButton" Enabled="False" OnClientClick="javascript:return confirm('Are you sure you want to delete all pictures? \n This action cannot be undone.');" OnClick="DeletePictureLinkButton_Click" CommandName="DeleteAll" CssClass="button" runat="server">
</code></pre>
<p>The javascript confirm is firing so I know the javascript is working, it's specirically the __doPostBack event. There is a lot more going on on the page, just didn't know if it's work it to post the entire page.</p>
<p>I enable the control on the page load event.</p>
<p>Any ideas?</p>
<p><hr /></p>
<p>I hope this is the correct way to do this, but I found the answer. I figured I'd put it up here rather then in a stackoverflow "answer"</p>
<p>Seems it had something to do with nesting ajax toolkit UpdatePanel. When I removed the top level panel it was fixed.</p>
<p>Hope this helps if anyone else has the same problem. I still don't know what specifically was causing the problem, but that was the solution for me.</p>
http://stackoverflow.com/questions/879675/show-hide-an-accordion-panel-in-jquery-when-clicking-edit-in-a-gridview/892826#8928261Answer by Dan Williams for Show/Hide an accordion panel in Jquery when clicking edit in a gridview?Dan Williams2009-05-21T13:02:36Z2009-05-21T13:02:36Z<pre><code>ClientScript.RegisterStartupScript
(Me.GetType(), "ClientScript", "$(document).ready(function(){$('#accordion').accordion('activate', parseInt(theIndex));}", True)
</code></pre>
<p>So, I haven't tried this, but it seems like it should work. But you might have to play with it a little, theIndex will need to variable passed in from the grid row.</p>
http://stackoverflow.com/questions/174702/visual-studio-2005-not-loading0Visual Studio 2005 Not LoadingDan Williams2008-10-06T15:14:42Z2009-05-20T18:17:35Z
<p>After Visual Studio 2005 displays the splash screen it locks up on me. No error, no cpu utilization, just a frozen splash screen. I've tried it in both /safemode and /resetsettings</p>
<p>I'm sure it's one of the services on my machine, just wonder if anyone else has had the problem and can help me with the hunt?</p>
<p>BTW, it's works in a VM in the same machine.</p>
<p>Update: I finally tried something new, I started VS2005 in Windows compatibility 2000 mode, it starts then shuts down immediately. I reset it to not run in compatibility mode and it starts right up. grrrrr</p>
<p>I think it might be a profile issue, but the root cause is still unresolved.</p>
http://stackoverflow.com/questions/648576/how-do-i-unit-test-private-functions-from-a-separate-project-in-vb-net/761344#7613440Answer by Dan Williams for How do I unit test private functions from a separate project in VB .NET?Dan Williams2009-04-17T17:20:07Z2009-04-17T17:20:07Z<p>From a quick google search: <a href="http://www.codeproject.com/KB/cs/testnonpublicmembers.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/testnonpublicmembers.aspx</a></p>
<p>The basics: (this is pasted from the code project site linked above)</p>
<pre><code> public static object RunStaticMethod(System.Type t, string strMethod,
object [] objParams)
{
BindingFlags eFlags =
BindingFlags.Static | BindingFlags.Public |
BindingFlags.NonPublic;
return RunMethod(t, strMethod,
null, aobjParams, eFlags);
} //end of method
public static object RunInstanceMethod(System.Type t, string strMethod,
object objInstance, object [] aobjParams)
{
BindingFlags eFlags = BindingFlags.Instance | BindingFlags.Public |
BindingFlags.NonPublic;
return RunMethod(t, strMethod,
objInstance, aobjParams, eFlags);
} //end of method
private static object RunMethod(System.Type t, string
strMethod, object objInstance, object [] aobjParams, BindingFlags eFlags)
{
MethodInfo m;
try
{
m = t.GetMethod(strMethod, eFlags);
if (m == null)
{
throw new ArgumentException("There is no method '" +
strMethod + "' for type '" + t.ToString() + "'.");
}
object objRet = m.Invoke(objInstance, aobjParams);
return objRet;
}
catch
{
throw;
}
} //end of method
</code></pre>
http://stackoverflow.com/questions/687081/vb-net-inserting-xml-nodes-into-an-existing-xml-document0VB.NET inserting xml nodes into an existing XML documentDan Williams2009-03-26T18:49:16Z2009-04-03T06:27:34Z
<p>I'm simply trying to merge 2 xml documents (adding nodes from one into the other). I've done some Google searching, and tried a few things, but I always get the same error "The node to be inserted is from a different document context"</p>
<p>I'm sure I'm missing something simple, just seems like this should not be that difficult.</p>
<p>Here's my code:</p>
<pre><code> Dim xmlDoc482 As XmlDocument = New XmlDocument
Dim xmlDoc486 As XmlDocument = New XmlDocument
Dim xmlDoc490 As XmlDocument = New XmlDocument
xmlDoc482.LoadXml(strSettlement482)
xmlDoc486.LoadXml(strSettlement486)
xmlDoc490.LoadXml(strSettlement490)
Dim xmlSummarysNode490 As XmlNode = xmlDoc486("Summarys")
Dim xmlSummaryNode482 As XmlNode = xmlDoc482("Summarys").LastChild
Dim xmlSummaryNode486 As XmlNode = xmlDoc486("Summarys").LastChild
Dim nodeDest As XmlNode
nodeDest = xmlDoc490.ImportNode(xmlSummaryNode482, True)
xmlSummarysNode490.AppendChild(nodeDest)
nodeDest = xmlDoc490.ImportNode(xmlSummaryNode486, True)
xmlSummarysNode490.AppendChild(nodeDest)
</code></pre>
http://stackoverflow.com/questions/698974/learning-audio-manipulation/699005#6990052Answer by Dan Williams for Learning Audio ManipulationDan Williams2009-03-30T21:03:59Z2009-03-30T21:03:59Z<p>The <a href="http://audacity.sourceforge.net/" rel="nofollow">Audacity</a> folks might be able to help. Getting involved with an open source project is a great way to help the community and get mentored on a new technology.</p>
http://stackoverflow.com/questions/687081/vb-net-inserting-xml-nodes-into-an-existing-xml-document/687306#6873060Answer by Dan Williams for VB.NET inserting xml nodes into an existing XML documentDan Williams2009-03-26T19:52:07Z2009-03-26T19:52:07Z<p>This works great, other then my stupid, stupid typo</p>
<p>This:</p>
<pre><code>Dim xmlSummarysNode490 As XmlNode = xmlDoc486("Summarys")
</code></pre>
<p>Should be This:</p>
<pre><code>Dim xmlSummarysNode490 As XmlNode = xmlDoc490("Summarys")
</code></pre>
<p>An element/node must be added using the document you're adding it to.</p>
http://stackoverflow.com/questions/491603/why-encrypt-query-strings-in-asp-net/491635#4916351Answer by Dan Williams for Why Encrypt Query Strings in ASP.NET?Dan Williams2009-01-29T13:44:16Z2009-01-29T13:44:16Z<p>If the encryption is done at a lower level in the application, or if it's a framework. It could be to ensure that the content is protected regardless of the implementation. It's still protected even if the developer decides not to use an SSL POST.</p>
http://stackoverflow.com/questions/491566/how-to-get-list-of-values-in-groupby-clause/491622#4916222Answer by Dan Williams for How to get list of values in GROUP_BY clause?Dan Williams2009-01-29T13:40:55Z2009-01-29T13:40:55Z<p>I think you're going to have to use a cursor (<a href="http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/50501;pt=50305" rel="nofollow">http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/50501;pt=50305</a>)</p>
http://stackoverflow.com/questions/473375/how-can-a-programmer-help-the-economy5How can a programmer help the economy? [closed]Dan Williams2009-01-23T15:47:38Z2009-01-23T16:10:05Z
<p>I think it's important that we all take responsibility in renewing the economy. But as a programmer what is the best way to do that? Is there a website for non-profits that need web sites/programming/whatever. I've been thinking about doing some volunteer work at the soup kitchen, but I think my time might be better spent for them as a programmer.</p>
<p>Many of us are losing their jobs, I'm very grateful that I still have one, and would like to try and help out some of the people that have lost theirs.</p>
<p><strong>I realize this isn't a programming question</strong>, but a question <strong>for</strong> programmers</p>
<p>Sorry about the sin of asking a nontechnical question I was just hoping there would be a site like this one, <a href="http://www.project4hire.com/" rel="nofollow">http://www.project4hire.com/</a>, but for volunteer work.</p>
http://stackoverflow.com/questions/470789/should-object-properties-be-filled-in-the-constructor0Should object properties be filled in the constructorDan Williams2009-01-22T21:04:39Z2009-01-22T23:47:58Z
<p>I'm designing a new application and I'm undecided if I should fill my object properties on the constructor</p>
<pre><code>Public Sub New(UserId as integer)
' get database values
dr = DataReader
Me.FirstName = dr.fields(0)
Me.LastName = dr.fields(1)
End Sub
</code></pre>
<p>Or create a factory with a method for each object type?</p>
<pre><code>Public Function getUser(UserId as integer) as User
Dim myUser as new User
' get database values
dr = DataReader
myUser.FirstName = dr.fields(0)
myUser.LastName = dr.fields(1)
return myUser
End Function
</code></pre>
<p>I realize that the code is rough, but I'm hoping it's enough to get my point across. I've see both implemented and not sure what the long term pros and cons are.</p>
<p>Specifically, I'm using VB.NET, if it matters.</p>
http://stackoverflow.com/questions/443210/conversion-between-different-units-of-measurement-in-sql-in-access/443272#4432720Answer by Dan Williams for Conversion between different units of measurement in SQL (in Access)Dan Williams2009-01-14T15:04:20Z2009-01-14T15:04:20Z<p>The user would have to provide you with the unit, and evey unit would have a type (weight, volume, etc.) Your "conversion table" would just need to include a baseline for every unit type. i.e. 8 oz to a cup, 128oz to a gallon. Knowing those two things you can convert cups to gallons.</p>
<p>Doing this in access in a single query is a different story. If you can do a little VBA, get cup to ounces in one call, then ounces to gallons in another, I think you'll have a much easier time.</p>
http://stackoverflow.com/questions/425044/how-to-estimate-a-programming-task-if-you-have-no-experience-in-it/425075#4250750Answer by Dan Williams for How to estimate a programming task if you have no experience in it.Dan Williams2009-01-08T17:10:10Z2009-01-08T17:10:10Z<p>can you give a range? 40-60 hours, something like that?</p>
<p>the smaller the tasks are the more difficult it is, if you can group them you'll have a little more "slop" as the errors may balance at the end of the project.</p>
<p>Look at any area you do have experience with and use if as a guide. "last time a needed to create a feature that changed the database it took me X". Good Luck.</p>
http://stackoverflow.com/questions/424412/how-to-stop-the-leading-0s-from-being-stripped-off-when-exporting-to-excel-from/424432#4244321Answer by Dan Williams for How to stop the leading 0's from being stripped off when exporting to excel from a datatable?Dan Williams2009-01-08T14:34:16Z2009-01-08T14:34:16Z<p>add a ' (single quote) to the front of the string.</p>
http://stackoverflow.com/questions/424233/suggest-me-mindtools-or-process-for-developer-brain/424302#4243020Answer by Dan Williams for Suggest me Mindtools or Process - For developer BRAIN.Dan Williams2009-01-08T13:54:20Z2009-01-08T13:54:20Z<p>The tool is not as relevant as the system you use to process the information.</p>
<p>I've been using <a href="http://en.wikipedia.org/wiki/Getting_Things_Done" rel="nofollow">GTD</a> for years now, and it's helped me to stay focused and keep my brain free to think about other things when I'm not programming.</p>
<p>I went through a million tools to do this kind of thing, none worked. Turned out it was my process for managing my thoughts that was the problem.</p>
<p>BTW, <a href="http://www.evernote.com" rel="nofollow">Evernote</a> is very good for just getting thoughts out.</p>
http://stackoverflow.com/questions/424224/i-want-to-start-coding-where-do-i-start/424272#424272-1Answer by Dan Williams for I want to start coding, where do I start?Dan Williams2009-01-08T13:46:23Z2009-01-08T13:46:23Z<p>I'd start with Microsoft Access. It will get you a base line for working with databases as well as input forms and reports.</p>
<p><a href="http://www.kexi-project.org/" rel="nofollow">Kexi</a> and <a href="http://www.openoffice.org/product/base.html" rel="nofollow">OpenOffice Base</a> are open source alternatives. You can get into scripting if you want to implement some advanced features.</p>
http://stackoverflow.com/questions/422207/setting-properties-on-anonymous-dom-elements-through-javascript/422233#4222330Answer by Dan Williams for Setting properties on anonymous DOM elements through JavaScript?Dan Williams2009-01-07T21:45:56Z2009-01-07T21:45:56Z<p>How about this?</p>
<pre><code><script>
function LoadElement(myDiv)
{
alert(this.myCustomAttribute);
}
</script>
<div onload="LoadElement(this)"></div>
</code></pre>
<p>not tested btw</p>
http://stackoverflow.com/questions/403934/all-code-in-one-file/403952#4039522Answer by Dan Williams for All code in one fileDan Williams2008-12-31T20:14:52Z2008-12-31T20:14:52Z<p>It's always a now verses then argument. If you're under the gun to get it done, do it. Source control will be a problem later, as with many things there's no black and white answer. You need to be responsible to both your deadline and the long term maintenance of the code.</p>
http://stackoverflow.com/questions/400743/vs2005-configure-fallback-dll/403390#4033900Answer by Dan Williams for VS2005 Configure "fallback" DLLDan Williams2008-12-31T16:34:01Z2008-12-31T16:34:01Z<p>Does the user select which DB version they are installing to? (I'm assume there's some kind of install process). Can you swap out the dll files in the bin folder on the install based on the selected database version?</p>
http://stackoverflow.com/questions/397723/how-to-programmatically-rename-movie-and-tv-show-files-in-an-itunes-library-for/397746#3977462Answer by Dan Williams for How to programmatically rename movie and TV show files in an iTunes library, for XBMC compatibility?Dan Williams2008-12-29T13:57:12Z2008-12-29T13:57:12Z<p>Not sure if you're on a Windows box but honestly if you can write even a little Javascript the <a href="http://developer.apple.com/sdk/itunescomsdk.html" rel="nofollow">iTunes COM API</a> is very easy to use.</p>
<p>Below is a sample of what it will look like. (this is NOT tested, so only use it as a reference.)</p>
<pre><code>var ITTrackKindFile = 1;
var iTunesApp = WScript.CreateObject("iTunes.Application");
var deletedTracks = 0;
var mainLibrary = iTunesApp.LibraryPlaylist;
var tracks = mainLibrary.Tracks;
var numTracks = tracks.Count;
var i;
var RenameTarget;
while (i > 0)
{
var currTrack = tracks.Item(numTracks);
// is this a file track?
if (currTrack.Kind == ITTrackKindFile)
{
RenameTarget = "Stuff from other properties"
currTrack.Name = RenameTarget; //
}
numTracks++;
}
</code></pre>
<p>Good Luck.</p>
http://stackoverflow.com/questions/273299/how-do-you-pull-yourself-out-of-a-programming-slump/396660#3966600Answer by Dan Williams for How do you pull yourself out of a programming 'slump'?Dan Williams2008-12-28T20:49:06Z2008-12-28T20:49:06Z<p>I think there were a lot of good suggestions about how to get through the slump. But I just wanted to mention how I survived one.</p>
<p><a href="http://www.davidco.com/" rel="nofollow">Getting Things Done, by David Allen</a> I'm sure that many people on SO have had some contact with GTD and it helped me stay productive even though I wasn't feeling productive.</p>
<p>This is NOT a permanent solution, although you may find it to be a permanent part of your life, as I have. It got so bad for me, I was in danger of loosing my job, just one more stress to add to the snowball.</p>
<p>I wish you good luck, and hope you follow up and let us know what worked for you.</p>
http://stackoverflow.com/questions/394146/displaying-polymorphic-classes/394156#3941566Answer by Dan Williams for Displaying polymorphic classes.Dan Williams2008-12-26T19:26:07Z2008-12-26T19:26:07Z<p>I don't think this will solve your problem of not needing to write the code, but you should be able to abstract the GUI logic from the data objects.</p>
<p>Look at a Visitor pattern (<a href="http://en.wikipedia.org/wiki/Visitor_pattern" rel="nofollow">http://en.wikipedia.org/wiki/Visitor_pattern</a>) it will allow you to add code to an existing object without changing the object itself. You can also change the visitor based on the platform.</p>
http://stackoverflow.com/questions/392098/how-to-make-combobox-in-winforms-readonly/392197#3921970Answer by Dan Williams for How to make Combobox in winforms readonlyDan Williams2008-12-24T20:42:10Z2008-12-24T20:42:10Z<p>Not sure if this is what you're looking for but...</p>
<p>Set the DropDownStyle = DropDownList</p>
<p>Then on the SelectedIndexChanged event</p>
<pre><code>If (ComboBox1.SelectedIndex <> 0)
{
ComboBox1.SelectedIndex = 0
}
</code></pre>
<p>This ugly part is that they will "feel" like they can change it. They might think this is an error unless you give them an alert telling them why they can't change the value.</p>
http://stackoverflow.com/questions/93326/which-ide-is-best-for-c/93343#933433Answer by Dan Williams for Which IDE is best for C++ ?Dan Williams2008-09-18T14:59:40Z2008-12-03T19:29:35Z<p><a href="http://www.bloodshed.net/devcpp.html" rel="nofollow">Bloodshead</a> if you're looking for something simple and easy to use, and Windows</p>
http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/338426#3384261Answer by Dan Williams for What's the best practice for Primary Keys in tables?Dan Williams2008-12-03T19:26:21Z2008-12-03T19:26:21Z<p>Natural verses artificial keys to me is a matter of how much of the business logic you want in your database. Social security number is a great example</p>
<p>"Each client in my database will, and must, have an SSN." Bam, done, make it the primary key and be done with it. Just remember when your business rules change you're burned.</p>
<p>I don't like natural keys myself, due to my experience with changing business rules. But if your sure it wont change, it might prevent a few critical joins.</p>
http://stackoverflow.com/questions/83914/how-to-update-a-field-with-random-data0How to update a field with random data?Dan Williams2008-09-17T14:37:28Z2008-10-08T21:57:12Z
<p>I've got a new varchar(10) field in a database with 1000+ records. I'd like to update the table so I can have random data in the field. I'm looking for a SQL solution.</p>
<p>I know I can use a cursor, but that seems inelegant.</p>
<p>MS-SQL 2000,BTW</p>
http://stackoverflow.com/questions/1125280/setting-the-default-page-for-asp-net-visual-studio-server-configuration/1125309#1125309Comment by Dan Williams on Setting the default page for ASP.NET (Visual Studio) server configurationDan Williams2009-07-14T14:07:22Z2009-07-14T14:07:22ZYup, that works for the start page, but when I browse to anything in a sub folder I get a folder listing again. http://stackoverflow.com/questions/1125227/what-server-should-i-use-for-online-counseling-project/1125244#1125244Comment by Dan Williams on What server should i use for Online Counseling Project ?Dan Williams2009-07-14T13:56:26Z2009-07-14T13:56:26ZI've been using EC2 for several months, fantastic solution for a "burstable" project. You can use their DB solution as well, if the design is simple enough (<a href="http://aws.amazon.com/simpledb/" rel="nofollow">aws.amazon.com/simpledb</a>)http://stackoverflow.com/questions/1125280/setting-the-default-page-for-asp-net-visual-studio-server-configuration/1125299#1125299Comment by Dan Williams on Setting the default page for ASP.NET (Visual Studio) server configurationDan Williams2009-07-14T13:50:11Z2009-07-14T13:50:11ZIt's working as expected for several of the other developers in my grouphttp://stackoverflow.com/questions/1125280/setting-the-default-page-for-asp-net-visual-studio-server-configuration/1125344#1125344Comment by Dan Williams on Setting the default page for ASP.NET (Visual Studio) server configurationDan Williams2009-07-14T13:24:29Z2009-07-14T13:24:29ZNope, I'm running the VS webdev server.http://stackoverflow.com/questions/1125280/setting-the-default-page-for-asp-net-visual-studio-server-configuration/1125299#1125299Comment by Dan Williams on Setting the default page for ASP.NET (Visual Studio) server configurationDan Williams2009-07-14T13:16:15Z2009-07-14T13:16:15ZYup, that works for the start page, but when I browse to anything in a sub folder I get a folder listing again.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoonComment by Dan Williams on What's your favorite "programmer" cartoon?Dan Williams2009-02-19T20:54:06Z2009-02-19T20:54:06ZRegardless of votes or topic or how bad you think the question is, posting the comment "please close" to ANY QUESTION is a bigger waste of bandwidth than the question you'd like closed, close it yourself, if you don't have the rep, down vote it. The entire point of voting is to avoid these debates.http://stackoverflow.com/questions/473375/how-can-a-programmer-help-the-economy/473387#473387Comment by Dan Williams on How can a programmer help the economy?Dan Williams2009-01-23T15:54:06Z2009-01-23T15:54:06Zthe question presumes that programmers have a specialized skill set, and their time would be more valuable spent using that skill.http://stackoverflow.com/questions/424224/i-want-to-start-coding-where-do-i-start/424272#424272Comment by Dan Williams on I want to start coding, where do I start?Dan Williams2009-01-08T17:01:02Z2009-01-08T17:01:02ZSometimes I just don't understand the neg scores. Is the suggestion of using google spreadsheets really 3 points better then my idea of using access?http://stackoverflow.com/questions/394146/displaying-polymorphic-classes/394156#394156Comment by Dan Williams on Displaying polymorphic classes.Dan Williams2008-12-26T19:31:15Z2008-12-26T19:31:15ZYeah, sorry, I didn't mean it to sound like that :)http://stackoverflow.com/questions/174702/visual-studio-2005-not-loading/174710#174710Comment by Dan Williams on Visual Studio 2005 Not LoadingDan Williams2008-10-06T15:20:31Z2008-10-06T15:20:31Zstill not working, good idea though.http://stackoverflow.com/questions/174702/visual-studio-2005-not-loadingComment by Dan Williams on Visual Studio 2005 Not LoadingDan Williams2008-10-06T15:19:21Z2008-10-06T15:19:21ZI've tried it in both /safemode and /resetsettings sorry should have mentioned that.http://stackoverflow.com/questions/134885/vbscript-using-a-variable-within-a-dom-element/134927#134927Comment by Dan Williams on VBScript: Using a variable within a DOM elementDan Williams2008-09-25T18:36:56Z2008-09-25T18:36:56ZYou're right, it's just to help debug the problem. Making sure you're actually going through all the elements in the document.
Have you tested what document.myform.i.value is returning?http://stackoverflow.com/questions/69576/why-are-software-requirements-always-phrased-with-shall-instead-of-will/69616#69616Comment by Dan Williams on Why are software requirements always phrased with "shall" instead of "will"?Dan Williams2008-09-19T22:39:41Z2008-09-19T22:39:41ZI'm going to need to submit a so question to figure out this answer :)http://stackoverflow.com/questions/93353/create-many-constrained-random-permutation-of-a-listComment by Dan Williams on Create many constrained, random permutation of a listDan Williams2008-09-18T15:08:26Z2008-09-18T15:08:26ZI wish I couldn't up vote commentshttp://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoonComment by Dan Williams on What's your favorite "programmer" cartoon?Dan Williams2008-09-17T15:39:11Z2008-09-17T15:39:11ZHe seems to write it that way <a href="http://bizurl.net?u=s1" rel="nofollow">bizurl.net?u=s1</a>
but he should at least have two spaces at the end.