User Andrew - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:25:08Z http://stackoverflow.com/feeds/user/5662 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s/1827236#1827236 0 Answer by Andrew for Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.' Andrew 2009-12-01T16:19:05Z 2009-12-01T16:19:05Z <p>I have <strong>Visual Studio Team System 2008 Development Edition</strong>, and had to remove all updates and Hotfixes: </p> <ul> <li>Update <code>KB972221</code></li> <li>Hotfix <code>KB973674</code></li> <li>Hotfix <code>KB971091</code></li> </ul> <p>Reboot, then the following Hotfix appeared, which I then removed as per @riaraos' <a href="http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s/633076#633076">answer</a>:</p> <ul> <li>Hotfix <code>KB952241</code></li> </ul> <p>Before the Change/Remove would work!</p> <p>Hope that helps someone else.</p> http://stackoverflow.com/questions/1482034/extjs-how-to-return-json-success-w-data-using-asp-net-mvc/1824556#1824556 0 Answer by Andrew for ExtJS: how to return json success w/ data using asp.net mvc Andrew 2009-12-01T07:29:53Z 2009-12-01T07:29:53Z <p>I used @<a href="http://stackoverflow.com/users/179580/wellington" title="Wellingtons user page on SO">Wellington</a>'s <a href="http://stackoverflow.com/questions/1482034/extjs-how-to-return-json-success-w-data-using-asp-net-mvc/1482159#1482159" title="Wellington's answer to this question">answer</a> with VS2010 (beta2) and MVC 2 (beta), and got the following error:</p> <p><em><h3>Method 'System.String ToString(System.String)' has no supported translation to SQL.</h3></em></p> <p>Which, I think, is a serialization problem (?)</p> <p>Here's what I changed to make it work..</p> <pre><code>public JsonResult Index() { var json = new { success = true, data = from user in repository.Users select new JsonUser(user) }; return Json(json); } </code></pre> <p><code>JsonUser</code> is a simple, serializable object - I got the idea from a <a href="http://www.asp.net/learn/mvc-videos/video-7093.aspx" rel="nofollow" title="Scott Hanselman - Creating NerdDinner with ASP.Net MVC">podcast</a> by @<a href="http://stackoverflow.com/users/6380/scott-hanselman" title="Scott Hanselmans user page on SO">Scott Hanselman</a></p> <p>Here's an example of <code>JsonUser</code>:</p> <pre><code>public class JsonUser { public long id { get; set; } public string name { get; set; } public string dateJoined { get; set; } ... public JsonUser(User user) { id = user.ID; name = user.Name; dateJoined = user.DateJoined.ToString("yyyy-MM-dd"); ... } } </code></pre> http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query 2 How do I exclude Weekend days in a SQL Server query? Andrew 2009-11-26T14:28:49Z 2009-11-26T15:02:47Z <p>How do I exclude values in a <code>DateTime</code> column that are Saturdays or Sundays?</p> <p>For example, given the following data:</p> <pre><code>date_created '2009-11-26 09:00:00' -- Thursday '2009-11-27 09:00:00' -- Friday '2009-11-28 09:00:00' -- Saturday '2009-11-29 09:00:00' -- Sunday '2009-11-30 09:00:00' -- Monday </code></pre> <p>this is the result I'm looking for:</p> <pre><code>date_created '2009-11-26 09:00:00' -- Thursday '2009-11-27 09:00:00' -- Friday '2009-11-30 09:00:00' -- Monday </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1803996#1803996 0 Answer by Andrew for How do I exclude Weekend days in a SQL Server query? Andrew 2009-11-26T14:30:37Z 2009-11-26T14:30:37Z <p>Try the <code>DATENAME()</code> function:</p> <pre><code>select [date_created] from table where DATENAME(WEEKDAY, [date_created]) &lt;&gt; 'Saturday' and DATENAME(WEEKDAY, [date_created]) &lt;&gt; 'Sunday' </code></pre> http://stackoverflow.com/questions/1781917/writing-a-visual-studio-plugin/1781998#1781998 0 Answer by Andrew for Writing a visual studio plugin? Andrew 2009-11-23T09:25:17Z 2009-11-23T09:25:17Z <p>Scott Hanselman has a podcast episode: <a href="http://www.hanselminutes.com/default.aspx?showID=196" rel="nofollow" title="Inside a Visual Studio Plugin - CodeRush with Mark Miller">"Inside a Visual Studio Plugin - CodeRush with Mark Miller"</a></p> http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters 8 ASP.Net MVC - handling bad URL parameters Andrew 2008-10-25T12:47:20Z 2009-11-05T15:01:53Z <p>What's the best way to handle a visitor constructing their own URL and replacing what we expect to be an ID with anything they like?</p> <p>For example:</p> <p><a href="http://stackoverflow.com/questions/236349">http://stackoverflow.com/questions/236349</a></p> <p>But the user could just as easily replace the URL with:</p> <p><a href="http://stackoverflow.com/questions/foo">http://stackoverflow.com/questions/foo</a></p> <p>I've thought of making every Controller Function parameter a <code>String</code>, and using <code>Integer.TryParse()</code> on them - if that passes then I have an ID and can continue, otherwise I can redirect the user to an Unknown / not-found or index View.</p> <p>Stack Overflow handles it nicely, and I'd like to too - how do you do it, or what would you suggest?</p> http://stackoverflow.com/questions/1193112/odp-net-and-clickonce-possible/1193281#1193281 0 Answer by Andrew for ODP.NET and ClickOnce possible? Andrew 2009-07-28T10:39:31Z 2009-07-28T11:58:55Z <p>In short, <strong>no</strong>.This is because the Oracle Data Provider for .Net needs to be installed on the client machine with the Oracle Universal Installer, though as Marc Gravell points out you can use Oracle's Instant Client (which is a handful of binaries and so easily deployed via ClickOnce).</p> <p>Our applications work the same way as you describe yours - WinForms talking direct to an Oracle Database, and we're using <a href="http://www.devart.com/dotconnect/oracle/" rel="nofollow">DevArt's dotConnect for Oracle</a> 3rd party libraries, and I think they're fantastic.</p> <p>The 'killer' feature for me is that they support a <a href="http://www.devart.com/dotconnect/oracle/features.html" rel="nofollow" title="Features - top of the list!">direct connection to an Oracle Database</a> - no Oracle Client Installation or 'TNSNames.ora' required whatsoever.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/991290#991290 2 Answer by Andrew for Great programming quotes Andrew 2009-06-13T19:04:42Z 2009-06-13T19:04:42Z <p>Here's one for the <a href="http://www.lhotka.net/cslanet/" rel="nofollow" title="Rockford Lhotka's CSLA .NET framework">CSLA.Net</a> programmers, a twist on the catchprase of The Fast Show's '<a href="http://en.wikipedia.org/wiki/Swiss%5FToni" rel="nofollow" title="Swiss Toni, The Fast Show - Wikipedia">Swiss Toni</a>'..</p> <blockquote> <p>"Programming with the CSLA is like making love to a beautiful woman. First you have to check the IsDirty() flag"</p> <p>- Dean Biggs</p> </blockquote> <p>Still makes me chuckle :o)</p> http://stackoverflow.com/questions/427728/how-do-i-pass-a-string-into-a-function-in-an-nvelocity-template 0 How do I pass a String into a function in an NVelocity Template? Andrew 2009-01-09T11:19:22Z 2009-06-04T21:31:47Z <p>I'm using the <strong><a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity Templating engine</a></strong> to produce a <strong>fixed-length</strong> field output - you know the kind of thing:</p> <pre><code>Field Start Pos Field Length Notes ---------- --------- ------------ --------- Supplier 1 7 Leading Zeros GRN 8 9 - ... e.g. &gt;0001234 123A&lt; </code></pre> <p>The problem is <strong>I'm trying to call String.PadRight() with the overload to specify the leading zero, and NVelocity is having none of it..</strong></p> <p><strong>This works:</strong></p> <pre><code>$Document.SupplierCode.PadRight(7) </code></pre> <p><strong>But this doesn't:</strong></p> <pre><code>$Document.SupplierCode.PadRight(7,"0") </code></pre> <p><strong>I've tried:</strong></p> <ul> <li><p>Single Quotes (<code>'0'</code>)</p></li> <li><p>Double Single-Quotes (<code>''0''</code>)</p></li> <li><p>Double Quotes (<code>"0"</code>)</p></li> <li><p>Double Double-Quotes (<code>""0""</code>)</p></li> <li><p>Escaping the quotes for all of the above (<code>\"0\"</code>)</p></li> <li><p>No Quotes!</p></li> </ul> <p>All I've found to work from is the <a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity Homepage</a>, and the <a href="http://velocity.apache.org/engine/releases/velocity-1.5/vtl-reference-guide.html" rel="nofollow">Velocity Templating Language Reference page</a>, niether are pointing me at a solution.</p> <p>Sorry I'm unable to supply or point you somewhere where you can test out your ideas for yourself, but any suggestions you may have will be most welcome!</p> <p>Thanks for your help ;o)</p> http://stackoverflow.com/questions/330348/which-on-screen-keyboard-for-touch-screen-application/934701#934701 2 Answer by Andrew for Which On-Screen Keyboard for Touch Screen Application? Andrew 2009-06-01T12:54:30Z 2009-06-01T12:54:30Z <p>I know this question is tagged 'c++', but here's an option for .Net that I found and integrated with less than 5 minutes work. (I've looked, and there isn't a .Net flavour of this question, and I guess it could be ported to C++ with very little effort too).</p> <p>It uses the standard Windows On-Screen Keyboard (osk.exe), resizes it, docks it to the bottom of the screen and removes the title and menu bars, all from one call in your application.</p> <p><a href="http://www.codeproject.com/KB/miscctrl/ClKeyboard.aspx" rel="nofollow" title="The Code Project - Manage Windows XP On Screen Keyboard">The Code Project - Manage Windows XP On Screen Keyboard</a></p> <p>The download is a single VB.Net class.</p> http://stackoverflow.com/questions/678339/what-is-the-fastest-way-to-load-data-into-a-oracle-database-with-net/678459#678459 0 Answer by Andrew for What is the fastest way to load data into a ORACLE database with .NET? Andrew 2009-03-24T17:39:14Z 2009-03-24T17:39:14Z <p>I'd look at the <a href="http://devart.com/dotconnect/oracle/" rel="nofollow" title="DevArt dotConnect for Oracle homepage">3rd party dotConnect libraries from DevArt</a> (formerly CoreLab). Although I've not used their <a href="http://devart.com/dotconnect/oracle/docs/Devart.Data.Oracle~Devart.Data.Oracle.OracleLoader.html" rel="nofollow" title="DevArt OracleLoader component - documentation">OracleLoader</a> component specifically, I use their connection, command, datareader, and dataadapter objects daily, and have found them to be very fast indeed.</p> <p>Hope that helps :o)</p> http://stackoverflow.com/questions/661506/i-want-to-use-asp-net-mvc-my-server-is-win-2003-and-it-uses-iis-6-will-all-this/661525#661525 0 Answer by Andrew for I want to use ASP.Net MVC. My server is Win 2003 and it uses IIS 6, will all this work together? Andrew 2009-03-19T09:17:49Z 2009-03-19T09:17:49Z <p>Yes, it's possible to run an ASP.Net MVC site on Windows 2003 server running IIS 6.0, though there's a little more configuration to do in IIS 6.0 because of the routing. Oh, and you'll need .Net Framework 3.5 SP1.</p> <p>The documentation and steps you'll need to take are on the <a href="http://www.asp.net/learn/mvc/tutorial-08-cs.aspx" rel="nofollow">ASP.Net MVC deployment page</a> :o)</p> http://stackoverflow.com/questions/532923/windsor-ioc-sample-help-httpservicewatcher-which-was-not-registered 0 Windsor IoC Sample Help - "HttpServiceWatcher& which was not registered." Andrew 2009-02-10T16:01:21Z 2009-02-10T17:20:03Z <p>I'm following the <a href="http://www.castleproject.org/container/gettingstarted/part1/code.html" rel="nofollow">Windsor Inversion of Control (IoC) Getting Started example</a>, which is in C#, but I'm implementing it in VB.Net, and I've run into a small problem..</p> <p>Here's the exception I'm getting in full:</p> <blockquote> <p>Can't create component 'form.component' as it has dependencies to be satisfied. form.component is waiting for the following dependencies: </p> <p>Services: - InversionOfControl.HttpServiceWatcher&amp; which was not registered.</p> </blockquote> <p>but I think I am registering it - it's the first one registered!</p> <p>I'm using VB 8 (Visual Studio 2005 / .Net 2.0), and <a href="http://www.castleproject.org/castle/download.html" rel="nofollow" title="Windsor download page">Windsor 1.0 RC3</a>.</p> <p><hr /></p> <p>Here's my <strong>App.vb</strong>:</p> <pre> Imports Castle.Windsor Public Class App Public Shared Sub Main() Dim container As New WindsorContainer 'register the components container.AddComponent("httpservicewatcher", _ GetType(HttpServiceWatcher)) container.AddComponent("email.notifier", GetType(IFailureNotifier), _ GetType(EmailFailureNotifier)) container.AddComponent("alarm.notifier", GetType(IFailureNotifier), _ GetType(AlarmFailureNotifier)) container.AddComponent("form.component", GetType(Form1)) 'request the component from the container Dim aForm As Form = container(GetType(Form1)) 'use it! Application.Run(aForm) 'release it container.Release(aForm) End Sub End Class </pre> <p><strong>Form1</strong></p> <pre> Public Class Form1 Private oServiceWatcher As HttpServiceWatcher Sub New(ByRef ServiceWatcher As HttpServiceWatcher) ' This call is required by the Windows Form Designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. Me.oServiceWatcher = ServiceWatcher End Sub End Class </pre> <p><strong>HttpServiceWatcher</strong></p> <pre> Public Class HttpServiceWatcher Private oNotifier As IFailureNotifier Sub New(ByRef Notifier As IFailureNotifier) oNotifier = Notifier End Sub Sub StartWatching() 'should start a thread to ping the service 'if (pingresult = Failed) oNotifier.Notify() 'end if End Sub Sub StopWatching() 'stop thread End Sub End Class </pre> <p><strong>IFailureNotifier</strong></p> <pre> Public Interface IFailureNotifier Sub Notify() End Interface </pre> <p><strong>AlarmFailureNotifier</strong> and <strong>EmailFailureNotifier</strong> both implement IFailureNotifier but the <code>Notify()</code> methods are empty</p> <p><hr /></p> <p>I've tried changing the order by putting the IFailureNotifier's first, HttpServiceWatcher 3rd and Form last but I get the same error.</p> <p>I've done a Clean and rebuild, but I get the same error.</p> <p>I'm obviously new to this (as I'm going through the 'Getting Started'), can you point out what I've missed please?</p> <p>Thank you :o)</p> http://stackoverflow.com/questions/479497/how-can-i-learn-csla-net-fast/479542#479542 1 Answer by Andrew for How can I learn CSLA.NET Fast? Andrew 2009-01-26T11:54:05Z 2009-01-26T11:54:05Z <p><strong><a href="http://store.lhotka.net/" rel="nofollow" title="CSLA.Net Store">Get the book</a>. Read the book. Start using the framework :o/</strong></p> <p>I've been working with CSLA.Net for 4 years and I'm still learning new tricks and features every week :o)</p> http://stackoverflow.com/questions/399822/completely-overwriting-a-file-with-velocity-nvelocity/427963#427963 1 Answer by Andrew for Completely overwriting a file with Velocity / NVelocity Andrew 2009-01-09T12:56:51Z 2009-01-09T13:28:06Z <p>I think the solution is to change the <code>FileMode.OpenOrCreate</code> to simply <code>FileMode.Create</code> in the first line</p> <p>From the MSDN Article on <a href="http://msdn.microsoft.com/en-us/library/system.io.filemode.aspx" rel="nofollow" title="MSDN System.IO.FileMode">System.IO.FileMode</a>..</p> <blockquote> <p><strong>FileMode.Create</strong> Specifies that the operating system should create a new file. If the file already exists, it will be overwritten.</p> <p><strong>FileMode.OpenOrCreate</strong> Specifies that the operating system should open a file if it exists; otherwise, a new file should be created.</p> </blockquote> http://stackoverflow.com/questions/427728/how-do-i-pass-a-string-into-a-function-in-an-nvelocity-template/427982#427982 1 Answer by Andrew for How do I pass a String into a function in an NVelocity Template? Andrew 2009-01-09T13:06:53Z 2009-01-09T13:06:53Z <p>One solution that a colleague has come up with is to create another property in the Document object that returns the formatted String:</p> <p>E.g.</p> <pre><code>Public ReadOnly Property SupplierCodeFormatted() As String Get Return Supplier.Code.PadLeft(7, "0") End Get End Property </code></pre> http://stackoverflow.com/questions/395424/automatically-copying-folders-until-a-certain-limit-is-reached/395499#395499 0 Answer by Andrew for Automatically Copying folders until a certain limit is reached Andrew 2008-12-27T22:17:19Z 2008-12-27T22:17:19Z <p>There are tools that will do this - similar to frankodwyer's answer, <a href="http://www.winzip.com/" rel="nofollow">WinZip</a> will take your 100GB, zip it up and split it into any size 'chunks' you'd like - i.e. ~700MB</p> <p>Here's <a href="http://www.winzip.com/powertips.htm#split" rel="nofollow">the page the WinZip split feature</a></p> http://stackoverflow.com/questions/395292/what-potential-do-you-see-in-silverlight/395447#395447 13 Answer by Andrew for What potential do you see in Silverlight? Andrew 2008-12-27T21:42:20Z 2008-12-27T21:42:20Z <p>Silverlight <strong>isn't a flash killer</strong>, it's a tool that allows the vast number of existing Microsoft developers transition to web application development thereby keeping Microsoft in the development game of the future.</p> http://stackoverflow.com/questions/237977/asp-net-mvc-redirecting-to-route-gives-redirect-loop 0 ASP.Net MVC - redirecting to route gives Redirect Loop Andrew 2008-10-26T12:48:50Z 2008-12-26T10:27:17Z <p>This is probably one of those easy questions.. I'm trying to redirect the user after they've successfully authenticated, or return them back to the login page. But the Success page is on a different route and I can't get the redirection to work..</p> <p>Here are my routes in Globals.asax:</p> <pre><code>routes.MapRoute( _ "Default", _ "{controller}/{action}/{id}", _ New With {.controller = "Login", .action = "Index", .id = ""} _ ) routes.MapRoute( _ "Stuff", _ "{controller}/{action}/{id}", _ New With {.controller = "Stuff", .action = "Index", .id = ""} _ ) </code></pre> <p>I've got 2 Controllers: <code>LoginController.vb</code> and <code>StuffController.vb</code>. The <code>Views/Login/Index.aspx</code> file contains a simple form with the code:</p> <pre><code>&lt;form method="post" action="/Login/Authenticate"&gt; </code></pre> <p>The <code>LoginController</code> contains the following code:</p> <pre><code>Function Authenticate() As RedirectToRouteResult ' authentication code commented out ;o) Return RedirectToRoute("Stuff") End Function </code></pre> <p>And the StuffController contains the following:</p> <pre><code>Function Index() ' show stuff.. Return View() ' return /Views/Stuff/Index.aspx End Function </code></pre> <p>Here's what I've tried so far:</p> <ul> <li>Function Authenticate()</li> <li>Function Authenticate() As ActionResult()</li> <li>Function Authenticate() As RedirectToRouteResult()</li> </ul> <p>all of which cause a Redirect Loop timeout in the browser. What am I missing?!</p> http://stackoverflow.com/questions/210635/teacher-time-schedule-algorithm/391067#391067 1 Answer by Andrew for Teacher time schedule algorithm Andrew 2008-12-24T09:12:26Z 2008-12-24T09:12:26Z <p>I'm not sure if this covers the same ground as <a href="http://stackoverflow.com/questions/210635/teacher-time-schedule-algorithm#211552">@Stringent Software's</a> answer (as the name is slightly different), but I have a couple of very good friends who are researching the area of <a href="http://en.wikipedia.org/wiki/Constraint_programming" rel="nofollow">Constraint Programming</a>. Creating timetables is one application of their research.</p> <p><a href="http://web.comlab.ox.ac.uk/people/Chris.Jefferson/index.html" rel="nofollow">Dr Chris Jefferson</a> created a program called <a href="http://minion.sourceforge.net/" rel="nofollow">Minion</a> that you can download from SourceForge, and is a very fast brute force constraint problem solver written in C++</p> http://stackoverflow.com/questions/93361/can-i-serve-a-clickonce-application-with-apache 6 Can I serve a ClickOnce application with Apache? Andrew 2008-09-18T15:01:26Z 2008-12-19T20:10:39Z <p>We're testing our ClickOnce deployed application internally on IIS (Internet Information Services), but we're wondering if we can deploy it to the wider internet using Apache on Linux so we can make use of our existing external website host.</p> <p>If so, is there anything else I need to consider other than as specifying the correct mime types such as <code>.application</code> and <code>.deploy</code>?</p> http://stackoverflow.com/questions/59213/easiest-way-to-add-a-header-and-footer-to-a-printing-printdocument-net-2-0 2 Easiest way to add a Header and Footer to a Printing.PrintDocument (.Net 2.0)? Andrew 2008-09-12T15:05:25Z 2008-12-17T10:52:48Z <p>What's the easiest way to add a header and footer to a .Net PrintDocument object, either pragmatically or at design-time?</p> <p>Specifically I'm trying to print a 3rd party grid control (Infragistics GridEx v4.3), which takes a PrintDocument object and draws itself into it.</p> <p>The resulting page just contains the grid and it's contents - however I would like to add a header or title to identify the printed report, and possibly a footer to show who printed it, when, and ideally a page number and total pages.</p> <p>I'm using VB.Net 2.0.</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/59213/easiest-way-to-add-a-header-and-footer-to-a-printing-printdocument-net-2-0/224934#224934 2 Answer by Andrew for Easiest way to add a Header and Footer to a Printing.PrintDocument (.Net 2.0)? Andrew 2008-10-22T08:55:32Z 2008-12-17T10:52:48Z <p>Following <a href="http://stackoverflow.com/questions/59213/easiest-way-to-add-a-header-and-footer-to-a-printingprintdocument-net-20#61809">booji-boy</a>'s answer, here's what I came up with (which I've simplified for example purposes):</p> <pre><code>Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click Dim oDoc As New Printing.PrintDocument oDoc.DefaultPageSettings.Landscape = True AddHandler oDoc.PrintPage, AddressOf PrintPage oDoc.DocumentName = "Printout" InfragisticsWinGrid.PrintPreview(InfragisticsWinGrid.DisplayLayout, oDoc) End If End Sub Private Sub PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) ' Draw title e.Graphics.DrawString("Report Title"), New Font("Arial", 16), Brushes.Black, 95, 70) ' Draw footer e.Graphics.DrawImage(DirectCast(mResources.GetObject("footer_logo"), Drawing.Bitmap), 95, e.PageBounds.Height - 87) Dim drawFont As New Font("Arial", 8.75) e.Graphics.DrawString("Report Title", drawFont, Brushes.Gray, 190, e.PageBounds.Height - 90) e.Graphics.DrawString("Printed", drawFont, Brushes.Gray, 190, e.PageBounds.Height - 76) e.Graphics.DrawString("Printed By", drawFont, Brushes.Gray, 190, e.PageBounds.Height - 62) ' Draw some grid lines to add structure to the footer information e.Graphics.DrawLine(Pens.Gray, 246, e.PageBounds.Height - 90, 246, e.PageBounds.Height - 48) e.Graphics.DrawLine(Pens.Gray, 188, e.PageBounds.Height - 75, 550, e.PageBounds.Height - 75) e.Graphics.DrawLine(Pens.Gray, 188, e.PageBounds.Height - 61, 550, e.PageBounds.Height - 61) e.Graphics.DrawString("Report", drawFont, Brushes.Black, 250, e.PageBounds.Height - 90) e.Graphics.DrawString(Date.Now.ToShortDateString &amp; " " &amp; Date.Now.ToShortTimeString, drawFont, Brushes.Black, 250, e.PageBounds.Height - 76) e.Graphics.DrawString("Andrew", drawFont, Brushes.Black, 250, e.PageBounds.Height - 62) End Sub </code></pre> <p>I had to play with the values of <code>e.PageBounds.Height - x</code> to get the drawn items to line up.</p> <p>Thanks again <a href="http://stackoverflow.com/users/1433">Booji Boy</a> for the pointer - getting at the ReportPage.Graphics() was exactly what I was after :o)</p> http://stackoverflow.com/questions/163/how-do-i-sync-the-svn-revision-number-with-my-asp-net-web-site/374153#374153 3 Answer by Andrew for How do I sync the SVN revision number with my ASP.NET web site? Andrew 2008-12-17T10:17:00Z 2008-12-17T10:17:00Z <p>If you're using ASP.Net MVC (as StackOverflow does), I've written an <a href="http://www.fatlemon.co.uk/2008/12/automatic-svn-revision-numbering-in-aspnet-mvc/" rel="nofollow" title="Automatic SVN revision numbering in ASP.Net MVC - www.fatlemon.co.uk">easy to follow 3-step guide on how to automatically get and display the latest SVN revision</a>. The guide was inspired by thinking to myself about this very question! :o)</p> http://stackoverflow.com/questions/2308/asp-net-display-svn-revision-number/367011#367011 2 Answer by Andrew for ASP.NET Display SVN Revision Number Andrew 2008-12-14T21:29:15Z 2008-12-15T11:35:19Z <p>If you're using ASP.Net MVC, I've written an <a href="http://www.fatlemon.co.uk/2008/12/automatic-svn-revision-numbering-in-aspnet-mvc/" rel="nofollow" title="Automatic SVN revision numbering in ASP.Net MVC - www.fatlemon.co.uk">easy to follow 3-step guide on how to automatically get and display the latest SVN revision</a> :o)</p> http://stackoverflow.com/questions/114851/how-do-i-bind-the-result-of-datatable-select-to-a-listbox-control 1 How do I bind the result of DataTable.Select() to a ListBox control? Andrew 2008-09-22T13:25:51Z 2008-12-14T01:25:19Z <p>I have the following code:</p> <pre><code>ListBox.DataSource = DataSet.Tables("table_name").Select("some_criteria = match") ListBox.DisplayMember = "name" </code></pre> <p>The <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable.select(VS.80).aspx" rel="nofollow"><code>DataTable.Select()</code> method</a> returns an array of <a href="http://msdn.microsoft.com/en-us/library/system.data.datarow(VS.80).aspx" rel="nofollow"><code>System.Data.DataRow</code></a> objects.</p> <p>No matter what I specify in the <code>ListBox.DisplayMember</code> property, all I see is the ListBox with the correct number of items all showing as <code>System.Data.DataRow</code> instead of the value I want which is in the <code>"name"</code> column!</p> <p>Is it possible to bind to the resulting array from <code>DataTable.Select()</code>, instead of looping through it and adding each one to the <code>ListBox</code>?</p> <p>(I've no problem with looping, but doesn't seem an elegant ending!)</p> http://stackoverflow.com/questions/301993/is-agile-development-dead/323903#323903 3 Answer by Andrew for Is Agile Development Dead? Andrew 2008-11-27T14:27:00Z 2008-11-27T14:27:00Z <blockquote> <p>"I think Agile has worked its way into the mainstream such that <strong>within the next few years we won’t talk about Agile much anymore; we’ll just talk about programming</strong>, and it will be assumed that everyone means Agile whenever that’s appropriate." -- <a href="http://forums.construx.com/blogs/stevemcc/archive/2007/10/08/5-questions-on-agile-development.aspx" rel="nofollow">Steve McConnell</a> (8th Oct 2007)</p> </blockquote> <p>(my emphasis)</p> http://stackoverflow.com/questions/318530/is-it-possible-to-initialise-a-new-system-collections-generic-dictionary-with-str 2 Is it possible to initialise a New System.Collections.Generic.Dictionary with String key/value pairs? Andrew 2008-11-25T19:11:54Z 2008-11-26T20:43:19Z <p>Is it possible to create and initialise a <a href="http://msdn.microsoft.com/en-us/library/6918612z(VS.80).aspx" rel="nofollow"><code>System.Collections.Generic.Dictionary</code></a> object with String key/value pairs in one statement?</p> <p>I'm thinking along the lines of the constructor for an array of Strings..</p> <p>e.g.</p> <pre><code>Private mStringArray As String() = {"String1", "String2", "etc"} </code></pre> <p>In case this is turns out to be a <a href="http://en.wikipedia.org/wiki/Syntactic_sugar" rel="nofollow">syntactic sugar</a> kind of thing, I'd prefer an answer that I can use in .Net 2.0 (Visual Studio 2005), and Visual Basic - though I'm curious if it's possible at all so don't let that put you off ;o)</p> http://stackoverflow.com/questions/301544/is-there-a-more-efficient-way-to-do-this-sql-select/301596#301596 0 Answer by Andrew for Is there a more efficient way to do this SQL Select? Andrew 2008-11-19T11:12:39Z 2008-11-19T11:12:39Z <p>Could you strip the <code>IMG</code> (or non-numeric) part of the <code>IMAGENAME</code> to a new column when writing to the database, then sort on the new numeric-only column?</p> <p>For example:</p> <pre><code>SELECT * FROM IMAGES WHERE IMAGENAME in ('IMG1', 'IMG2', 'IMG3', 'IMG4', 'IMG5', 'IMG6') ORDER BY IMAGENO END </code></pre> <p>where <code>IMAGENO</code> would contain <code> 1, 2, 3, 4, 5, 6 </code> for each row in your example, respectively.</p> http://stackoverflow.com/questions/300254/how-to-make-mockup-screenshots-without-vb/300353#300353 2 Answer by Andrew for How to make mockup screenshots without VB Andrew 2008-11-18T22:20:12Z 2008-11-18T22:20:12Z <p><a href="http://www.codinghorror.com/blog/archives/001091.html" rel="nofollow">Jeff Attwood posted about this on CodingHorror</a> - where he mentions <a href="http://blogs.msdn.com/jensenh/archive/2006/01/06/510069.aspx" rel="nofollow">Powerpoint prototyping</a></p> http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1803996#1803996 Comment by Andrew on How do I exclude Weekend days in a SQL Server query? Andrew 2009-11-26T14:51:17Z 2009-11-26T14:51:17Z @Maximilian Mayerl - I thought it would be helpful to others. And I also wondered if there was a better alternative to the one I found. I understand it is encouraged to ask a question then post an answer.. from the faq: &quot;It's also perfectly fine to ask and answer your own question&quot; http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/237390#237390 Comment by Andrew on ASP.Net MVC - handling bad URL parameters Andrew 2009-11-06T07:21:57Z 2009-11-06T07:21:57Z Instead of that last line: 'new { questionID = @&quot;\d{1,}&quot; }', Scott Hanselman uses a slightly shorter syntax of: 'new { questionID = @&quot;\d+&quot; }' to mean the same thing. Source: <a href="http://www.asp.net/learn/mvc-videos/video-7093.aspx" rel="nofollow">asp.net/learn/mvc-videos/&hellip;</a> http://stackoverflow.com/questions/1193112/odp-net-and-clickonce-possible/1193281#1193281 Comment by Andrew on ODP.NET and ClickOnce possible? Andrew 2009-09-11T08:59:22Z 2009-09-11T08:59:22Z @Darcy - I didn't know Oracle had produced an XCopy distribution (it looks new to 11g). You're correct that it doesn't mesh well with ClickOnce though, as it's got an 'install.bat' :o/ http://stackoverflow.com/questions/1193112/odp-net-and-clickonce-possible/1193281#1193281 Comment by Andrew on ODP.NET and ClickOnce possible? Andrew 2009-09-10T10:45:46Z 2009-09-10T10:45:46Z @Chris - I have to say well done. I want to believe it's possible, but I followed your instructions (and even tried copying ALL of the oracle DLL's) to an xcopy installation of our software and it failed on the first database call. This app works fine with Oracle installed rather than copied. :o/ (WinXP Pro if that matters) http://stackoverflow.com/questions/784692/erpconnect-for-sap-r-3-rfcs-is-it-any-good Comment by Andrew on ERPConnect for SAP R/3 RFCs - is it any good? Andrew 2009-09-03T13:54:29Z 2009-09-03T13:54:29Z I'm looking at this too - anyone care to answer that has any experience with it? :o) http://stackoverflow.com/questions/733378/whats-a-good-way-of-doing-string-templating-in-net/733491#733491 Comment by Andrew on What's a good way of doing string templating in .NET? Andrew 2009-04-09T09:56:26Z 2009-04-09T09:56:26Z +1 @TcKs - agreed, the example has 4 parameters so I'd go with @Ovi's suggestion, but if it got to around 10 or so then I'd look to a templating language.. http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/689118#689118 Comment by Andrew on What's the most painful product to develop against? Andrew 2009-03-27T10:09:09Z 2009-03-27T10:09:09Z If I could, I would vote this up until my mouse gives up - I'm currently trying to 'fix' one of these 'magical moment' Crystal Reports where it's looking increasingly like I'm going to have to re-write it. From scratch. Preferably in ActiveReports.Net :oP http://stackoverflow.com/questions/532923/windsor-ioc-sample-help-httpservicewatcher-which-was-not-registered/533303#533303 Comment by Andrew on Windsor IoC Sample Help - "HttpServiceWatcher& which was not registered." Andrew 2009-02-10T21:17:04Z 2009-02-10T21:17:04Z Thanks for the tip - when I removed the 'ByRef' it got replaced with 'ByVal' (I thought it had to be one or the other, but I gave it a try with nothing anyway!), and I changed both constructors in the project: Form1 and HttpServiceWatcher, and that sorted it. Thanks again :o) http://stackoverflow.com/questions/495722/reasons-to-learn-linq/495754#495754 Comment by Andrew on Reasons to Learn LINQ Andrew 2009-01-30T15:19:35Z 2009-01-30T15:19:35Z &quot;And, like we all eventually learn, the best advice you’ll get in life hurts like hell at the time. Because it has to.&quot; - Merlin Mann (<a href="http://www.43folders.com/2008/12/03/real-advice-hurts" rel="nofollow">43folders.com/2008/12/&hellip;</a>). It's harsh advice, but it's true to my own experience as well. http://stackoverflow.com/questions/427728/how-do-i-pass-a-string-into-a-function-in-an-nvelocity-template/427982#427982 Comment by Andrew on How do I pass a String into a function in an NVelocity Template? Andrew 2009-01-15T14:29:06Z 2009-01-15T14:29:06Z ooh! with no other answers (at the time of writing), I get to accept my own :o) http://stackoverflow.com/questions/372687/good-visual-studio-svn-tool/372733#372733 Comment by Andrew on Good Visual Studio SVN Tool Andrew 2009-01-09T23:30:50Z 2009-01-09T23:30:50Z +1, VisualSVN's integration with Visual Studio is excellent http://stackoverflow.com/questions/415649/read-only-spinner/415675#415675 Comment by Andrew on Read only spinner Andrew 2009-01-06T08:00:33Z 2009-01-06T08:00:33Z +1 I agree with Bombe. I nearly always use the textbox part as the buttons are usually so small they're difficult to hit, and if I want to enter 20 (or more), I don't want to have to click 19 times! Sometimes the answer is to rethink the approach.. :o) http://stackoverflow.com/questions/395247/examples-of-usability-disasters/395365#395365 Comment by Andrew on Examples of usability disasters? Andrew 2008-12-27T21:56:07Z 2008-12-27T21:56:07Z +1 for the Vista Shutdown button.. I always want it to do the macarena http://stackoverflow.com/questions/237977/asp-net-mvc-redirecting-to-route-gives-redirect-loop/237984#237984 Comment by Andrew on ASP.Net MVC - redirecting to route gives Redirect Loop Andrew 2008-12-17T10:25:25Z 2008-12-17T10:25:25Z Thanks for the note about the [Authorize] attribute. Truth is when I was trying to get this working I hadn't written the authorisation code so I hadn't decorated any Action Methods with [Authorize] - I was just getting the 'flow' right to start with :o) http://stackoverflow.com/questions/163/how-do-i-sync-the-svn-revision-number-with-my-asp-net-web-site/170#170 Comment by Andrew on How do I sync the SVN revision number with my ASP.NET web site? Andrew 2008-12-17T10:19:20Z 2008-12-17T10:19:20Z If you're not using CruiseControl.Net then check out my answer (shameless plug!) - <a href="http://stackoverflow.com/questions/163/how-do-i-sync-the-svn-revision-number-with-my-aspnet-web-site#374153" rel="nofollow" title="how do i sync the svn revision number with my aspnet web site%23374153">stackoverflow.com/questions/163/&hellip;</a> ;o)