User tags2k - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T12:34:16Zhttp://stackoverflow.com/feeds/user/192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108503/mysql-advisable-number-of-rows0MySQL: Advisable number of rowstags2k2008-09-20T15:34:49Z2009-12-10T20:05:39Z
<p>Consider an indexed MySQL table with 7 columns, being constantly queried and written to. What is the advisable number of rows that this table should be allowed to contain before the performance would be improved by splitting the data off into other tables?</p>
http://stackoverflow.com/questions/746/format-string-to-title-case2Format string to title casetags2k2008-08-03T16:03:48Z2009-12-07T16:56:51Z
<p>How do I format a string to title case?</p>
http://stackoverflow.com/questions/1109623/sql-management-studio-express-opening-sql-scripts-in-notepad0SQL Management Studio Express opening SQL scripts in Notepadtags2k2009-07-10T13:46:08Z2009-12-01T09:03:28Z
<p>When I go to File > Open > File and select a .sql script, or even when I drag a .sql file into the SQL Management Studio Express window, it opens the script in Notepad which is totally useless when I want to run the script.</p>
<p>Since this is on an external server (Windows 2003 Server), I end up having to disconnect from RDP, disable the local clipboard, re-connect and then copy-paste the script's contents from Textpad in order to run it.</p>
<p>I've checked the options menus but can't see anything relating to Notepad, not even in the "external tools" section. Any ideas why it would be doing this?</p>
<p><strong>Please note: I have checked the file association for SQL scripts and it is set to SQL Management Studio Express.</strong></p>
http://stackoverflow.com/questions/1782835/how-to-get-net-array-type-from-the-string-string0How to get .NET array type from the string "string[]"?tags2k2009-11-23T12:23:49Z2009-11-23T12:34:00Z
<p>Given the string <code>"string[]"</code> and asked to get the underlying Type for this class, one might start with:</p>
<pre><code>private Type getTypeByName(string typeName)
{
if (typeName.EndsWith("[]"))
{
return something; // But what?
}
return Type.GetType(typeName);
}
</code></pre>
<p>What type is "string[]" and how does one reflect the type out of it?</p>
<p>Obviously there's a <code>System.String</code> type and a <code>System.Array</code> type, but I can't see how they can be reflected "together" as you would normally do for <code>Nullable<T></code> and its T with the <code>MakeGenericType</code> method.</p>
<p>Any help to break the mind-loop I've gotten myself into will be greatly appreciated!</p>
http://stackoverflow.com/questions/810602/directory-getfiles-works-directory-getdirectories-doesnt-on-the-same-directory0Directory.GetFiles works, Directory.GetDirectories doesn't on the same directorytags2k2009-05-01T08:10:55Z2009-11-21T11:00:03Z
<p>I have a simple file selector on my web application which uses Directory.GetFiles and Directory.GetDirectories to produce the UI. This works perfectly on my localhost, but when I upload it to my Windows Server 2003 hosting I can only see files - on the same directory, GetFiles works but GetDirectories doesn't.</p>
<p>The code is incredibly simple - the string dir is created by a Server.MapPath call, and then:</p>
<pre><code>List<string> dirs = Directory.GetDirectories(dir).ToList();
List<string> files = Directory.GetFiles(dir).ToList();
</code></pre>
<p>I have tried everything I can think of security-wise; even to the point of giving "Everyone" full access to all directories in the web root, and even this makes no difference.</p>
<p>So if the issue is not with security, I would be very grateful of some suggestions for more things to try!</p>
<p><strong>Update:</strong> I'm pretty dumb - the code that spat out the HTML contained some very old testing code that hadn't made any difference on local so hadn't been noticed and removed, but that caused every directory on the server to be ignored! What was it?</p>
<pre><code>if (!subDir.Contains(".")) { ...
</code></pre>
<p>On the server, all sites are in folders named by their domain - on local, they aren't. Me == stupid. Sorry everyone!</p>
http://stackoverflow.com/questions/45534/aspsmartupload-v3-23ASPSmartUpload v3.2tags2k2008-09-05T11:02:21Z2009-10-15T07:00:56Z
<p><strong>UPDATE:</strong> To save people having to scroll to the answer where I link it, here is the file in question (version 3.3) - <a href="http://www.x01.co.uk/aspsmartupload%5Fv3%5F3.zip" rel="nofollow">http://www.x01.co.uk/aspsmartupload_v3_3.zip</a></p>
<p>I have the unfortunate task of fixing a legacy ASP site that was migrated to Windows Server 2003, and I know nothing about ASP. The main issue appears to be with ASPSmartUpload, of which I have version 2.3 installed. According to <a href="http://foradvice.net/smart%5Fupload%5Ffaq.htm" rel="nofollow">http://foradvice.net/smart_upload_faq.htm</a>:</p>
<blockquote>
<p>FAQ: does aspSmartUpload work on
Windows 2003 server ?</p>
<p>Yes, last versions of aspSmartUpload
work fine on the Windows 2003 server.
If you upgrade your OS and used an old
version of aspSmartUpload, you have to
download and setup aspSmartUpload
3.2+.</p>
</blockquote>
<p>Of course, aspsmart.com doesn't respond and any Google result for "aspsmartupload 3.2" points to the dead link. The latest version I can find anywhere is v3.0, on some dodgy-looking DLL download site.</p>
<p>What is the best way to resolve this, or can anyone provide a working link to version 3.2 of ASPSmartUpload? Thanks!</p>
http://stackoverflow.com/questions/4506/http-how-to-know-when-to-send-a-304-not-modified-response3HTTP: How to know when to send a 304 Not Modified responsetags2k2008-08-07T07:54:37Z2009-10-13T14:16:47Z
<p>I'm writing a resource handling method where I control access to various files, and I'd like to be able to make use of the browser's cache. My question is two-fold:</p>
<ol>
<li><p>Which are the definitive HTTP headers that I need to check in order to know for sure whether I should send a 304 response, and what am I looking for when I do check them?</p></li>
<li><p>Additionally, are there any headers that I need to send when I initially send the file (like 'Last-Modified') as a 200 response?</p></li>
</ol>
<p>Some psuedo-code would probably be the most useful answer. Thanks. </p>
http://stackoverflow.com/questions/222442/sql-server-running-large-script-files1SQL Server - Running large script filestags2k2008-10-21T16:07:35Z2009-09-25T05:13:57Z
<p>I have a database table on a development server that is now fully populated after I set it running with an import routine for a CSV file containing 1.4 million rows.</p>
<p>I ran the Database Publishing Wizard on the table, and now I have a 286MB SQL script on my local machine. The problem is, I can't figure out how to run it. If I load it into SQL Server Management Studio Express I get an alert window that says "The operation could not be completed".</p>
<p>Any ideas on how I can get this SQL script to run?</p>
http://stackoverflow.com/questions/1215133/chevrons-in-routing-urls-with-webforms-3-50Chevrons in Routing URLs with WebForms 3.5tags2k2009-07-31T22:13:57Z2009-08-03T15:52:01Z
<p>I've just upgraded my old wildcard mapping based URL system to use <code>System.Web.Routing</code>. Before, I was able to request the URL <code>/Service/GetItems<My.Full.Item.Type></code>, which was parsed on the other side and returned exactly what you'd expect. That was neat.</p>
<p>Now with Routing on, any request with a < or > in it returns me the contents of <code>'/'</code> instead of the page I wanted. Even if I encode these to %3C and %3E I get redirected to the root, regardless of what the rest of the URL says.</p>
<p>I'd like it if I didn't have to go through my application changing all instances of intuitive generic references to the makeshift solution I've come up with: <code>/Service/GetItems/T=My.Full.Item.Type</code>. Not as nice, either.</p>
<p>Thanks all!</p>
http://stackoverflow.com/questions/1078631/asp-net-unloading-assemblies-in-the-bin0ASP.NET unloading assemblies in the bintags2k2009-07-03T09:43:12Z2009-08-02T08:13:58Z
<p>My ASP.NET application utilises a "Modules" system by using <code>Type.GetType()</code> on a fully-qualified string reference, and instantiating an object of that type, as you do.</p>
<p>However, recently it has been throwing exceptions at not being able to find the types - but only occasionally. I haven't been able to replicate at will, but it usually happens after a simple change to something non-bin-related like a Master Page or ASCX markup. It doesn't sort itself until I rebuild the site or restart IIS. Making a change to the web.config does not fix it.</p>
<p>Adding an explicit reference to the assembly in the web.config rather than making hoping it gets found sitting in the bin directory reduces the occurrence of the issue, but does not prevent it from happening entirely. Somehow, something somewhere is thinking it's a good idea to remove my assembly.</p>
<p>I've debugged into where it fails to find the type and right enough, despite being there on the previous page load, the assembly seems to disappear out of the <code>Thread.GetDomain().GetAssemblies()</code>. Clearly, I can't risk this happening when the application is live so I manually called <code>Assembly.LoadAssembly()</code> on the DLL I knew it needed just to see if it would be worth creating a method that would try to locate the assembly. This didn't work either, as it then threw the following error when I tried to use the class:</p>
<blockquote>
<p>[A]xxx.Modules.CustomCaseStudy cannot
be cast to
[B]xxx.Modules.CustomCaseStudy. Type A
originates from 'xxx.Modules,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' in the context
'LoadNeither' at location
'C:\Development\xxx\xxx.Web\bin\xxx.Modules.dll'.
Type B originates from 'xxx.Modules,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' in the context
'Default' at location
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\fff474e0\8c6aec7e\assembly\dl3\325b4335\009dbd67_b2fbc901\xxx.Modules.DLL'.</p>
</blockquote>
<p>All the while, the required DLL is sitting in the bin folder, waiting - nay, begging to be used, not to mention the explicit reference in the web.config.</p>
<p>Any information in tracking down the culprit, or even as a last resort how to load that assembly into the "Default" context would be greatly appreciated!</p>
http://stackoverflow.com/questions/1078631/asp-net-unloading-assemblies-in-the-bin/1218398#12183980Answer by tags2k for ASP.NET unloading assemblies in the bintags2k2009-08-02T08:13:58Z2009-08-02T08:13:58Z<p>After having added the line:</p>
<p><code><add assembly="*"/></code></p>
<p>to the web.config and used the site for over two weeks, I haven't run into this problem again. I want it to load everything in the bin anyway, so it's not as dirty a brute-force solution as it may look!</p>
http://stackoverflow.com/questions/1199731/how-can-i-run-a-microsoft-virtual-pc-image-of-xp-with-ie6-on-xp-3How can I run a Microsoft Virtual PC image of XP with IE6 on XP?tags2k2009-07-29T11:55:38Z2009-07-29T12:05:07Z
<p>The last time I wanted to test IE6 with the developer toolbar enabled, I simply installed Microsoft Virtual PC, downloaded the XP with IE6 VMC and away I went.</p>
<p>However, I'm trying to do this today and having a nightmare of a time. It seems that Microsoft, although providing Microsoft Virtual PC, are no longer providing VMCs on their "Internet Explorer Application Compatibility VPC Image" page, only VHDs. VHDs require <em>Windows</em> Virtual PC, not <em>Microsoft</em> Virtual PC (silly me!), which they don't want you to have if you're on XP.</p>
<p>So going by the lesson in non-usability that is the maze of links on microsoft.com, it seems that I'm kind of screwed. I am getting a laptop next month with one of their shiny new operating systems on it, but right now I'm still a developer who has XP and needs to fix an IE6 issue. It seems a little antagonistic to suddenly prevent XP users from being able to perform their duties using the same tools as everyone else; not exactly a sure-fire way to get me rushing out to buy VS2010.</p>
<p>Is there any way to get Windows Virtual PC onto XP, a way to run a VHD under Microsoft Virtual PC or even just a super-top-secret page where they are providing VMCs?</p>
http://stackoverflow.com/questions/1127956/c-how-to-reflect-the-generic-parameter-that-was-used-for-inheritance1C# - How to reflect the generic parameter that was used for inheritancetags2k2009-07-14T20:50:31Z2009-07-14T21:07:22Z
<p>Let's say I have the following class hierarchy: <code>TaskViewer</code> inherits from <code>ListViewer<Task></code> which in turn inherits from <code>ViewerBase</code>.</p>
<p>If I debug into a method that is declared in <code>ViewerBase</code> and look at <code>this.GetType()</code>, it correctly returns <code>TaskViewer</code>. However, I cannot find a property or method which will return me the generic parameter that was used in the inheritance, i.e. <code>Task</code>. Obviously if I was in the context of <code>TaskViewer</code> or <code>ListViewer<T></code> then I would easily know this.</p>
<p>I can see that it was <code>Task</code> by looking at the <code>BaseType.FullName</code> property, but I've been through the list and nothing I can see identifies itself as having used that generic argument.</p>
<p>How might I get the original generic parameter from within this method in the root class?</p>
http://stackoverflow.com/questions/200574/linq-equivalent-of-foreach-for-ienumerable9Linq equivalent of foreach for IEnumerabletags2k2008-10-14T09:56:09Z2009-07-10T03:49:28Z
<p>I'd like to do the equivalent of the following in LINQ, but I can't figure out how:</p>
<pre><code>IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());
</code></pre>
<p>What is the real syntax?</p>
http://stackoverflow.com/questions/1096924/iterating-a-javascript-objects-properties-using-jquery0Iterating a JavaScript object's properties using jQuerytags2k2009-07-08T08:53:32Z2009-07-08T09:52:58Z
<p>Is there a jQuery way to perform iteration over an object's members, such as in:</p>
<pre><code> for (var member in obj) {
...
}
</code></pre>
<p>I just don't like this <code>for</code> sticking out from amongst my lovely jQuery notation!</p>
http://stackoverflow.com/questions/1091867/strongly-typed-ascx-in-webforms-3-50Strongly-typed ASCX in WebForms 3.5?tags2k2009-07-07T11:45:39Z2009-07-07T15:32:59Z
<p>I'm looking to get rid of the code-behind for a control in my WebForms 3.5 application. Again bitten by the bug of how it's done in MVC, I'd like to get a step closer to this methodology by doing:</p>
<pre><code><%@ Control Language="C#" Inherits="Core.DataTemplate<Models.NewsArticle>" %>
</code></pre>
<p>This gives me the parser error you'd expect, so I remembered back to when this was an issue awaiting a fix in the MVC Preview, and changed it to:</p>
<pre><code><%@ Control Language="C#" Inherits="Core.DataTemplate`1[[Models.NewsArticle]]" %>
</code></pre>
<p>But this doesn't work either! How is it that the MVC team were able to harness this ability? Was it something special about the MVC project type rather than the latest VS2008 Service Pack?</p>
<p>Short of giving up and requiring future templates to have code-behind files, what are my best options to get this as close to the generic user control method as possible?</p>
http://stackoverflow.com/questions/1091867/strongly-typed-ascx-in-webforms-3-5/1093042#10930421Answer by tags2k for Strongly-typed ASCX in WebForms 3.5?tags2k2009-07-07T15:32:59Z2009-07-07T15:32:59Z<p>Well, it appears like I've managed to do it. After looking at the PageParserFilter implemented by the MVC team for <code>ViewUserControl<T></code>, I was able to construct something similar for my own <code>DataTemplate<T></code> purposes. Sweet. I can now use the line:</p>
<pre><code><%@ Control Language="C#" Inherits="Core.DataTemplate<Models.NewsArticle>" %>
</code></pre>
<p>And, without any code behind file, it parses! I'll report back if I find that I've broken something else in the process!</p>
http://stackoverflow.com/questions/117173/c-try-catch-every-line-of-code-without-individual-try-catch-blocks1C#: Try-catch every line of code without individual try-catch blockstags2k2008-09-22T19:58:00Z2009-07-06T11:04:18Z
<p><strong>I do not currently have this issue</strong>, but you never know, and thought experiments are always fun.</p>
<p><strong>Ignoring the obvious problems that you would have to have with your architecture to even be attempting this</strong>, let's assume that you had some horribly-written code of someone else's design, and you needed to do a bunch of wide and varied operations in the same code block, e.g.:</p>
<pre><code>WidgetMaker.SetAlignment(57);
contactForm["Title"] = txtTitle.Text;
Casserole.Season(true, false);
((RecordKeeper)Session["CasseroleTracker"]).Seasoned = true;
</code></pre>
<p>Multiplied by a hundred. Some of these might work, others might go badly wrong. What you need is the C# equivalent of "on error resume next", otherwise you're going to end up copying and pasting try-catches around the many lines of code.</p>
<p>How would you attempt to tackle this problem?</p>
http://stackoverflow.com/questions/1076311/css-and-javascript-conditionally-repositioning-onscroll-an-absolutely-positioned/1076349#10763492Answer by tags2k for CSS and JavaScript Conditionally Repositioning onScroll an Absolutely Positioned DIVtags2k2009-07-02T19:51:44Z2009-07-02T19:51:44Z<p><a href="http://code.google.com/p/jquery-scroll-follow/" rel="nofollow">Scroll Follow</a> might do what you want; it takes an "offset" parameter which sticks your element to the specified distance from the top of the viewport.</p>
http://stackoverflow.com/questions/1073989/linq-lamba-support-in-webforms-ascx2Linq Lamba support in WebForms ASCXtags2k2009-07-02T12:05:35Z2009-07-02T12:16:22Z
<p>After having worked in MVC for a few months, I'm back in a previously written WebForms 3.5 application, and I'm trying to fix up what I can with what I've learned.</p>
<p>Part of this is the "strongly-typed model with a partial view" concept which is incredibly awesome. By inheriting my custom "ListTemplate" control, I can then use its GetModel() method to get something resembling this:</p>
<pre><code><% List<Models.CaseStudy> model = GetModel<Models.CaseStudy>(); %>
</code></pre>
<p>I can then run a foreach over model, and all is happy. However, I wanted to do a grouping so I added references to:</p>
<pre><code><%@ Import Namespace="System.Linq" %>
<%@ Import Namespace="System.Linq.Expressions" %>
</code></pre>
<p>Then, with a slightly less-than-ideal syntax, tried this:</p>
<pre><code><% IEnumerable<IGrouping<string, Models.CaseStudy>> model = GetModel<Models.CaseStudy>().GroupBy(e => e.Client.Name); %>
</code></pre>
<p>But no! "Compiler Error Message: CS1525: Invalid expression term '>'" - and it appears to be the lambda at fault. It doesn't work if I put the GroupBy() in the foreach parameters either.</p>
<p>Is there any way to get lambdas working within ASCX files?</p>
http://stackoverflow.com/questions/423992/creating-lightweight-linq2sql-proxy-objects0Creating lightweight Linq2Sql proxy objectstags2k2009-01-08T11:47:15Z2009-06-21T19:00:01Z
<p>I'm trying to find the most efficient way to send my Linq2Sql objects to my jQuery plugins via JSON, preferably without additional code for each class.</p>
<p>The EntitySets are the main issue as they cause not only recursion, but when recursion is ignored (using <a href="http://www.codeplex.com/json" rel="nofollow">JSON.NET</a>'s ReferenceLoopHandling feature) a silly amount of data can be retrieved, when I only really need 1 or 2 levels. This gets really bad when you're talking about Users, Roles and Permissions as you get the User's Role, the User's Permissions, the Role's Permissions, and the Role's Users all up in your JSON before it hits recursion and stops. Compare this to what I actually want, which is just the RoleId.</p>
<p>My initial approach was to send a "simplified" version of the object, where I reflect the entity and set any EntitySets to null, but of course in the above example Roles gets set to null and so RoleId is null. Setting only the 2nd level properties to null kind of works but there's still too much data as the EntitySets that weren't killed (the first level ones) repopulate their associated tables when the JsonSerializer does its reflection and I still get all those Permission objects that I just don't need.</p>
<p>I definately don't want to get into the situation of creating a lightweight version of every class and implementing "From" and "To" style methods on them, as this is a lot of work and seems wasteful.</p>
<p>Another option is to put a JsonIgnoreAttribute on the relevant properties, but this is going to cause a nightmare scenario whenever classes need to be re-generated.</p>
<p>My current favourite solution which I like and hate at the same time is to put the classes into opt-in serialization mode, but because I can't add attributes to the real properties I'd have to create JSON-only properties in a partial class. Again, this seems wasteful but I think it's the best so far.</p>
<p>Any suggestions gratefully received!</p>
http://stackoverflow.com/questions/1022166/how-to-select-value-of-adjacent-hidden-input-with-jquery/1022171#10221710Answer by tags2k for How to select value of adjacent hidden input with Jquery?tags2k2009-06-20T18:23:55Z2009-06-20T18:23:55Z<p>Nice and cheap:</p>
<pre><code>var contentId = $(this).parents('li:first').find('.contentId').val();
</code></pre>
http://stackoverflow.com/questions/349705/total-width-of-element-including-padding-and-border-in-jquery5Total width of element (including padding and border) in jQuerytags2k2008-12-08T14:24:27Z2009-06-14T02:27:24Z
<p>As in the subject, how can one get the total width of an element, including its border and padding, using jQuery? I've got the jQuery dimensions plugin, and running .width() on my 760px-wide, 10px padding DIV returns 760.</p>
<p>Perhaps I'm doing something wrong, but if my element manifests itself as 780 pixels wide and Firebug tells me that there's 10px padding on it, but calling .width() only gives 760, I'd be hard pressed to see how.</p>
<p>Thanks for any suggestions.</p>
http://stackoverflow.com/questions/959540/mvc-naming-conventions-for-json-actions2MVC naming conventions for JSON actionstags2k2009-06-06T11:59:29Z2009-06-06T14:00:17Z
<p>What naming convention is recommended when writing an MVC app that has both front-end and JSON paths to the required data?</p>
<p>For example, let's say the user of your site has "Things". They should be able to go to a page to view their things, but we also need a way to pull those things back as JSON on other pages. I've been able to think of several options but I'm not keen enough on any of them to proceed. Here's what I've got:</p>
<ol>
<li><strong>/things/list</strong> for UI, <strong>/json/things</strong> for JSON - this would require a JsonController which would end up serving different kinds of objects, thereby defeating any chance of entity separation before we even start.</li>
<li><strong>/things/list</strong> for UI, <strong>/things/list/json</strong> for JSON - probably my preferred option at the moment, but requires magic stringing (albeit just "json"). Also, if you also need a (string id) action signature for taking in some filter parameters or such, then you have the choice of adding an extra route or doing some dirty string splitting.</li>
<li><strong>/account/mythings</strong> for UI, <strong>/things/list</strong> for JSON - a bit cleaner, but there might not always be a relevant controller that you could serve the "things" from. Plus, you're mixing entities again.</li>
</ol>
<p>All and any suggestions welcome, thanks!</p>
http://stackoverflow.com/questions/668488/parsing-json-datetime-from-newtonsofts-json-serializer2Parsing JSON DateTime from Newtonsoft's JSON Serializertags2k2009-03-21T00:48:57Z2009-05-30T06:27:03Z
<p>I've serialized an object using Newtonsoft's JSON serializer, and the DateTime has come through as:</p>
<pre><code>/Date(1237588418563+0000)/
</code></pre>
<p>When I $.evalJSON() on that, it is an object but I can't find any normal Date methods like toUTCString on it.</p>
<p>Any ideas what I can do with this?</p>
http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial9ASP.NET MVC Beta 1 - where is Html.RenderPartial?tags2k2008-10-17T08:58:58Z2009-05-26T14:21:08Z
<p>I'm just in the process of upgrading my Preview 5 application to Beta 1, and I'm nearly there save for this one error when trying to render a control:</p>
<blockquote>
<p>'System.Web.Mvc.HtmlHelper' does not
contain a definition for
'RenderPartial' and no extension
method 'RenderPartial' accepting a
first argument of type
'System.Web.Mvc.HtmlHelper' could be
found (are you missing a using
directive or an assembly reference?)</p>
</blockquote>
<p>My markup (in the .aspx View Content Page) is:</p>
<pre><code><% Html.RenderPartial("Controls/UserForm", ViewData); %>
</code></pre>
<p>I've tried using Microsoft.Web.Mvc but to no avail. Does anyone know where Html.RenderPartial has gone, or what alternative I could use?</p>
http://stackoverflow.com/questions/872558/custom-as3-class-is-null-after-being-added-to-array1Custom AS3 class is null after being added to Arraytags2k2009-05-16T14:44:04Z2009-05-18T15:13:13Z
<p>I'm a C# developer who is trying to learn some AS3, so this is going to be a pretty newbie question.</p>
<p>I'm getting confused with regards to scope and GC, as I have a custom MovieClip-extending class (Slide) which I create instances of within a loop and push() into an Array, but afterwards the items are null when I pull them out of the collection.</p>
<pre><code>var ldr:URLLoader = new URLLoader();
ldr.load(new URLRequest("presentation.xml"));
ldr.addEventListener(
Event.COMPLETE,
function(e:Event):void {
config = new XML(e.target.data);
for (var i:Number = 0; i < config.slides.slide.length(); i++)
{
var node = config.slides.slide[i];
var slide:Slide = new Slide();
slides.push(slide);
addChild(slide); // Works fine
}
}
);
slides.forEach(function(e:*, index:int, array:Array):void
{
addChild(e); // Causes "Parameter child must be non-null" exception
}
);
</code></pre>
<p>I would like to be able to references the slides later in order to toggle them as needed - how can I keep the reference to my new objects?</p>
<p><strong>Update:</strong> It appears there were two problems with this. The forEach call was being made before the URLLoader's complete event was called, and also forEach doesn't seem to work as expected. Here is the final working code:</p>
<pre><code>var ldr:URLLoader = new URLLoader();
ldr.load(new URLRequest("presentation.xml"));
ldr.addEventListener(
Event.COMPLETE,
function(e:Event):void {
config = new XML(e.target.data);
for (var i:Number = 0; i < config.slides.slide.length(); i++)
{
var node = config.slides.slide[i];
var slide:Slide = new Slide();
slides.push(slide);
}
for each (var sl in slides)
{
addChild(sl);
}
}
);
</code></pre>
http://stackoverflow.com/questions/41928/lightwindow-ie7-line-444-object-does-not-support-this-property-or-method0LightWindow & IE7, "Line 444 - object does not support this property or method"tags2k2008-09-03T15:23:16Z2009-04-20T11:39:38Z
<p>I have just received and bypassed a problem with LightWindow and IE7 where, on page load, it throws a JavaScript error on line 444 of lightwindow.js, claiming that the "object does not support this property or method". Despite finding various postings on various forums, no Google result I could find had a solution, so I am posting this here in the hopes that it will help someone / myself later.</p>
<p>Many suggested a specific order of the script files but I was already using this order (prototype, scriptaculous, lightwindow).</p>
<p>These are the steps I took that seemed to finally work, I write them here only as a record as I do not know nor have time to test which ones specifically "fixed" the issue:</p>
<ol>
<li>Moved the call to lightwindow.js to the bottom of the page.</li>
<li>Changed line 444 to: <code>if (this._getGalleryInfo(link.rel)) {</code></li>
<li>Changed line 1157 to: <code>if (this._getGalleryInfo(this.element.rel)) {</code></li>
<li>Finally, I enclosed (and this is dirty, my apologies) lines 1417 to 1474 with a try/catch block, swallowing the exception.</li>
</ol>
<p>EDIT: I realised that this broke Firefox. Adding the following as line 445 now makes it work - <code>try { gallery = this._getGalleryInfo(link.rel); } catch (e) { }</code></p>
<p>It's not a very nice fix, but my page (which contains a lightwindow link with no "rel" tag, several lightwindow links which do have "rel" tags, and one "inline" link) works just fine in IE7 now. Please comment if you have anything to add about this issue or problems with / improvements to my given solution.</p>
http://stackoverflow.com/questions/224830/how-do-i-set-a-sql-server-scripts-timeout-from-within-the-script0How do I set a SQL Server script's timeout from within the script?tags2k2008-10-22T08:15:41Z2009-03-20T16:16:21Z
<p>I have a large script file (nearly 300MB, and feasibly bigger in the future) that I am trying to run. It has been suggested in the comments of Gulzar's answer to my <a href="http://stackoverflow.com/questions/222442/sql-server-running-large-script-files">question about it</a> that I should change the script timeout to 0 (no timeout).</p>
<p>What is the best way to set this timeout from within the script? At the moment I have all of this at the top of the script file in the hopes that one of them does something:</p>
<pre><code>sp_configure 'remote login timeout', 600
go
sp_configure 'remote query timeout', 0
go
sp_configure 'query wait', 0
go
reconfigure with override
go
</code></pre>
<p>However, I'm still getting the same result and I can't tell if I'm succeeding in setting the timeout because the response from sqlcmd.exe is the world's least helpful error message:</p>
<blockquote>
<p>Sqlcmd: Error: Scripting error.</p>
</blockquote>
<p>Thanks.</p>
http://stackoverflow.com/questions/651/checklist-for-iis-6-asp-net-windows-authentication6Checklist for IIS 6/ASP.NET Windows Authentication?tags2k2008-08-03T11:21:54Z2009-03-10T03:47:54Z
<p>I've been having trouble getting my ASP.NET application to automatically log users into the Intranet site I'm building. No matter the googling or the experimentation I applied, there is always a login box displayed by IE7.</p>
<p>I've got Windows authentication mode set in the Web.config, disabled anonymous access and configured the correct default domain in IIS, but it's still asking the user to log in and, more annoyingly, the user is required to provide the domain too (<em>DOMAIN\auser</em>), which is causing problems with non-technical visitors. Thank Zeus for password remembering functionality.</p>
<p>I'm not the network administrator so it's possible that something about Active Directory is set up incorrectly, or it could just be me missing something very simple. Please note that I don't want to impersonate the user, I just need to know that the IPrincipal.Name property matches that of a valid record in my user database, hence authenticating the user to my application.</p>
<p>To this end, it would be very useful to have a checklist of all configuration requirements for AD, ASP.NET and IIS to work together in this manner as a reference for debugging and hopefully reducing some user friction.</p>
http://stackoverflow.com/questions/1782835/how-to-get-net-array-type-from-the-string-string/1782860#1782860Comment by tags2k on How to get .NET array type from the string "string[]"?tags2k2009-11-23T13:38:25Z2009-11-23T13:38:25ZI see, but I think I'll pass on the keyword dictionary! Thanks for your help.http://stackoverflow.com/questions/1782835/how-to-get-net-array-type-from-the-string-string/1782860#1782860Comment by tags2k on How to get .NET array type from the string "string[]"?tags2k2009-11-23T12:40:40Z2009-11-23T12:40:40ZAh, well that's fair enough. But what if you're given "string[]" as the input instead of "System.String[]"?http://stackoverflow.com/questions/1409987/why-is-rel-not-detected-in-a-jquery-attribute-selector/1410011#1410011Comment by tags2k on Why is REL not detected in a jQuery attribute selectortags2k2009-09-11T09:55:41Z2009-09-11T09:55:41ZRegardless of whether it's valid you should still be able to set attr('rel') and retrieve it using the selector syntax as then there is no invalid markup anywhere, only an attribute stored against the element in the DOM!http://stackoverflow.com/questions/1215133/chevrons-in-routing-urls-with-webforms-3-5/1223113#1223113Comment by tags2k on Chevrons in Routing URLs with WebForms 3.5tags2k2009-08-03T16:09:59Z2009-08-03T16:09:59ZThanks so much for this answer, Phil! It's great to know the reasoning behind what's going on, and I'll look into these articles for a final solution. Thanks again.http://stackoverflow.com/questions/1109623/sql-management-studio-express-opening-sql-scripts-in-notepad/1177315#1177315Comment by tags2k on SQL Management Studio Express opening SQL scripts in Notepadtags2k2009-08-02T08:23:48Z2009-08-02T08:23:48ZHow does this work with nvarchar or ntext content? Some of my scripts contain "foreign" languages, so converting to ANSI isn't going to help.http://stackoverflow.com/questions/1078631/asp-net-unloading-assemblies-in-the-bin/1140381#1140381Comment by tags2k on ASP.NET unloading assemblies in the bintags2k2009-08-02T08:11:27Z2009-08-02T08:11:27ZThanks David, but my issue isn't loading the assembly; the site will work fine for ages, and then some assemblies will be unloaded and not reinstated.http://stackoverflow.com/questions/1199731/how-can-i-run-a-microsoft-virtual-pc-image-of-xp-with-ie6-on-xpComment by tags2k on How can I run a Microsoft Virtual PC image of XP with IE6 on XP?tags2k2009-07-29T12:30:05Z2009-07-29T12:30:05Z-3 for misunderstanding some terminology which isn't clearly explained and becoming irritated enough to ask the question publicly? How very dare I! :-)http://stackoverflow.com/questions/1199731/how-can-i-run-a-microsoft-virtual-pc-image-of-xp-with-ie6-on-xpComment by tags2k on How can I run a Microsoft Virtual PC image of XP with IE6 on XP?tags2k2009-07-29T12:20:52Z2009-07-29T12:20:52ZOkay, point taken but it's not <i>quite</i> as you say it is. The download page points to Windows Virtual PC, which isn't available for XP, and there's no mention of Microsoft Virtual PC anywhere on the site. It's not hard to get confused when the M in RTFM is one non-specific line on a page which directs me to the wrong software.http://stackoverflow.com/questions/1127956/c-how-to-reflect-the-generic-parameter-that-was-used-for-inheritance/1128008#1128008Comment by tags2k on C# - How to reflect the generic parameter that was used for inheritancetags2k2009-07-15T07:50:59Z2009-07-15T07:50:59ZIt's a module-based system, so in this case a ViewerBase-derived class somewhere has pointed an attribute at a static method that it wants to use as a source for its options list when it gets edited. The options rely on what T is, so the static method needs to know it. You can't pass typeof(T) in an attribute so it uses strings. I was writing the part that says "if there's a T in this string, search this class and its base class for generic parameters to pass into the option source method". If there's no T then I just call the method as normal. Hope that doesn't seem too weird! :-Dhttp://stackoverflow.com/questions/1127956/c-how-to-reflect-the-generic-parameter-that-was-used-for-inheritance/1128034#1128034Comment by tags2k on C# - How to reflect the generic parameter that was used for inheritancetags2k2009-07-14T21:22:10Z2009-07-14T21:22:10ZIt is for a good reason; the base class doesn't care about the type as it's already being constrained in the required ways. I'm actually parsing it out so I can pass it back into a MakeGenericMethod() call.http://stackoverflow.com/questions/1127956/c-how-to-reflect-the-generic-parameter-that-was-used-for-inheritance/1128008#1128008Comment by tags2k on C# - How to reflect the generic parameter that was used for inheritancetags2k2009-07-14T21:19:50Z2009-07-14T21:19:50ZOh. I did try this and it was returning an empty Type array before, hence my posting this question. A rebuild and suddenly it returns the correct type!http://stackoverflow.com/questions/1127956/c-how-to-reflect-the-generic-parameter-that-was-used-for-inheritance/1127990#1127990Comment by tags2k on C# - How to reflect the generic parameter that was used for inheritancetags2k2009-07-14T20:59:16Z2009-07-14T20:59:16ZBut in the context of ViewerBase, I don't know what a ListViewer is nor can I be sure that this.GetType().BaseType is a ListViewer even if I did know what it was.http://stackoverflow.com/questions/1124808/need-only-date-from-datetime/1124822#1124822Comment by tags2k on Need only Date from DateTime tags2k2009-07-14T11:57:33Z2009-07-14T11:57:33ZI do find this amusing, but does anyone really need a link to Google these days? :-Dhttp://stackoverflow.com/questions/1109623/sql-management-studio-express-opening-sql-scripts-in-notepadComment by tags2k on SQL Management Studio Express opening SQL scripts in Notepadtags2k2009-07-14T07:33:53Z2009-07-14T07:33:53ZUnfortunately not, I may just resort to re-installation of Management Studio when I get a free minute!http://stackoverflow.com/questions/1109623/sql-management-studio-express-opening-sql-scripts-in-notepadComment by tags2k on SQL Management Studio Express opening SQL scripts in Notepadtags2k2009-07-10T14:28:54Z2009-07-10T14:28:54ZIt loads Management Studio, then opens my script in a Notepad window!