User Yadyn - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:11:17Z http://stackoverflow.com/feeds/user/7290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1745196/is-it-possible-to-use-theme-colors-in-windows-forms-apps 0 Is it possible to use theme colors in Windows Forms apps? Yadyn 2009-11-16T22:15:15Z 2009-11-17T01:23:58Z <p>I normally make use of <a href="http://msdn.microsoft.com/en-us/library/system.drawing.systemcolors%5Fmembers.aspx" rel="nofollow">System Colors</a> whenever possible when designing Windows Forms applications just so that it'll fit in with the user's preferences. But is it possible to use <a href="http://msdn.microsoft.com/en-us/library/aa511441.aspx#ThemeColor" rel="nofollow">Theme Colors</a>?</p> <p>I realize that this limits you in several ways (must be running Windows that supports it <em>and</em> has the Themes service running), so I would certainly like it if it could fall back on some other default, but since I'm fairly sure 99% of my users <em>will</em> have it available, I'd like to make use of it if possible.</p> <p>Specifically, for newer Windows versions (Vista and 7), things like hyperlinks have a softer more pastel-ish blue. The old System Colors do not define anything for links and the like, and in general are much more limited (coming from the 95 days) in choices and variety.</p> <p>Though WPF probably has better support, I'm not at liberty to use it. If some third party utility, assembly, or the like is necessary, it would also need to be free to use. I don't need anything <em>that</em> fancy, but in a perfect world I would be able to do something like this:</p> <pre><code>linkLabel1.LinkColor = System.Drawing.ThemeColors.Hyperlink; </code></pre> <p>Am I stuck just using the default Blue (0,0,255) and having them look out of place in Vista and above? I'll even settle for ugly p/invoke interop methods if need be...</p> http://stackoverflow.com/questions/1022213/alt-tab-application-icon-pixelated/1675415#1675415 0 Answer by Yadyn for ALT-TAB Application Icon Pixelated Yadyn 2009-11-04T17:31:44Z 2009-11-04T17:31:44Z <p>The caption bar of a Windows application window display icons in 16x16 pixels. The Alt-Tab list, however, shows icons in 32x32 pixels. It uses the same icon as is set for the window. If you only set a 32x32 one, the caption bar has to scale it down, which tends to look ugly as it uses <a href="http://en.wikipedia.org/wiki/Nearest-neighbor%5Finterpolation" rel="nofollow">nearest-neighbor interpolation</a>. So how does one support both?</p> <p>The answer is the <a href="http://en.wikipedia.org/wiki/ICO%5F%28file%5Fformat%29" rel="nofollow">ICO</a> file! It supports embedding multiple icons in one file, typically the same (or similar) icon in various sizes and, less commonly, color formats.</p> <p>Browsers, Windows, and others are typically designed to smartly use the appropriately sized variant within a given ICO file. So the answer is to have an ICO file with both sizes (or more) inside. The result is that the caption bar correctly uses the 16x16 version and Alt-Tab uses the larger 32x32 one.</p> <p>The methods for saving an ICO file with multiple icons inside varies from program to program. However, <a href="http://www.gimp.org/windows/" rel="nofollow">GIMP</a> can easily do it (and it's free). The trick is to have your variously-sized icons as separate layers. When you go to save it as an ICO file, GIMP will prompt you with the ability to set the size and color format of each layer. A good tutorial, with images, can be read <a href="http://egressive.com/tutorial/creating-a-multi-resolution-favicon-including-transparency-with-the-gimp" rel="nofollow">here</a>.</p> <p>If anyone has any links or suggestions for creating multi-icon ICO files in other programs, feel free to add them. Also, I'm unsure if the Visual Studio built-in image editor can do it or not &mdash; I've rarely bothered with it.</p> http://stackoverflow.com/questions/1477784/how-can-i-get-browsers-other-than-ie-to-accept-file-urls 2 How can I get browsers other than IE to accept file urls? Yadyn 2009-09-25T14:55:33Z 2009-09-25T15:01:19Z <p>It is not uncommon for our intranet web applications to link to publications, documents, or other resources from our shared network file servers.</p> <p>In the past, we've had little trouble fashioning links such as the following:</p> <pre><code>file://fileserver1/folderofgoodies/rules.pdf \\fileserver1\folderofgoodies\rules.pdf </code></pre> <p>The reason we had no trouble is because everyone in the building uses IE6 or IE7 (very few have IE8). Both styles of URLs worked fine in Microsoft browsers it seems.</p> <p>But if you try clicking such links in other browsers, specifically Firefox, <em>nothing happens!</em></p> <p>On a new intranet web app I'm developing I've been attempting to ensure cross-browser support, but any links to local computer or local network resources seem to be ignored in at least Firefox 3.5.3, though I admit I haven't yet checked other browsers.</p> <p>Is there any way I can change the way I link to said files so that browsers like Firefox will accept them? I cannot do anything that requires installing scripts, software, extensions, or any other solution on a per-user/per-computer basis.</p> <p>I realize the suppression of said links is a security thing, but these links would be originating from only trusted local intranet locations, so...</p> http://stackoverflow.com/questions/1467733/asp-net-session-inheritence/1467772#1467772 0 Answer by Yadyn for ASP.NET Session Inheritence Yadyn 2009-09-23T18:23:49Z 2009-09-23T18:23:49Z <p>You can put the logic in a single class and then have the Page and UserControl custom classes extend a common Interface.</p> <p>You're still going to have to sub-class Page and UserControl like you are, but at least the logic wouldn't be duplicated, only the overloaded methods and calls to the common logic class. That's still an improvement, though, for reasons of code sharing.</p> http://stackoverflow.com/questions/1467609/is-it-better-to-disable-or-omit-context-popup-menu-options/1467697#1467697 0 Answer by Yadyn for Is it better to disable or omit context/popup menu options? Yadyn 2009-09-23T18:12:28Z 2009-09-23T18:12:28Z <p>For right-click menus, I'd say that if the item is applicable to what was right-clicked but is for some other outside reason unavailable, disable it. If it is not applicable to the right-clicked thing then hide it as there's no chance of it ever showing up. Case in point:</p> <p>When I right-click on the background area of this page in Firefox the first four items are Back, Forward, Reload, and Stop. Forward and Stop are disabled because they aren't valid actions right now (I have no forward history and the page is not loading anymore). These four guys are very consistently offered, they are expected, global, often-used commands. They are the four main "navigation" controls and by default they have toolbar counterparts (in the form of big dedicated buttons).</p> <p>However, if I right-click on an image, I get completely different options in the context-menu all related to viewing, saving, and copying the image under where I clicked. These options don't appear at all (not even disabled) under normal use because they are very specific to what I right-clicked on. When right-clicking on the background area, Stop and Forward, while currently not valid actions, are still applicable to what I clicked on (the page) but they are unavailable for other reasons...</p> <p>Like the rule for menus on the top menu bar, the goal is not to surprise users with commands suddenly appearing for, from the user's point of view, inexplicable reasons.</p> http://stackoverflow.com/questions/1087478/how-do-i-best-store-a-list-of-numbers-in-a-relational-database 3 How do I best store a list of numbers in a relational database? Yadyn 2009-07-06T15:02:46Z 2009-09-10T19:42:28Z <p>I want to store a list of numbers (essentially, a <a href="http://en.wikipedia.org/wiki/Set%5F%28mathematics%29" rel="nofollow">set</a> in mathematical terms) in a relational database, specifically SQL Server 2005.</p> <p>Ideally, I'd like it to be a single column on a given table, but I'm willing to hear any sort of solution. The data I need to store is, like I said, a set of numbers.</p> <ul> <li>It isn't required to be sequential (i.e. gaps are okay, normal, and typical)</li> <li>Ranges are possible (i. e. 1 - 4) but while I'd like to display it that way I'm fine with using shortcuts and such for storing it</li> <li>It can also be "all", so at least one value must be reserved, preferably logically, for this "infinite" case</li> <li>The list of numbers need not be in order (i.e. 3, 2, 9, 5) but it is preferable and perfectly reasonable that they will and can be sorted prior to inserting as only code will be doing the inserting, not manual users. Still, it should probably not rely on or expect the list to be already sorted.</li> <li>The set of numbers should be easily searchable for a subset (see below)</li> <li>All numbers should be distinct (no dupes), but this can and will be enforced before insertion</li> </ul> <p>This column is meant to store all of the "step numbers" of a given process that the row applies to. Each row can, therefor, apply to one or more steps, in any order, range, or sequence. The maximum number of steps possible (the max range, essentially) is different from row to row, though I highly doubt any of them will get into the hundreds, so in 99.9% of cases the maximum should never exceed 20 or 30, and I'd be surprised if it ever got anywhere close to 100. Each row is guaranteed to have one value (step) at minimum (i.e. it doesn't make sense to have a row that doesn't apply to any step), but I figure this is as simple as setting the column to <code>not null</code>.</p> <p>However it is stored, I'd like it to be easily searched. For instance, I'd rather not have to jump through a lot of hoops to write an SQL query to find all rows that apply to "step 3" for instance. If a given row has several steps it applies to (say, 2, 3, 7, and 8), it shouldn't be too difficult to match it when searching by step 3.</p> <p>Also, while I'd like it to make some sort of logical sense when looking at the raw data (for anyone that need work on the system after I'm not around to ask and so they don't have to read thick documentation to figure out my obscure encoding), I'm willing to compromise on this. Encoding the list into something that can be reliably decoded is, thus, acceptable.</p> <p>I apologize if this is a dupe &mdash; I've been googling around but I suspect this issue of mine suffers from not knowing what to search for or how to phrase or call it to find what I'm looking for.</p> <p>On a more commentary note, I wonder if this isn't one of those areas where relational databases fall short. Unfortunately, I don't have a choice here. I must store it in SQL Server. Saving separately to a file or some other persistent data storage is out of the question, I'm afraid.</p> http://stackoverflow.com/questions/1087478/how-do-i-best-store-a-list-of-numbers-in-a-relational-database/1407306#1407306 0 Answer by Yadyn for How do I best store a list of numbers in a relational database? Yadyn 2009-09-10T19:42:28Z 2009-09-10T19:42:28Z <p>Ended up using a <a href="http://stackoverflow.com/questions/738133/comma-separated-values-in-a-database-field/738180#738180">solution to a similar question</a>.</p> <p>Thanks anyway, though! I enjoy reading everyone's opinions on these esoteric areas of database design.</p> http://stackoverflow.com/questions/1313598/how-to-test-users-permissions-to-the-database/1313634#1313634 2 Answer by Yadyn for How to test user's permissions to the database Yadyn 2009-08-21T18:46:06Z 2009-08-21T18:46:06Z <p>Are you opposed to having your app aware of the Windows user groups? Generally we use AD groups all the time for security like you speak of on both the database AND in the .NET code. Showing/hiding features is exactly the point. Additionally, even if for some reason they manage to get the feature to show, the database additionally checks their role and can prevent actions.</p> <p>Personally, I think checking the role membership in .NET code is the easiest solution (you can do this with the <a href="http://msdn.microsoft.com/en-us/library/system.security.principal.windowsprincipal.isinrole.aspx" rel="nofollow">IsInRole</a> method).</p> <p>However, if there are reasons why you cannot or do not want to have the app aware of group names, in case they change, I understand. There's probably not an ODBC method of checking, as any method would most likely be proprietary and/or database dependent (SQL Server, etc.)... other than that, you'd have to write code to attempt an insert/update command on a known test record and see if it comes back with an SqlException I guess.</p> http://stackoverflow.com/questions/1313420/prototypes-dom-extensions-are-colliding-with-a-3rd-party-js-library-whats-my/1313594#1313594 2 Answer by Yadyn for Prototype's DOM extensions are colliding with a 3rd party JS library -- what's my best bet? Yadyn 2009-08-21T18:36:35Z 2009-08-21T18:36:35Z <p>Having worked with Prototype before in the past, there is no way to have it "play nice" (akin to jQuery's noConflict mode).</p> <p>The very approach behind Prototype prevents this. Prototype's bread &amp; butter comes from its Object.extend() method that gets called on objects as soon as you manipulate them with Prototype methods. Not to mention Prototype also has already modified core JavaScript objects before messing with yours.</p> <p>On the other hand, jQuery is all self-contained in the jQuery object (which is, to my knowledge, all it adds to the JavaScript namespace when included).</p> <p>Are there other libraries that have similar features? Sure, in fact, and I'm sure you're sick of hearing this by now, but you could probably do most of it with jQuery. However, you won't avoid the unavoidable: re-writing code. It won't be done the same way with any other framework, let alone give you the same results/beahvior.</p> <p>Your choices are thus:</p> <ul> <li>Drop Prototype and re-write stuff that did use it to use something else</li> <li>Drop the third party library in favor of alternative or absence entirely</li> <li>Re-write prototype.js or thirdpartytool.js to play nicely (this, of course, is a terrible hack that will cause more headaches when you want to "upgrade" one or both tools in the future when a new release comes out)</li> </ul> http://stackoverflow.com/questions/1313009/jquery-fadeto-effect-applied-to-tr/1313045#1313045 0 Answer by Yadyn for jQuery fadeTo effect applied to <tr> Yadyn 2009-08-21T16:50:06Z 2009-08-21T16:50:06Z <p>Generally it's been my experience that tr elements can't be manipulated normally. For example, you can add a background color to tr elements (for zebra striping, say) but if you want a line between each tr "row" then you have to add the css border to the td elements under it or it won't seem to have any effect.</p> <p>My guess is that this is something similar. You might have to try executing fadeTo on each child td element of the tr element in question... dunno, I admit I haven't tested anything.</p> http://stackoverflow.com/questions/1234999/transparency-problem-by-overlapped-pictureboxs-at-c/1235144#1235144 2 Answer by Yadyn for Transparency Problem by Overlapped PictureBox's at C# Yadyn 2009-08-05T19:06:41Z 2009-08-05T19:06:41Z <p>This is because, if I remember correctly, setting a background color of Transparent (its actual value is null, right?) isn't <em>really</em> transparent. What Windows does is it looks at the control's parent container's background color and sets the controls background color to that.</p> <p>You can see this happen especially with panels. Without contents, panels set to Transparent should let you see behind them, right? Wrong. If you put a panel on top of a bunch of, say, textbox controls and set the panel to Transparent, you won't be able to see the textboxes behind it.</p> <p>Instead, to get real transparency, you have to overload OnPaintBackground for the control in question and, essentially, do absolutely nothing (DONT'T call the base.OnPainBackground either!)... There's more to it than that, probably, but here is an example of a working TransparentPanel control we use here:</p> <pre><code>public class TransparentPanel : System.Windows.Forms.Panel { [Browsable(false)] protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x20; return cp; } } protected override void OnPaintBackground(PaintEventArgs e) { // Do Nothing } } </code></pre> <p>We've used this class successfully to create truly transparent panels in past Windows Forms apps. We used it as a hack to fix the "right-click context menu appears on top of button controls" problem.</p> http://stackoverflow.com/questions/1233852/why-would-my-child-controls-be-uninitialized-at-the-time-of-event-attachment 1 Why would my child controls be uninitialized at the time of event attachment? Yadyn 2009-08-05T15:02:20Z 2009-08-05T15:07:31Z <p>I have a page and a user control &mdash; we'll call them Detail.aspx and Selector.ascx.</p> <p>Let's say the page shows the details of individual records in a database. The user control basically consists of a DropDownList control and some associated HTML. The DropDownList displays a list of other records to switch to at any time.</p> <p>When the DropDownList fires its SelectedIndexChanged event, I'd like the parent page, Detail.aspx in this case, to handle it. After all, he'll need to know what was selected so that he can appropriately change the URL and the details shown, etc.</p> <p>To do that, I've done what I usually do, which is also what the top answer says to do in <a href="http://stackoverflow.com/questions/943171/expose-and-raise-event-of-a-child-control-in-a-usercontrol-in-c">this StackOverflow question</a>:</p> <pre><code>public event EventHandler DropDownSelectedIndexChanged { add { MyDropDownList.SelectedIndexChanged += value; } remove { MyDropDownList.SelectedIndexChanged -= value; } } </code></pre> <p>The above code appears in the Selector.ascx.cs codebehind file.</p> <p>As a result, on Detail.aspx, I can use it like so:</p> <pre><code>&lt;cc1:RecordSelector ID="RecordSelector1" runat="server" OnDropDownSelectedIndexChanged="RecordSelector1_DropDownSelectedIndexChanged" /&gt; </code></pre> <p>So far nothing fancy or surprising.</p> <p>Here is my problem:</p> <p><strong>This causes a <code>NullReferenceException</code> when the browser hits Detail.aspx.</strong></p> <p>Debugging the problem shows that when the page is first hit, the public event I've shown above tries to add the event, but MyDropDownList is null, thus throwing the exception. From what I can tell, the events are added (or attempted to be added) <em>before</em> the Selector user control's Load event fires and thus also before the DropDownList's Load event fires.</p> <p>Curiously, if I omit the OnDropDownSelectedIndexChanged attribute from Detail.aspx and instead put the following in the Page_Load event in Detail.aspx.cs:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { RecordSelector1.DropDownSelectedIndexChanged += new EventHandler(RecordSelector1_DropDownSelectedIndexChanged); } </code></pre> <p>It works exactly as expected. The events are attached and handled just fine. No problems.</p> <p>But this means several bad things:</p> <ol> <li>I have to remember not to use the designer to add said event onto my user control</li> <li>I have to remember not to add the event via attributes when working in source view</li> <li>Worst of all, as the control's author I need to make sure everybody else using my control knows 1 and 2</li> </ol> <p>So what am I doing wrong? Every example I've seen thus far shows similar usage of exposing child controls' events through a user control.</p> http://stackoverflow.com/questions/65662/output-parameters-not-readable-when-used-with-a-datareader 2 Output parameters not readable when used with a DataReader Yadyn 2008-09-15T18:55:13Z 2009-07-22T01:28:54Z <p>When using a DataReader object to access data from a database (such as SQL Server) through stored procedures, any output parameter added to the Command object before executing are not being filled after reading. I can read row data just fine, as well as all input parameters, but not output ones.</p> <p><em>[This question is actually just for anyone's future reference and help. It is a problem that's bitten us in the past and I thought I'd share it and the solution to anyone else that runs into this quirk.]</em></p> http://stackoverflow.com/questions/512517/how-to-use-htmlencode-with-templatefields-data-binding-and-a-gridview 2 How to use HtmlEncode with TemplateFields, Data Binding, and a GridView Yadyn 2009-02-04T17:51:41Z 2009-06-24T22:10:54Z <p>I have a GridView bound to an ObjectDataSource. I've got it supporting editing as well, which works just fine. However, I'd like to safely HtmlEncode text that is displayed as we do allow special characters in certain fields. This is a cinch to do with standard BoundFields, as I just set HtmlEncode to true.</p> <p>But in order to setup validation controls, one needs to use TemplateFields instead. How do I easily add HtmlEncoding to output this way? This is an ASP.NET 2.0 project, so I'm using the newer data binding shortcuts (e.g. <code>Eval</code> and <code>Bind</code>).</p> <p>What I'd like to do is something like the following:</p> <pre><code>&lt;asp:TemplateField HeaderText="Description"&gt; &lt;EditItemTemplate&gt; &lt;asp:TextBox ID="TextBoxDescription" runat="server" Text='&lt;%# System.Web.HttpUtility.HtmlEncode(Bind("Description")) %&gt;' ValidationGroup="EditItemGrid" MaxLength="30" /&gt; &lt;asp:Validator ... /&gt; &lt;/EditItemTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="LabelDescription" runat="server" Text='&lt;%# System.Web.HttpUtility.HtmlEncode(Eval("Description")) %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>However, when I try it this way, I get the following error:</p> <blockquote> <p>CS0103: The name 'Bind' does not exist in the current context</p> </blockquote> http://stackoverflow.com/questions/998152/ssrs-2005-multiple-formats-in-a-single-textbox/998192#998192 0 Answer by Yadyn for SSRS 2005 Multiple formats in a single textbox Yadyn 2009-06-15T20:24:34Z 2009-06-15T20:24:34Z <p>Short answer: no.</p> <p><hr /></p> <p>If there is, I haven't been able to figure it out. We tasked an intern once as part of a larger task in SSRS 2005 to figure out if it was possible. He came back saying it wasn't possible. I never found anything in my time working with it either, since.</p> <p>I'd love to hear otherwise from someone.</p> http://stackoverflow.com/questions/259390/how-do-i-best-display-checkboxes-in-sql-server-reporting-services 4 How do I best display CheckBoxes in SQL Server Reporting Services? Yadyn 2008-11-03T17:41:27Z 2009-06-10T16:33:07Z <p>One of the many quirks of Reporting Services we've run across is the complete and utter lack of a CheckBox control or even something remotely similar.</p> <p>We have a form that should appear automatically filled out based on information pulled from a database. We have several bit datatype fields. Printing out "True" or "False" just looks silly, as this is supposed to look like a form that has been auto-filled out, so we want to have a series of checkboxes and labels that are either checked or unchecked.</p> <p>We are running SSRS 2005 but I'm not aware of SSRS 2008 having added a CheckBox control. Even if it did, we'd need to have an alternative for the time being. The best we've found so far is:</p> <ol> <li>use Wingdings</li> <li>use images</li> <li>use text boxes with borders and print a blank/space or a capital X</li> </ol> <p>All three approaches require <code>IIF</code> expression shenanigans.</p> <p>The Wingdings approach seemed to work acceptably, and was the most aesthetically pleasing except that for whatever reason it didn't always print correctly. More importantly, PDF exports, also for whatever reason, converted all fonts (generally) to Arial and so we got funky letters instead of the Windings dingbats.</p> <p>Images, being a pixel-based raster, don't do so well when printed along side vector stuff like text. Unless handled carefully, they tend to stretch, pixelate, and do other unprofessional looking things.</p> <p>While these methods do work (some with limitations as mentioned above) none of them are particularly elegant.</p> <p><strong>Are we missing something obvious?</strong> Not so obvious? Does someone at Microsoft have a good reason why such a control was not provided in SSRS 2000, let alone 2 versions and 8 years later? This can't be the first time this issue has come up...</p> http://stackoverflow.com/questions/115850/what-pre-existing-services-exist-for-calculating-distance-between-two-addresses 8 What pre-existing services exist for calculating distance between two addresses? Yadyn 2008-09-22T16:19:54Z 2009-06-08T20:58:11Z <p>I'd like to implement a way to display a list of stored addresses sorted by proximity to a given address.</p> <p>Addresses in the list will be stored in a database table. Separate parts have separate fields (we have fields for postal code, city name, etc.) so it is not just a giant <code>varchar</code>. These are user-entered and due to the nature of the system may not always be complete (some may be missing postal code and others may have little more than city and state).</p> <p>Though this is for an intranet application I have no problems using outside resources including accessing internet web services and such. I'd actually prefer that over rolling my own unless it would be trivial to do myself. If Google or Yahoo! already provides a free service, I'm more than willing to check it out. The keyword is it must be free, as I'm not at liberty to introduce any additional cost onto this project for this feature as it is already a bonus "perk" so to speak.</p> <p>I'm thinking of this much like many brick &amp; mortar shops do their "Find a Location" feature. Showing it in a simple table sorted appropriately and displaying distance (in, say, miles) is great. Showing a map mash-up is even cooler, but I can definitely live with just getting the distance back and me handling all of the subsequent display and sorting.</p> <p>The problem with simple distance algorithms is the nature of the data. Since all or part of the address can be undefined, I don't have anything convenient like lat/long coords. Also, even if I make postal codes required, 90% of the addresses will probably have the same five postal codes.</p> <p>While it need not be blisteringly fast, anything that takes more than seven seconds to show up on the page due to latency might be too long for the average user to wait, as we know. If such a hypothetical service supports sending a batch of addresses at once instead of querying one at a time, that'd be great. Still, I should not think the list of addresses would exceed 50 total, if that many.</p> http://stackoverflow.com/questions/911845/report-server-unable-to-display-correct-input-parameter-via-iif-or-switch/912027#912027 0 Answer by Yadyn for Report Server - unable to display correct input parameter via Iif() or Switch() Yadyn 2009-05-26T18:25:41Z 2009-05-26T18:25:41Z <p>If it is a Boolean type parameter it's not semantically correct to check it as if it were a string.</p> <p>You can use <code>IsNothing(Parameters!Sorted.Value)</code> to check for a null and then <code>Parameters!Sorted.Value = True</code> (without the quotes) for the second case.</p> <p>I'll admit I didn't fire up Visual Studio to check if it normally is okay with treating Boolean parameters as if they were a string, but the error you're getting sounds as such. That error is usually thrown by <code>Parse</code> methods, like if you do <code>Int32.Parse("34.32")</code>, or so I seem to recall. I'm guessing RS is doing an automatic parse so that the datatypes match and the equality operator can do its magic.</p> http://stackoverflow.com/questions/894631/over-ride-browser-authentication-dialog/894725#894725 0 Answer by Yadyn for Over-ride Browser Authentication Dialog Yadyn 2009-05-21T19:37:26Z 2009-05-21T19:37:26Z <p>I think this is mostly browser-dependent behavior and what the server reports to the browser.</p> <p>For example, Internet Explorer, being a Microsoft product, directly supports automatic sending of Windows credentials (you can modify this behavior in your Internet Settings) after an anonymous request fails in a 401.</p> <p>Firefox, for example, does not and will always prompt the user even if it was set to remember the id and password via the password manager. IE will also prompt if auto-login fails (such as your Windows credentials still result in a 401 because you're id isn't allowed).</p> <p>I don't think, as a web developer, you have much control over this besides setting up your server and app to work in the most expected and harmonious way... if you could, this might get into <a href="http://en.wikipedia.org/wiki/Black%5Fhat#Black%5FHat%5FHacker" rel="nofollow">black hat territory</a>.</p> http://stackoverflow.com/questions/894419/count-in-a-subquery/894442#894442 0 Answer by Yadyn for Count(*) in a subquery Yadyn 2009-05-21T18:43:52Z 2009-05-21T19:27:39Z <p>For future reference, you'll want to avoid using the following:</p> <pre><code>SELECT COUNT(*) FROM OrderDetail GROUP BY OrderHeaderID </code></pre> <p>It seems simple and elegant enough at first glance, but note that you'll miss any order from the OrderHeader table that has no orders. If it is important that they be represented (with a 0 for their count), see <a href="http://stackoverflow.com/users/18771/tomalak">Tomalak</a> or <a href="http://stackoverflow.com/users/90322/autocracy">Autocracy</a>'s answers <a href="http://stackoverflow.com/questions/894419/count-in-a-subquery/894434#894434">here</a> and <a href="http://stackoverflow.com/questions/894419/count-in-a-subquery/894432#894432">here</a>.</p> <p>Thanks to <a href="http://stackoverflow.com/users/65223/km">KM</a> for pointing this out! (see comments below)</p> http://stackoverflow.com/questions/894438/scroll-bar-problem/894532#894532 3 Answer by Yadyn for scroll bar problem Yadyn 2009-05-21T19:02:19Z 2009-05-21T19:16:56Z <p>See the <a href="http://www.w3schools.com/htmldom/met%5Fwin%5Fscrollto.asp" rel="nofollow"><code>window.scrollTo</code></a> and <a href="http://www.w3schools.com/htmldom/met%5Fwin%5Fscrollby.asp" rel="nofollow"><code>window.scrollBy</code></a> methods.</p> <p>If you need more flexibility and power than that you might try <a href="http://stackoverflow.com/users/110486/flipper">Flipper</a>'s <a href="http://stackoverflow.com/questions/894438/scroll-bar-problem/894467#894467">suggestion</a> and give the jQuery plugin a whirl.</p> http://stackoverflow.com/questions/894444/what-hash-algorithm-does-net-utilise-what-about-java/894494#894494 1 Answer by Yadyn for What hash algorithm does .net utilise? What about java? Yadyn 2009-05-21T18:54:35Z 2009-05-21T18:54:35Z <p>Anything purporting to be a HashTable or something like it in .NET does not implement its own hashing algorithm: they always call the object-being-hashed's <code>GetHashCode()</code> method.</p> <p>There is a lot of confusion though as to what this method does or is supposed to do, especially when concerning user-defined or otherwise custom classes that override the <a href="http://msdn.microsoft.com/en-us/library/system.object.gethashcode.aspx" rel="nofollow">base Object implementation</a>.</p> http://stackoverflow.com/questions/894301/what-are-the-perceived-actual-advantages-of-kerberos-are-there-any-viable-alter/894407#894407 2 Answer by Yadyn for What are the perceived/actual advantages of Kerberos? Are there any viable alternatives to the technology? Yadyn 2009-05-21T18:35:39Z 2009-05-21T18:35:39Z <p>If you are working within a mostly Windows environment (i.e. Windows Server 2k3, a domain controller, Active Directory, etc.) one in particular is that you can use <a href="http://www.dotnet-guide.com/impersonation.html" rel="nofollow"><strong>impersonation</strong></a> through .NET with a split web server and database server. Using the older NTLM method, you cannot do a "double-hop".</p> <p><hr /></p> <p>Let's look at an example:</p> <ul> <li>You have a web server (WEB1)</li> <li>You have a database server on a separate machine (DB1)</li> <li>You have a user access your website (USER1)</li> </ul> <p>USER1 hits a page that displays a list of orders. Your WEB1 server has to query DB1 for this info to display on the page. You want to constrain what orders are seen based on the user's credentials and access rights. Thus, you set up active directory groups and assign users accordingly. On your database you give the different groups different security (GROUP1 might have select only and GROUP2 might get select, insert, and update, for example).</p> <p>NTLM doesn't support the double-hop necessary to do this. WEB1 has to send USER1's credentials to DB1 (otherwise WEB1 must log into DB1 with a known dedicated user id and password hardcoded into the web.config for example that usually has to have full access to support all possible user roles). You can imagine this could be a security hazard should WEB1 be compromised, so you can't do it, otherwise anyone who gains control of WEB1 (via sql injection perhaps) could do anything the dedicated user account could or impersonate whomever they want. Kerberos, through delegation on Windows Server, supports doing this second hop by keeping the encrypted credential key from your domain server intact and passed along, as well as verified that this is allowed (on both ends, see below for setting this up on your servers because it MUST be EXPLICITLY allowed).</p> <p>It's very useful to do this when developing intranet web apps that have a database back-end (which is 99% of the time the case, right?) and you want to control authorization and authentication through Windows Integrated Security. Kerberos is really your only choice unless your web server and database server are on the same machine, which means there is no transferring of credentials and no impersonation necessary.</p> <p>See also:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms998351.aspx" rel="nofollow">MSDN - How To: Use Impersonation and Delegation in ASP.NET 2.0</a></li> <li><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;810572" rel="nofollow">Microsoft Help &amp; Support - How to configure an ASP.NET application for a delegation scenario</a></li> <li><a href="http://msdn.microsoft.com/en-us/magazine/cc163740.aspx" rel="nofollow">MSDN Magazine - Security Briefs: Credentials and Delegation</a></li> </ul> http://stackoverflow.com/questions/893454/is-it-a-good-idea-to-use-an-integer-column-for-storing-us-zip-codes-in-a-database 5 Is it a good idea to use an integer column for storing US ZIP codes in a database? Yadyn 2009-05-21T15:10:21Z 2009-05-21T17:48:31Z <p>From first glance, it would appear I have two basic choices for storing <a href="http://en.wikipedia.org/wiki/ZIP%5Fcode" rel="nofollow">ZIP codes</a> in a database table:</p> <ol> <li>Text (probably most common), i.e. <code>char(5)</code> or <code>varchar(9)</code> to support +4 extension</li> <li>Numeric, i.e. 32-bit integer</li> </ol> <p>Both would satisfy the requirements of the data, if we assume that there are no international concerns. In the past we've generally just gone the text route, but I was wondering if anyone does the opposite? Just from brief comparison it looks like the integer method has two clear advantages:</p> <ul> <li>It is, by means of its nature, automatically limited to numerics only (whereas without validation the text style could store letters and such which are not, to my knowledge, ever valid in a ZIP code). This <em>doesn't</em> mean we could/would/should forgo validating user input as normal, though!</li> <li>It takes less space, being 4 bytes (which should be plenty even for 9-digit ZIP codes) instead of 5 or 9 bytes.</li> </ul> <p>Also, it seems like it wouldn't hurt display output much. It is trivial to slap a <code>ToString()</code> on a numeric value, use simple string manipulation to insert a hyphen or space or whatever for the +4 extension, and use string formatting to restore leading zeroes.</p> <p>Is there anything that would discourage using <code>int</code> as a datatype for US-only ZIP codes?</p> http://stackoverflow.com/questions/149380/dynamic-sorting-within-sql-stored-procedures 16 Dynamic Sorting within SQL Stored Procedures Yadyn 2008-09-29T16:04:19Z 2009-05-07T20:13:11Z <p>This is an issue that I've spent hours researching in the past. It seems to me to be something that should have been addressed by modern RDBMS solutions but as yet I have not found anything that really addresses what I see to be an incredibly common need in any Web or Windows application with a database back-end.</p> <p>I speak of dynamic sorting. In my fantasy world, it should be as simple as something like:</p> <pre><code>ORDER BY @sortCol1, @sortCol2 </code></pre> <p>This is the canononical example given by newbie SQL and Stored Procedure developers all over forums across the internet. "Why isn't this possible?" they ask. Invariably, somebody eventually comes along to lecture them about the compiled nature of stored procedures, of execution plans in general, and all sorts of other reasons why it isn't possible to put a parameter directly into an <code>ORDER BY</code> clause.</p> <p><hr /></p> <p>I know what some of you are already thinking: "Let the client do the sorting, then." Naturally, this offloads the work from your database. In our case though, our database servers aren't even breaking a sweat 99% of the time and they aren't even multi-core yet or any of the other myriad improvements to system architecture that happen every 6 months. For this reason alone, having our databases handle sorting wouldn't be a problem. Additionally, databases are <em>very</em> good at sorting. They are optimized for it and have had years to get it right, the language for doing it is incredibly flexible, intuitive, and simple and above-all any beginner SQL writer knows how to do it and even more importantly they know how to edit it, make changes, do maintenance, etc. When your databases are far from being taxed and you just want to simplify (and shorten!) development time this seems like an obvious choice.</p> <p>Then there's the web issue. I've played around with JavaScript that will do client-side sorting of HTML tables, but they inevitably aren't flexible enough for my needs and, again, since my databases aren't overly taxed and can do sorting really <em>really</em> easily, I have a hard time justifying the time it would take to re-write or roll-my-own JavaScript sorter. The same generally goes for server-side sorting, though it is already probably much preferred over JavaScript. I'm not one that particularly likes the overhead of DataSets, so sue me.</p> <p>But this brings back the point that it isn't possible &mdash; or rather, not easily. I've done, with prior systems, an incredibly hack way of getting dynamic sorting. It wasn't pretty, nor intuitive, simple, or flexible and a beginner SQL writer would be lost within seconds. Already this is looking to be not so much a "solution" but a "complication."</p> <p><hr /></p> <p>The following examples are not meant to expose any sort of best practices or good coding style or anything, nor are they indicative of my abilities as a T-SQL programmer. They are what they are and I fully admit they are confusing, bad form, and just plain hack.</p> <p>We pass an integer value as a parameter to a stored procedure (let's call the parameter just "sort") and from that we determine a bunch of other variables. For example... let's say sort is 1 (or the default):</p> <pre><code>DECLARE @sortCol1 AS varchar(20) DECLARE @sortCol2 AS varchar(20) DECLARE @dir1 AS varchar(20) DECLARE @dir2 AS varchar(20) DECLARE @col1 AS varchar(20) DECLARE @col2 AS varchar(20) SET @col1 = 'storagedatetime'; SET @col2 = 'vehicleid'; IF @sort = 1 -- default sort BEGIN SET @sortCol1 = @col1; SET @dir1 = 'asc'; SET @sortCol2 = @col2; SET @dir2 = 'asc'; END ELSE IF @sort = 2 -- reversed order default sort BEGIN SET @sortCol1 = @col1; SET @dir1 = 'desc'; SET @sortCol2 = @col2; SET @dir2 = 'desc'; END </code></pre> <p>You can already see how if I declared more @colX variables to define other columns I could really get creative with the columns to sort on based on the value of "sort"... to use it, it usually ends up looking like the following incredibly messy clause:</p> <pre><code>ORDER BY CASE @dir1 WHEN 'desc' THEN CASE @sortCol1 WHEN @col1 THEN [storagedatetime] WHEN @col2 THEN [vehicleid] END END DESC, CASE @dir1 WHEN 'asc' THEN CASE @sortCol1 WHEN @col1 THEN [storagedatetime] WHEN @col2 THEN [vehicleid] END END, CASE @dir2 WHEN 'desc' THEN CASE @sortCol2 WHEN @col1 THEN [storagedatetime] WHEN @col2 THEN [vehicleid] END END DESC, CASE @dir2 WHEN 'asc' THEN CASE @sortCol2 WHEN @col1 THEN [storagedatetime] WHEN @col2 THEN [vehicleid] END END </code></pre> <p>Obviously this is a very stripped down example. The real stuff, since we usually have four or five columns to support sorting on, each with possible secondary or even a third column to sort on in addition to that (for example date descending then sorted secondarily by name ascending) and each supporting bi-directional sorting which effectively doubles the number of cases. Yeah... it gets hairy really quick.</p> <p>The idea is that one could "easily" change the sort cases such that vehicleid gets sorted before the storagedatetime... but the pseudo-flexibility, at least in this simple example, really ends there. Essentially, each case that fails a test (because our sort method doesn't apply to it this time around) renders a NULL value. And thus you end up with a clause that functions like the following:</p> <pre><code>ORDER BY NULL DESC, NULL, [storagedatetime] DESC, blah blah </code></pre> <p>You get the idea. It works because SQL Server effectively ignores null values in order by clauses. This is incredibly hard to maintain, as anyone with any basic working knowledge of SQL can probably see. If I've lost any of you, don't feel bad. It took us a long time to get it working and we still get confused trying to edit it or create new ones like it. Thankfully it doesn't need changing often, otherwise it would quickly become "not worth the trouble."</p> <p>Yet it <em>did</em> work.</p> <p><hr /></p> <p>My question is then: <strong>is there a better way?</strong></p> <p>I'm okay with solutions other than Stored Procedure ones, as I realize it may just not be the way to go. Preferably, I'd like to know if anyone can do it better within the Stored Procedure, but if not, how do you all handle letting the user dynamically sort tables of data (bi-directionally, too) with ASP.NET?</p> <p>And thank you for reading (or at least skimming) such a long question!</p> <p>PS Be glad I didn't show my example of a stored procedure that supports dynamic sorting, dynamic filtering/text-searching of columns, pagination via ROWNUMBER() OVER, <em>AND</em> try...catch with transaction rollbacking on errors... "behemoth-sized" doesn't even begin to describe them.</p> <p><hr /></p> <p><strong>Update:</strong></p> <ul> <li>I would like to <strong>avoid dynamic SQL</strong>. Parsing a string together and running an EXEC on it defeats a lot of the purpose of having a stored procedure in the first place. Sometimes I wonder though if the cons of doing such a thing wouldn't be worth it, at least in these special dynamic sorting cases. Still, I always feel dirty whenever I do dynamic SQL strings like that &mdash; like I'm still living in the Classic ASP world.</li> <li>A lot of the reason we want stored procedures in the first place is for <strong>security</strong>. I don't get to make the call on security concerns, only suggest solutions. With SQL Server 2005 we can set permissions (on a per-user basis if need be) at the schema level on individual stored procedures and then deny any queries against the tables directly. Critiquing the pros and cons of this approach is perhaps for another question, but again it's not my decision. I'm just the lead code monkey. :)</li> </ul> http://stackoverflow.com/questions/180370/how-to-display-datetime-with-an-abbreviated-time-zone 2 How to display DateTime with an abbreviated Time Zone? Yadyn 2008-10-07T20:53:42Z 2009-04-27T19:32:56Z <p>I am aware of the <a href="http://msdn.microsoft.com/en-us/library/system.timezone(VS.80).aspx" rel="nofollow">System.TimeZone</a> class as well as the many uses of the <a href="http://msdn.microsoft.com/en-us/library/system.datetime.tostring(VS.80).aspx" rel="nofollow">DateTime.ToString()</a> method. What I haven't been able to find is a way to convert a DateTime to a string that, in addition to the time and date info, contains the three-letter Time Zone abbreviation (in fact, much the same way StackOverflow's tooltips for relative time display works).</p> <p>To make an example easy for everyone to follow as well as consume, let's continue with the StackOverflow example. If you look at the tooltip that displays on relative times, it displays with the full date, the time including seconds in twelve-hour format, an AM/PM designation, and then the three-letter Time Zone abbreviation (in their case, Coordinated Universal Time). I realize I could easily get GMT or UTC by using the built-in methods, but what I really want is the time as it is locally &mdash; in this case, on a web server.</p> <p>If our web server is running Windows Server 2k3 and has it's time zone set to CST (or, until <a href="http://en.wikipedia.org/wiki/Daylight_saving_time#Terminology" rel="nofollow">daylight saving</a> switches back, CDT is it?), I'd like our ASP.NET web app to display DateTimes relative to that time zone as well as formatted to display a "CST" on the end. I realize I could easily hard-code this, but in the interest of robustness, I'd really prefer a solution based on the server running the code's OS environment settings.</p> <p>Right now, I have everything but the time zone abbreviation using the following code:</p> <pre><code>myDateTime.ToString("MM/dd/yyyy hh:mm:ss tt") </code></pre> <p>Which displays:</p> <p>10/07/2008 03:40:31 PM</p> <p>All I want (and it's not much, promise!) is for it to say:</p> <p>10/07/2008 03:40:31 PM CDT</p> <p>I can use System.TimeZone.CurrentTimeZone and use it to correctly display "Central Daylight Time" but... that's a bit too long for brevity's sake. Am I then stuck writing a string manipulation routine to strip out white-space and any non-uppercase letters? While that might work, that seems incredibly hack to me...</p> <p><a href="http://www.google.com/search?hl=en&amp;safe=off&amp;q=C%23+time+zone+abbreviation&amp;btnG=Search" rel="nofollow">Googling</a> and looking around on here did not produce anything applicable to my specific question.</p> http://stackoverflow.com/questions/168946/iis-returning-old-user-names-to-my-application/596169#596169 2 Answer by Yadyn for IIS Returning Old User Names to my application Yadyn 2009-02-27T19:09:35Z 2009-02-27T19:09:35Z <p>I know we've had cached credentials problems in IIS in the past here, too, and after Googling for days we came across an obscure (to us, at least) command you can use to view and clear cached credentials.</p> <p>Start -> Run (or WinKey+R) and type <strong>control keymgr.dll</strong></p> <p>This fixed our problems for client machines. Haven't tried it on servers but it might be worth a shot if its the server caching credentials. Our problem was we were getting old credentials but only on a client machine basis. If the user logged in on a separate client machine, everything was fine, but if they used their own machine at their desk that they normally work on it had the cached old credentials.</p> http://stackoverflow.com/questions/317377/sql-if-statement-in-where-clause-for-searching-database/317480#317480 0 Answer by Yadyn for SQL if statement in where clause for searching database Yadyn 2008-11-25T14:16:56Z 2008-11-25T14:16:56Z <p>We've used a lot of <code>COALESCE</code> here in the past for "<a href="http://www.sqlteam.com/article/implementing-a-dynamic-where-clause" rel="nofollow">dynamic WHERE clauses</a>" like you're talking about.</p> <pre><code>SELECT * FROM vehicles WHERE ([vin] LIKE COALESCE(@vin, [vin]) + '%' ESCAPE '\') AND ([year] LIKE COALESCE(@year, [year]) + '%' ESCAPE '\') AND ([make] LIKE COALESCE(@make, [make]) + '%' ESCAPE '\') AND ([model] LIKE COALESCE(@model, [model]) + '%' ESCAPE '\') </code></pre> <p>A big problem arises though when you want to optionally filter for a column that is also nullable... if the data in the column is <code>null</code> for a given row AND the user didn't enter anything to search by for that column (so the user input is also <code>null</code>), then that row <strong>won't even show up in the results</strong> (which, if your filters are optional, is incorrect exclusionary behavior).</p> <p>In order to compensate for nullable fields, you end up having to do messier looking SQL like so:</p> <pre><code>SELECT * FROM vehicles WHERE (([vin] LIKE COALESCE(@vin, [vin]) + '%' ESCAPE '\') OR (@vin IS NULL AND [vin] IS NULL)) AND (([year] LIKE COALESCE(@year, [year]) + '%' ESCAPE '\') OR (@year IS NULL AND [year] IS NULL)) AND (([make] LIKE COALESCE(@make, [make]) + '%' ESCAPE '\') OR (@make IS NULL AND [make] IS NULL)) AND (([model] LIKE COALESCE(@model, [model]) + '%' ESCAPE '\') OR (@model IS NULL AND [model] IS NULL)) </code></pre> http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233575#233575 1 Answer by Yadyn for How can I create a menu in HTML without using Javascript? Yadyn 2008-10-24T13:41:55Z 2008-10-24T13:41:55Z <p>There's also <a href="http://en.wikipedia.org/wiki/Eric_Meyer" rel="nofollow">Eric Meyer</a>'s original article on <a href="http://meyerweb.com/eric/css/edge/menus/demo.html" rel="nofollow"><strong>pure CSS menus</strong></a>.</p> <p>There are bound to be much more robust and modern takes out there now mentioned by others, but I thought I'd mention it for posterity. :)</p> http://stackoverflow.com/questions/192366/how-to-grab-ad-credentials-from-client-machine-in-a-web-application/192414#192414 4 Answer by Yadyn for How to grab AD credentials from client machine in a web application. Yadyn 2008-10-10T17:42:39Z 2008-10-10T20:11:49Z <p>Absolutely. This is especially useful for intranet applications.</p> <p>Since you did not specify your environment, I'll assume it is .NET, but that isn't the only way possible of course.</p> <p>Active Directory can be queried easily using <a href="http://en.wikipedia.org/wiki/LDAP" rel="nofollow">LDAP</a>. If you're using .NET, you can do something like in <a href="http://www.codeproject.com/KB/system/QueryADwithDotNet.aspx" rel="nofollow">this code example</a> or my example below. You can also do it within <a href="http://articles.techrepublic.com.com/5100-22_11-5259887.html" rel="nofollow">SQL environments</a> as well.</p> <p>If you just need Windows to handle authentication, you can set, for example, a .NET Web app up for <a href="http://weblogs.asp.net/scottgu/archive/2006/07/12/Recipe_3A00_-Enabling-Windows-Authentication-within-an-Intranet-ASP.NET-Web-application.aspx" rel="nofollow">Windows Authentication</a>. Be sure to <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/524404dc-8586-46b0-89ac-0f5db6d33c9c.mspx?mfr=true" rel="nofollow"><strong>turn off Anonymous Logins</strong></a> within IIS for your application. Once done, you'll be able to access the user's Windows logon name and use it to make further security checks (for example, their <a href="http://msdn.microsoft.com/en-us/library/4z6b5d42.aspx" rel="nofollow">group/role membership</a> in AD).</p> <p>You can also simplify the whole mess using something like Enterprise Library's <a href="http://msdn.microsoft.com/en-us/library/cc309291.aspx" rel="nofollow">Security Application Block</a>.</p> <p><hr /></p> <p>Here is a short C# example: (convert to VB.NET <a href="http://www.developerfusion.com/tools/convert/csharp-to-vb/" rel="nofollow">here</a>)</p> <pre><code>using System.DirectoryServices; /// &lt;summary&gt; /// Gets the email address, if defined, of a user from Active Directory. /// &lt;/summary&gt; /// &lt;param name="userid"&gt;The userid of the user in question. Make /// sure the domain has been stripped first!&lt;/param&gt; /// &lt;returns&gt;A string containing the user's email address, or null /// if one was not defined or found.&lt;/returns&gt; public static string GetEmail(string userid) { DirectorySearcher searcher; SearchResult result; string email; // Check first if there is a slash in the userid // If there is, domain has not been stripped if (!userid.Contains("\\")) { searcher = new DirectorySearcher(); searcher.Filter = String.Format("(SAMAccountName={0})", userid); searcher.PropertiesToLoad.Add("mail"); result = searcher.FindOne(); if (result != null) { email = result.Properties["mail"][0].ToString(); } } return email; } </code></pre> <p>You do not have to specify a domain controller. Performing the empty/default constructor for DirectorySearcher will cause it to attempt to look one up automatically &mdash; in fact, this is <a href="http://weblogs.asp.net/steveschofield/archive/2004/04/28/121857.aspx" rel="nofollow"><strong>the preferred method</strong></a>.</p> http://stackoverflow.com/questions/1745196/is-it-possible-to-use-theme-colors-in-windows-forms-apps/1745223#1745223 Comment by Yadyn on Is it possible to use theme colors in Windows Forms apps? Yadyn 2009-11-16T22:25:50Z 2009-11-16T22:25:50Z That assumes they haven't changed the default theme. Which is likely, as most people don't, but still... it's not as elegant as the current System.Drawing.SystemColors way. http://stackoverflow.com/questions/1630844/c-member-variables-fields-naming-convention/1630872#1630872 Comment by Yadyn on C# member variables / fields naming convention Yadyn 2009-10-27T13:47:38Z 2009-10-27T13:47:38Z This is what we do. Seems simple enough and if you look at a lot of the official .NET framework code that's what MS seems to do (well, most of the time). http://stackoverflow.com/questions/1630787/suggestions-for-making-pixel-perfect-css-layouts/1630812#1630812 Comment by Yadyn on Suggestions for making pixel-perfect CSS layouts? Yadyn 2009-10-27T13:40:39Z 2009-10-27T13:40:39Z I second this one... why can't you use PDF again? If you're trying to get pixel-perfect rendering AND when printing AND cross-browser (INCLUDING IE6) then, like the others, good luck man... you might as well try to summon Bahamut using only your sheer force of will (or materia I guess). http://stackoverflow.com/questions/1477784/how-can-i-get-browsers-other-than-ie-to-accept-file-urls/1477817#1477817 Comment by Yadyn on How can I get browsers other than IE to accept file urls? Yadyn 2009-09-25T15:23:13Z 2009-09-25T15:23:13Z Could you provide an example? Does this mean messing with IIS or the equivalent? Or is this something I can do at the application level? If it helps, this is an ASP.NET web app. http://stackoverflow.com/questions/1477784/how-can-i-get-browsers-other-than-ie-to-accept-file-urls/1477828#1477828 Comment by Yadyn on How can I get browsers other than IE to accept file urls? Yadyn 2009-09-25T15:21:34Z 2009-09-25T15:21:34Z Would this initiate a download prompt from most browsers or would this call the default handler? For example, I'd much prefer PDFs open in the in-tab Adobe Reader plugin... or at the very least open in the desktop client Adobe Reader... I suppose it is acceptable if the browser offers the &quot;Open or Save&quot; and they can click Open... hmm. http://stackoverflow.com/questions/1477784/how-can-i-get-browsers-other-than-ie-to-accept-file-urls/1477807#1477807 Comment by Yadyn on How can I get browsers other than IE to accept file urls? Yadyn 2009-09-25T15:00:06Z 2009-09-25T15:00:06Z Indeed, the goal is to have things &quot;just work&quot; and not put the onus on the user to reconfigure settings or otherwise change their computer/browser (since many of them are not even remotely computer whizzes). http://stackoverflow.com/questions/1466750/asp-net-loading-controls-at-one-time-on-application-load/1466798#1466798 Comment by Yadyn on ASP.NET - Loading controls at one time (on application load) Yadyn 2009-09-23T20:06:28Z 2009-09-23T20:06:28Z If you are using an ObjectDataSource or SqlDataSource to bind the drop-down control to you can also enable caching on the data source control. http://stackoverflow.com/questions/1467338/authentication-to-sql-2005-using-domain-account-from-asp/1467378#1467378 Comment by Yadyn on authentication to sql 2005 using domain account from ASP Yadyn 2009-09-23T18:56:58Z 2009-09-23T18:56:58Z I think he's using classic ASP, though... even so your answer still applies! http://stackoverflow.com/questions/1467861/how-to-load-webusercontrol-from-classlibrary/1467885#1467885 Comment by Yadyn on How to load webusercontrol from classlibrary Yadyn 2009-09-23T18:53:52Z 2009-09-23T18:53:52Z Like he said, add a reference to the class library assembly, and in your code add a Using/Include statement at the top for the namespace and then use it like anything else. When done initializing the object, you can add it to the page with the Controls.Add method. http://stackoverflow.com/questions/1467838/gridviewpaging-messing-up/1467857#1467857 Comment by Yadyn on gridview_paging messing up Yadyn 2009-09-23T18:42:23Z 2009-09-23T18:42:23Z Only if it isn't already declared in markup or in, say, a Load event. Do you have ViewState disabled? If not, I don't think you'd need to re-databind unless your data source only contains the displayed records (and omits the ones on other pages). http://stackoverflow.com/questions/1467783/i-lose-my-newly-inserted-row-when-i-cancel-the-beforerowupdate-event/1467839#1467839 Comment by Yadyn on I lose my newly inserted row when I cancel the BeforeRowUpdate event Yadyn 2009-09-23T18:38:38Z 2009-09-23T18:38:38Z I agree. It's behaving as expected, actually, and in all likelihood it is re-databinding and thus killing your partly-entered data. Regular GridViews remember the edit row and typed data just fine if you stop them with manually written code. It may be difficult or impossible to prevent the databinding if it is happening due to custom WinUltraGrid code. You might have to resort to what Shelby suggested and roll your own ViewState restore, essentially. Be better if you could let the ViewState due it for you, though. http://stackoverflow.com/questions/1467745/in-asp-net-avoid-rebinding-of-data-to-grid-on-every-pageload/1467757#1467757 Comment by Yadyn on in asp.net avoid rebinding of data to grid on every pageload Yadyn 2009-09-23T18:27:52Z 2009-09-23T18:27:52Z Yep. If you hook into the DataBind event, you'll notice that it does not fire on post back with ViewState enabled unless an action that would invalidate the cached values happens. The GridView is typically fairly smart about knowing when something that would make the cached copy invalid happens. Particularly when used with official data sources, like ObjectDataSource and friends. http://stackoverflow.com/questions/1446539/asp-net-radiobuttonlist-help-if-i-set-a-selecteditem-that-item-doesnt-react-to Comment by Yadyn on ASP.NET RadioButtonList help. If I set a selectedItem, that item doesn't react to SelectedIndexChanged event Yadyn 2009-09-18T20:27:48Z 2009-09-18T20:27:48Z I think we're going to need even more code. I've got a page in a system I'm working on here at work that has almost an identical RadioButtonList. Flow layout, Horizontal, with two in-markup ListItems, first one selected through markup. SelectedIndexChanged works fine. Now, maybe you just left it out of the example, but are you sure you are attaching an event handler for SelectedIndexChanged? I don't see one in your markup, so are you doing it in the page load or something? http://stackoverflow.com/questions/1446539/asp-net-radiobuttonlist-help-if-i-set-a-selecteditem-that-item-doesnt-react-to Comment by Yadyn on ASP.NET RadioButtonList help. If I set a selectedItem, that item doesn't react to SelectedIndexChanged event Yadyn 2009-09-18T20:12:04Z 2009-09-18T20:12:04Z Do you mean that the event fires if you click on any other radio button but even if you click back on the pre-selected one no event fires? http://stackoverflow.com/questions/1313420/prototypes-dom-extensions-are-colliding-with-a-3rd-party-js-library-whats-my/1313594#1313594 Comment by Yadyn on Prototype's DOM extensions are colliding with a 3rd party JS library -- what's my best bet? Yadyn 2009-08-21T18:38:28Z 2009-08-21T18:38:28Z I should note that, having used both Prototype and jQuery, I like both and each have their strengths. I'm often missing abilities from each when project x I'm working on can only use one of them. But that's just it: I've purposefully avoided mixing the two.