User Dillie-O - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T05:15:54Z http://stackoverflow.com/feeds/user/71 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/302244/why-is-my-calendarextender-getting-overlapped-when-rendered 0 Why is my CalendarExtender getting overlapped when rendered? Dillie-O 2008-11-19T15:25:33Z 2009-12-01T09:04:40Z <p>I'm working on a .NET web application and I'm using a CalendarExtender control within it to have the user specify a date. For some reason, when I click the icon to display the calendar, the background seems to be transparent, shown below:</p> <p><img src="http://www.dillieodigital.net/images/CexProblem.png" alt="alt text" /></p> <p>I'm using the extender on other pages and do not run into this issue.</p> <p>I'm not sure if it is worth mentioning, but the calendar is nested within a panel that has a rounded corner extender attached to it, as well as the panel below it (where the "From" is overlapping).</p> <p>Within that panel, I do have a div layout setup to create two columns.</p> <p>EDIT: The other thing to note here is that the section that has the name and "placeholders" for nickname are all ASP.NET label controls, if that matters.</p> http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers 9 Can Agile/Scrum be used by 1 or 2 developers? Dillie-O 2009-09-10T19:19:39Z 2009-11-06T17:17:27Z <p>Everything I've been reading and researching up to this point describes how Agile/Scrum works great with teams of about 4 to 6 members, maybe even more.</p> <p>In my current shop, we have about 8 developers or so, but given the nature of the volume of projects and the number of departments we support, we never have more than 1 or 2 folks assigned to a given project.</p> <p>Can I still use Agile/Scrum with a team of 1 or 2 developers? I'm working on making the pitch to my manager to start working with this methodology, but I need to be able to explain how to scale things back for a small developer crew, or convince them to make sure we get more members on a given project.</p> http://stackoverflow.com/questions/1681167/sql-script-to-creat-a-new-database/1681212#1681212 0 Answer by Dillie-O for sql script to creat a new database Dillie-O 2009-11-05T15:18:03Z 2009-11-05T15:18:03Z <p>Your script in question will create the tables in the OBXKites database (see the USE OBXKites statement in your script)</p> <p>Does the OBXKites database already exist in your server instance? If so, that's probably why it appears that it is creating the tables in the current database, since the script is effectively removing and recreating the OBXKites database. If you need a different name for the database, find all instances of "OBXKites" in your script above after the line that reads "This creates 1 database that uses 2 filegroups" and rename it to the new database name you desire.</p> <p>The only other option could be that the script has execution errors creating the database, if your user account lacks the proper permissions to do so. However, the script continues to execute, creating the tables in the current database you are logged in to, which is why you are seeing the tables there.</p> http://stackoverflow.com/questions/321127/how-do-i-create-a-cross-reference-table-query-for-my-data 0 How do I create a cross reference table/query for my data? Dillie-O 2008-11-26T15:37:38Z 2009-11-04T10:29:25Z <p>I have two simple tables in my database. A "card" table that contains Id, Name, and text of a card, and a "rulings" table which contains the Id of the card, and text detailing the rulings for the card.</p> <p>Often enough in the ruling text, there is a reference to another card in the database. It is easy enough to find this in the text because each card is encapsulated within quotes in the text. It is not uncommon to have multiple cards referenced within the text of the ruling.</p> <p>What I'd like to do is be able to create a cross reference table (or procedure if it is efficient enough) so that when I submit a query for a card, I can find all the ruling records that directly reference the card through the Id and get all of the ruling records where the card name is referenced in the text.</p> <p>What would be the best way to approach this? My environment is SQL 2005, but any kind of "DB agnostic" solutions are greatly accepted here.</p> http://stackoverflow.com/questions/1030423/how-should-i-post-process-100-checkboxes-htmlc-asp-net/1670965#1670965 0 Answer by Dillie-O for How should I post/process 100 checkboxes? HTML+C#/ASP.NET Dillie-O 2009-11-04T00:05:02Z 2009-11-04T00:05:02Z <p>If you're looking for a "lightweight" solution, you could always have a hidden HTML variable and assign a javascript event to each checkbox that adds its index/id to the variable, creating a comma delimited list of Ids to process.</p> <p>Then when the submit/confirm occurs, you can have your code behind page grab this string, convert it into a List/Array/Whatever that works best for your processing and finish things up.</p> http://stackoverflow.com/questions/1669695/restoring-state-of-a-form-in-c-when-application-starts/1669718#1669718 1 Answer by Dillie-O for Restoring state of a form in C# when application starts Dillie-O 2009-11-03T19:49:21Z 2009-11-03T19:49:21Z <p>While there are several approaches to this, if you're dealing with "global" application settings that apply to all users of the application, you can create an app.config file and add the setting keys into the AppSettings portion of the app.config file.</p> <p>The slightly tricky part is modifying those settings and having them stay, since by default simply calling build in accessors to the configuration file will not save the settings. You'll want to use the ConfigurationManager class and make sure to call the Refresh command once things are saved.</p> <p>It took me a day or two to piece this altogether a while back, but I wrote a blog entry about it <a href="http://dillieodigital.net/blog/post/2009/10/02/SimpleGlobal-Editable-Application-Settings-in-Winforms-Applications.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1589289/retrieving-the-windows-username-from-a-logged-in-machine-through-an-intranet-appl/1589725#1589725 0 Answer by Dillie-O for Retrieving the Windows username from a logged-in machine through an intranet application. Dillie-O 2009-10-19T16:29:26Z 2009-10-19T16:29:26Z <p>If setting the directory security to Windows Authentication is not working, change it to Basic Authentication. You'll also need to specify the domain name to authenticate against. This was the only way we could get the security to propagate through from the IIS layer to the DB. Unfortunately this causes the username and password to be sent through clear text. Its not the best solution, but since things were on the Intranet, it worked while we work on updating our login procedure.</p> http://stackoverflow.com/questions/1589457/mysterious-postback-issues-with-javascript-asp-net/1589624#1589624 0 Answer by Dillie-O for Mysterious postback issues with javascript (asp.net) Dillie-O 2009-10-19T16:10:40Z 2009-10-19T16:10:40Z <p>Since you're "hard coding" the values for the text/checkboxes through Javascript at runtime, the ViewState has no knowledge of these values being set and so they will remain blank after a refresh or postback.</p> <p>You'll notice that the Response.Redirect does retain your values because when that server based method is called, it goes through all the form fields and gathers their values to store in the ViewState and repopulates them when it come back from the server request.</p> <p>Have you tried loading the initial values through the Page_Load function the first time the user arrives at the page? This will make sure the values are stored in the ViewState when perform your actions based on the modal popup actions.</p> http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1580066#1580066 0 Answer by Dillie-O for How can I modify the entire ASP.NET page content right before it's output? Dillie-O 2009-10-16T19:48:14Z 2009-10-16T19:48:14Z <p>It sounds like you might want to have HTML literals within your page and then you can simply replace them with the appropriate content on the Page_Load event.</p> <p>This will require you to write out HTML code, as opposed to some simple text, but it sounds like you may be injecting your own JavaScript code or the like in there, which this will work great for.</p> http://stackoverflow.com/questions/1575703/crystal-reports-in-asp-net3-5/1575739#1575739 1 Answer by Dillie-O for Crystal Reports in ASP.NET3.5 Dillie-O 2009-10-15T23:50:32Z 2009-10-15T23:50:32Z <p>Did you drag the Crystal Report Viewer control from the toolbox to your web page? If not, try doing it that way. Visual Studio is usually good to find all the appropriate references and add them when you do things that way.</p> <p>Aside from that, you may need to add some additional libraries to your web.config. In my apps using Crystal, I have the following files referenced:</p> <pre><code>&lt;assemblies&gt; &lt;add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.Enterprise.Framework, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/&gt; &lt;add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/&gt; &lt;/assemblies&gt; </code></pre> <p>In addition, just before the closing system.web tag, I also have the following httpHandler added:</p> <pre><code>&lt;httpHandlers&gt; &lt;add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/&gt; &lt;/httpHandlers&gt; </code></pre> <p>My app is using version 11r2 of Crystal Reports, so a few of the libraries may or may not exist, but most of them are the same.</p> http://stackoverflow.com/questions/1573544/is-it-wrong-to-have-db-server-installed-in-the-ci-server/1573577#1573577 1 Answer by Dillie-O for Is it wrong to have DB Server installed in the CI Server Dillie-O 2009-10-15T16:38:03Z 2009-10-15T16:38:03Z <p>Ideally, you'd have all your "systems" (database, CI, data warehouse, web server, pre-production, etc.) on separate servers since you have the benefits of isolation, performance, and a nice separation of concerns.</p> <p>However, if your limited to physical machines, there's nothing inherently wrong with having these two items on the same server. You just need to make sure you know how they are interacting and you make sure that neither is hogging up too much of the resources.</p> http://stackoverflow.com/questions/1541118/what-is-the-recommended-method-to-validate-an-asp-net-control-with-an-existing-me/1541142#1541142 1 Answer by Dillie-O for What is the recommended method to Validate an ASP.net Control with an existing method? Dillie-O 2009-10-08T23:43:06Z 2009-10-08T23:43:06Z <p>Use a CustomValidator, and set the EnableClientScript property to false, forcing it to go to the server for validation. Then in the custom validator's ServerValidate method, set the args.IsValid property to the result of your methods above.</p> <p>The advantage to using the validator is that when you go to your "submission" method for the form, you can wrap the final processing logic around a If Page.IsValid() block, which will make sure all validators come back as true before processing.</p> http://stackoverflow.com/questions/1536267/export-crystal-report-to-csv-format/1539014#1539014 1 Answer by Dillie-O for Export Crystal Report to CSV Format Dillie-O 2009-10-08T16:37:53Z 2009-10-08T16:37:53Z <p>Assuming you have a nice structured ResultSet, you can export your crystal reports to Excel format, and then do a simple export from Excel into CSV. There are plenty of code snippets out there on how to programmatically work with Excel spreadsheets.</p> http://stackoverflow.com/questions/1494349/solution-with-over-100-projects-takes-over-five-minutes-to-build/1494370#1494370 1 Answer by Dillie-O for Solution with over 100 projects takes over five minutes to build Dillie-O 2009-09-29T19:06:40Z 2009-09-29T19:06:40Z <p>You can right click on an individual project in the Solution Explorer and select the option to build just that project. If there are any necessary projects in the build order, it will build those too, but this allows you to only build the necessary items. </p> http://stackoverflow.com/questions/1488565/how-to-stick-a-footer-to-bottom-in-css/1488588#1488588 0 Answer by Dillie-O for How to stick a footer to bottom in css? Dillie-O 2009-09-28T18:27:47Z 2009-09-28T19:35:11Z <p>I had a similar issue with this sticky footer tutorial. If memory serves, you need to put your form tags within your &lt;<code>div class=Main /&gt;</code> section since the form tag itself causes issues with the lineup.</p> http://stackoverflow.com/questions/1473626/how-to-setup-forms-authentication-with-windowsidentity-and-sql-server-integrated 0 How to setup Forms Authentication with WindowsIdentity and SQL Server Integrated Security Dillie-O 2009-09-24T19:14:22Z 2009-09-24T21:19:56Z <p>Here is our current setup. We have Active Directory configured (domain named mis1) that handles all of our authentication issues. We have our web applications setup for impersonation=true so that we can have our database queries called as the user logged in. For this particular application, IIS is set to Anonymous access to we can have Forms Authentication.</p> <p>For our database security, we have local groups setup on the database server and add users into these groups as needed per application. For instance, we would have a "FancyPantsManager" group and a "FancyPantsUser" group for the same FancyPants application. We then setup SQL Server 2005 logins to map to these local groups on the server.</p> <p>What I want to do is to present a login page for the user that authenticates off of AD and then if successful, goes to the database server to get their roles (by calling xp_logininfo) to store in the user's session.</p> <p>So far I have the forms authentication successfully authenticating off of Active Directory by doing a p/Invoke on the LogonUser method from the avapi32.dll file. I then take the resulting token and generate a WindowsIdentity object and impersonate the user. The code looks like this:</p> <pre><code>Private Sub loginMain_Authenticate _ (ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) _ Handles loginMain2.Authenticate ' Assume variables properly declared IsAuthenticated = LogonUser(UserName, LOGON_DOMAIN, UserPass, LOGON_TYPE, LOGON_PROVIDER, ResultToken) If IsAuthenticated ' Setup impersonation for validated user. WindowsId = New WindowsIdentity(ResultToken) IdentContext = WindowsId.Impersonate() ' Call stored procedure to retrieve roles using validated user for login. GetUserRoles(UserName) End If End Sub </code></pre> <p>When I step through the debugger and enter my proper Id and password. I am authenticated, and looking at the WindowsIdentity object that is generated, it states my Id is "mis1\c07884" which is precisely what is needed for impersonation to get to the SQL Server. However, when the GetRoles method is called, I get the following error message:</p> <pre><code>System.Data.SqlClient.SqlException: Could not obtain information about Windows NT group/user 'c07884', error code 0xffff0002. </code></pre> <p>It seems to me that something is not occurring properly with the impersonation process. What am I missing?</p> http://stackoverflow.com/questions/1467676/what-if-any-documentation-should-be-written-before-quitting-a-job/1467851#1467851 6 Answer by Dillie-O for What, if any, documentation should be written before quitting a job? Dillie-O 2009-09-23T18:34:21Z 2009-09-23T18:34:21Z <p>Regardless of the current state of the application, I've been in the process of writing "white papers" for the apps we create around here. It is typically about 1 page long and contains:</p> <ol> <li>Who requested the app.</li> <li>Which department(s)/group(s) are involved.</li> <li>The date the app was requested.</li> <li>The estimated delivery date of the app.</li> <li>A brief description of the apps functionality/purpose.</li> <li>The justification for creating the app.</li> <li>The high level architecture of the app (A web based app that interfaces with the third party system to spit out pretty crystal reports.)</li> <li>The developers and primary folks working on the app.</li> <li>The application architecture (SQL 2K5, IIS 7, C# 3.5)</li> <li>Any dependencies (systems/libraries/applications) the app has.</li> <li>Any "gotchas" or issues of note (Such as the customer still doesn't have their third party system with clean data, so duplicate records have to be manually filtered out)</li> </ol> <p>Leave this document physically and digitally with your boss or whomever is going to take things over. I find this the proper balance that gets somebody off to a good start with working with the application without having to document yourself to death with every jot and tiddle.</p> http://stackoverflow.com/questions/1460279/asp-net-mvc-asp-net-ajax-toolkit-autocompleteextender/1463013#1463013 1 Answer by Dillie-O for ASP.NET MVC & ASP.NET AJAX Toolkit AutoCompleteExtender Dillie-O 2009-09-22T22:38:46Z 2009-09-22T22:38:46Z <p>If the idea of consuming an ASMX web service is an issue, another alternative is to configure the autocomplete control to call a page method, which can reside in the code behind of the page (or control) in question.</p> <p>An overview of how to set this up can be found <a href="http://allwrong.wordpress.com/2007/03/13/ms-ajax-autocomplete-extender-using-a-page-method/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1456201/2005-web-service-that-i-cannot-consume-in-3-5-app/1456235#1456235 2 Answer by Dillie-O for 2005 web service that I cannot consume in 3.5 app Dillie-O 2009-09-21T19:01:05Z 2009-09-21T19:01:05Z <p>If I'm following your process, you're using the "Add Service Reference" option through your project in Visual Studio.</p> <p>By default, the 3.5 apps want to leverage the newer WCF framework, which doesn't use the older web service architecture found in your ASMX style pages. However, you can still add the older services, it just takes a little more work.</p> <p>When this dialog opens up, there should be a button at the bottom at the page that says "Add Web Reference." Click this button and it should expose the "legacy" methods that are available.</p> http://stackoverflow.com/questions/1423559/asp-vb-net-formatting-every-row-of-a-gridview/1423594#1423594 0 Answer by Dillie-O for ASP/VB .NET Formatting every row of a gridview? Dillie-O 2009-09-14T19:58:51Z 2009-09-14T19:58:51Z <p>What you want to do is to use the RowDataBound event and do your databinding at that point. The ToString method of the DateTime object can be overridden based on the format code you need. Doing it this way you do it like this:</p> <pre><code> Private Sub FormatMyGridView _ (ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) _ Handles gvMyGridView.RowDataBound Dim drItems As DataRow ' Grid Column Layout (Handy for formatting multiple items) ' 0 - View Details Hyperlink ' 1 - Id ' 2 - Department # ' 3 - Request Type ' 4 - Employee Number ' 5 - Employee Name ' 6 - Status ' 7 - Effective Date If e.Row.RowType = DataControlRowType.DataRow Then drRequest =DirectCast(e.Row.DataItem, System.Data.DataRowView).Row e.Row.Cells(7).Text = drItems.MyDateField.ToString("MM/dd/yyyy") End If End Sub </code></pre> http://stackoverflow.com/questions/1407828/dynamic-ids-not-working-in-a-gridview-is-there-any-way-to-prevent-duplicate-id/1407919#1407919 0 Answer by Dillie-O for Dynamic Id's not working in a GridView. Is there any way to prevent duplicate id's in a gridview? Dillie-O 2009-09-10T21:50:53Z 2009-09-10T21:50:53Z <p>Check out <a href="http://stackoverflow.com/questions/228549/get-gridview-selected-row-datakey-in-javascript">this question</a>. It will put in your Ids in a manner easily retrieved by Javascript.</p> http://stackoverflow.com/questions/31326/is-there-a-browser-equivalent-to-ies-clearauthenticationcache 1 Is there a browser equivalent to IE's ClearAuthenticationCache? Dillie-O 2008-08-27T23:34:19Z 2009-09-10T19:03:57Z <p>I have a few internal .net web application here that require users to "log out" of them. I know this may seem moot on an Intranet application, but nonetheless it is there.</p> <p>We are using Windows authentication for our Intranet apps, so we tie in to our Active Directory with Basic Authentication and the credentials get stored in the browser cache, as opposed to a cookie when using .net forms authentication.</p> <p>In IE6+ you can leverage a special JavaScript function they created by doing the following:</p> <pre><code>document.execCommand("ClearAuthenticationCache", "false") </code></pre> <p>However, for the other browsers that are to be supported (namely Firefox at the moment, but I strive for multi-browser support), I simply display message to the user that they need to close their browser to log out of the application, which effectively flushes the application cache.</p> <p>Does anybody know of some commands/hacks/etc. that I can use in other browsers to flush the authentication cache?</p> http://stackoverflow.com/questions/1406329/how-to-get-a-non-techie-coworker-to-be-able-to-hand-you-content-and-documents-in/1406362#1406362 3 Answer by Dillie-O for How to get a non-techie coworker to be able to hand you content and documents in HTML? Dillie-O 2009-09-10T16:34:33Z 2009-09-10T16:34:33Z <p>What about setting up a user documentation Wiki for the program, and potentially others?</p> <p>That way your documentation folks have a "word like" environment to work with, even if they are copying and pasting their content from Word into the Wiki. You have a very tech friendly way of managing the content.</p> http://stackoverflow.com/questions/1380719/email-solution-for-web-application/1380761#1380761 1 Answer by Dillie-O for Email solution for web application Dillie-O 2009-09-04T18:14:43Z 2009-09-04T18:14:43Z <p>Typically no. Make sure that the web server has the SMTP service installed on the system and you can use <a href="http://www.systemnetmail.com/" rel="nofollow">system.net.mail</a> class. This should handle all of your basic e-mail sending needs.</p> <p>If you start to run into issues with a large volume of registered users or issues with having too many BCC addresses in your bulk mail, then you will want to look into a basic mail manager (something that could send your bulk messages in bursts) or a full fledged e-mail server.</p> http://stackoverflow.com/questions/1368737/yet-another-elmah-problem-works-everywhere-but-production/1368762#1368762 0 Answer by Dillie-O for Yet another elmah problem ... works everywhere but production Dillie-O 2009-09-02T16:26:41Z 2009-09-02T16:26:41Z <p>Have you properly setup the permissions on the database for ELMAH? Depending on if you are you using impersonation with your web application, you may have to grant privileges to additional users to the stored procedures/tables.</p> http://stackoverflow.com/questions/1368718/troube-with-iismaybe/1368740#1368740 0 Answer by Dillie-O for troube with iis(maybe) Dillie-O 2009-09-02T16:23:25Z 2009-09-02T16:23:25Z <p>If there are some cached database credentials within the application, simply recycling the application pool for which it is in will flush that out. If you're not familiar with the application pools, simply restart IIS and that will do the same thing.</p> <p>If you don't have credentials cached, could you specify where the credentials are being stored, such as a web.config file, custom library, etc?</p> http://stackoverflow.com/questions/1363368/should-i-generate-a-complex-object-in-the-database-or-data-access-layer 3 Should I generate a complex object in the database or data access layer? Dillie-O 2009-09-01T16:17:08Z 2009-09-02T09:03:30Z <p>I'm working on an application for one of our departments that contains medical data. It interfaces with a third party system that we have here. </p> <p>The object itself (a claim) isn't terribly complex, but due to the nature of the data and the organization of the database, retrieving the claim data is very complex. I cannot simply join all the tables together and get the data. I need to do a "base" query to get the basics of the claim, and then piece together supplemental data about the claim based on various issues.</p> <p>Would it be better to when working with this data:</p> <ol> <li><p>Generate the object in a stored procedure, where all of the relevant data is readily available, and iterate through a table variable (using SQL Server 2005) to piece together all the supplemental information.</p></li> <li><p>Generate the object in the data access layer, where I have a little more powerful data manipulation at my disposal, and make a bunch of quick and simple calls to retrieve the lookup data.</p></li> <li><p>Use an OR/M tool and map out all the complex situations to generate the object.</p></li> <li><p>Something else.</p></li> </ol> <p>EDIT: Just to clarify some of the issues listed below. The complexity really isn't a business issue. If a claim as a type code of "UB", then I have to pull some of the supplemental data from Table X. If the claim has a type code of "HCFA", then I have to pull some of the data from Table Y. It is those types of things. I hope this helps.</p> http://stackoverflow.com/questions/1349542/john-carmacks-unusual-fast-inverse-square-root-quake-iii/1349594#1349594 2 Answer by Dillie-O for John Carmack's Unusual Fast Inverse Square Root (Quake III) Dillie-O 2009-08-28T21:57:52Z 2009-08-28T21:57:52Z <p>According <a href="http://www.beyond3d.com/content/articles/8/" rel="nofollow">to this nice article</a> written a while back...</p> <blockquote> <p>The magic of the code, even if you can't follow it, stands out as the i = 0x5f3759df - (i>>1); line. Simplified, Newton-Raphson is an approximation that starts off with a guess and refines it with iteration. Taking advantage of the nature of 32-bit x86 processors, i, an integer, is initially set to the value of the floating point number you want to take the inverse square of, using an integer cast. i is then set to 0x5f3759df, minus itself shifted one bit to the right. The right shift drops the least significant bit of i, essentially halving it.</p> </blockquote> <p>It's a really good read. This is only a tiny piece of it.</p> http://stackoverflow.com/questions/1323802/how-to-dynamically-create-textboxes-depends-on-database-record-count-in-asp-net/1323849#1323849 0 Answer by Dillie-O for How to dynamically create textboxes depends on database record count in asp.net? Dillie-O 2009-08-24T18:06:05Z 2009-08-24T18:06:05Z <p>Depending on the nature of the data you need to process in the TextBox, you could easily have an HTML literal control on the page as a placeholder. Then in your code behind page, you simply add the proper HTML code to create the number of TextBoxes needed and set the resulting code to your HTML literal control. If you needed to get at the data, you can simply add a "runat=server" attribute to all of your standard HTML textbox controls.</p> <p>This approach gives you a little more immediate flexibility on how the textboxes will look without having to setup a DataList or something to that nature.</p> http://stackoverflow.com/questions/1323802/how-to-dynamically-create-textboxes-depends-on-database-record-count-in-asp-net/1323834#1323834 2 Answer by Dillie-O for How to dynamically create textboxes depends on database record count in asp.net? Dillie-O 2009-08-24T18:03:11Z 2009-08-24T18:03:11Z <p>The page control, the panel control, and several others have a .Controls object in which you can dynamically add new controls to the page. It then becomes something as simple as:</p> <pre><code>Dim txtDynamic As New Textbox() Me.Page.Controls.Add(txtDynamic) </code></pre> <p>You may want to apply additional properties to the controls, in which check out <a href="http://msdn.microsoft.com/en-us/library/kyt0fzt1.aspx" rel="nofollow">this MSDN article</a> with gives the full details on adding controls.</p> http://stackoverflow.com/questions/425559/how-do-i-customize-the-auto-commenting-text-in-visual-studio/425600#425600 Comment by Dillie-O on How do I customize the auto commenting text in Visual Studio? Dillie-O 2009-11-19T19:19:54Z 2009-11-19T19:19:54Z Just by means of an update, GhostDoc 2.5 fully supports commenting in VB.NET. I simply went to the GhostDoc Options and added my history tag (with a variable to put in the current date) and I was all set. http://stackoverflow.com/questions/1765674/unable-to-write-a-file-to-the-server Comment by Dillie-O on Unable to write a file to the server Dillie-O 2009-11-19T18:54:55Z 2009-11-19T18:54:55Z Can you supply the code? It may be there is an issue initializing the file stream, or a failure to close the file stream in your code that works when the worker process closes out on your local machine, but never reaches that point on the hosted server. http://stackoverflow.com/questions/1757855/asp-net-2-0-or-3-5/1757923#1757923 Comment by Dillie-O on ASP.NET 2.0 or 3.5? Dillie-O 2009-11-18T18:17:05Z 2009-11-18T18:17:05Z And just as an added odd note, the next version of .Net is going to be .Net 4, not 4.0. Also of note is that version 4 is an upgrade to the CLR, so you'll see a new value in the drop down list of 4. http://stackoverflow.com/questions/1709676/source-control-in-new-projects/1709696#1709696 Comment by Dillie-O on Source control in new projects Dillie-O 2009-11-10T17:32:35Z 2009-11-10T17:32:35Z Plus if you get hit by a bus or something, the developer that needs to pick up where you left off has a complete copy of what you've been working on. Otherwise they have to hack into your workstation and attempt to update all the changes after a week delay. Been there, done that, not fun (note: person not hit by bus). http://stackoverflow.com/questions/1669695/restoring-state-of-a-form-in-c-when-application-starts/1669718#1669718 Comment by Dillie-O on Restoring state of a form in C# when application starts Dillie-O 2009-11-03T19:50:08Z 2009-11-03T19:50:08Z Just by means of comment, the code in the post is in VB.net, but it is easy enough to convert to C#. http://stackoverflow.com/questions/1667744/how-do-you-end-an-application-from-a-web-method-within-a-web-service/1669412#1669412 Comment by Dillie-O on How do you end an Application from a Web Method within a Web Service? Dillie-O 2009-11-03T18:56:46Z 2009-11-03T18:56:46Z No, all that will do is flush any of the current user's credentials involved with connecting to the web service in question. It will not stop the service (others could be connected and have different session data) nor will it kill any processes you had attached. http://stackoverflow.com/questions/1608457/why-do-my-aspx-pages-never-load-when-i-point-my-2-0-application-to-a-remote-sql-s Comment by Dillie-O on Why do my aspx pages never load when I point my 2.0 application to a remote SQL server? Dillie-O 2009-10-22T16:38:09Z 2009-10-22T16:38:09Z When you say the &quot;my app never loads&quot; do you mean that the start page is never displayed and the processing indicator on the web page keeps spinning, or you get a blank page, or you get a basic looking page with no data on it, or something else? http://stackoverflow.com/questions/1578070/what-options-are-there-for-a-quick-embedded-db-in-net/1578079#1578079 Comment by Dillie-O on What options are there for a quick embedded DB in .NET? Dillie-O 2009-10-16T15:52:43Z 2009-10-16T15:52:43Z Just as an added caveat for the SQLite wrapper, it supports LINQ. http://stackoverflow.com/questions/1556422/best-language-for-web-programming Comment by Dillie-O on Best language for web programming Dillie-O 2009-10-12T19:30:27Z 2009-10-12T19:30:27Z Ooof, too subjective in my book. There's plenty of modern languages out there that will do exactly what you're looking for (.Net, Java, Python, Ruby, etc.) Find the one that works best with what your shop knows (or can learn) and can continue to support. http://stackoverflow.com/questions/1541118/what-is-the-recommended-method-to-validate-an-asp-net-control-with-an-existing-me/1541142#1541142 Comment by Dillie-O on What is the recommended method to Validate an ASP.net Control with an existing method? Dillie-O 2009-10-09T15:22:41Z 2009-10-09T15:22:41Z Not really. Even if you have validators on the page, a page submission will still occur whether or not they come back as valid or not. Typically the validators will trigger on their own, especially if the client side scripts are generated, and simply set their state to true or false depending on if they are valid or not. It is up to you to determine whether or not to process the validator data. http://stackoverflow.com/questions/1499823/xaml-coding-guidelines/1499882#1499882 Comment by Dillie-O on XAML Coding Guidelines Dillie-O 2009-09-30T18:45:17Z 2009-09-30T18:45:17Z +1 for finding the WPF Disciples link. I follow a couple of their blogs and they really seem to be on the forefront of WPF development. http://stackoverflow.com/questions/1488565/how-to-stick-a-footer-to-bottom-in-css/1488588#1488588 Comment by Dillie-O on How to stick a footer to bottom in css? Dillie-O 2009-09-28T19:35:02Z 2009-09-28T19:35:02Z :: Looks at answer:: Look at that, it filtered out the tag. Updated the answer. Does that make sense? http://stackoverflow.com/questions/1473626/how-to-setup-forms-authentication-with-windowsidentity-and-sql-server-integrated/1474091#1474091 Comment by Dillie-O on How to setup Forms Authentication with WindowsIdentity and SQL Server Integrated Security Dillie-O 2009-09-24T23:04:43Z 2009-09-24T23:04:43Z Good question. I'm not sure at the moment. I want to say yes, but need to go talk to our Ops guys on that one. http://stackoverflow.com/questions/1473626/how-to-setup-forms-authentication-with-windowsidentity-and-sql-server-integrated/1474091#1474091 Comment by Dillie-O on How to setup Forms Authentication with WindowsIdentity and SQL Server Integrated Security Dillie-O 2009-09-24T22:26:52Z 2009-09-24T22:26:52Z When I call GetUserRoles, the connection string is configured to use SSPI, which I'm assuming means it will take the impersonated credentials of the WindowsIdentity logged in, which for some reason comes back as just c07884 without the domain, is there a way to update the &quot;name&quot; associated with the login? http://stackoverflow.com/questions/1473626/how-to-setup-forms-authentication-with-windowsidentity-and-sql-server-integrated/1474091#1474091 Comment by Dillie-O on How to setup Forms Authentication with WindowsIdentity and SQL Server Integrated Security Dillie-O 2009-09-24T22:25:30Z 2009-09-24T22:25:30Z The problem I've run into with the WindowsIdentity.Groups is that the groups are local to the database server, and not to the domain name as a whole. Will Groups be able to pull memberships off of individual servers and not domain wide?