User Chris Roberts - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:33:23Z http://stackoverflow.com/feeds/user/475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1739073/word-opens-extra-blank-document/1739127#1739127 1 Answer by Chris Roberts for Word opens extra blank document Chris Roberts 2009-11-15T22:40:37Z 2009-11-15T22:40:37Z <p>If this issue is happening regardless of whether or not your addin is installed, perhaps the user has a strange macro running in their default template file (normal.dot)?</p> <p>You could try replacing normal.dot with a version from a machine which doesn't have the problem to see if that helps!?</p> http://stackoverflow.com/questions/1691445/encapsulating-user-controls-in-asp-net-mvc 3 Encapsulating User Controls in ASP.NET MVC Chris Roberts 2009-11-07T00:35:56Z 2009-11-07T06:44:04Z <p>Sorry if this is a basic question - I'm having some trouble making the mental transition to ASP.NET MVC from the page framework.</p> <p>In the page framework, I often use ASCX files to create small, encapsulated chunks of functionality which get inclded in various places throughout a site. If I'm building a page and I need one of these controls - I just add a reference and everything just works.</p> <p>As far as I can tell, in MVC, the ASCX file is just a partial <em>view</em>. Does this mean that wherever I want to add one of these units of functionality I also have to add some code to the controller's action method to make sure the relevant ViewData is available to the ASCX?</p> <p>If this is the case, it seems like a bit of a step backwards to me. It means, for example, that I couldn't just 'drop' a control into a master page without having to add code to every controller whose views use that master page!</p> <p>I suspect I'm missing something - any help would be appreciated.</p> <p>Thanks, - Chris</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql 38 Entity Framework vs LINQ to SQL Chris Roberts 2008-08-12T11:04:11Z 2009-11-03T21:55:37Z <p>Now that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity framework.</p> <p>My question is this. When trying to decide between using the Entity Framework and LINQ to SQL as an ORM, what's the difference?</p> <p>The way I understand it, the Entity Framework (when used with LINQ to Entities) is a 'big brother' to LINQ to SQL? If this is the case - what advantages does it have? What can it do that LINQ to SQL can't do on its own?</p> http://stackoverflow.com/questions/1666760/tell-actions-controllers-to-persist-tempdata/1666787#1666787 0 Answer by Chris Roberts for Tell Actions/Controllers to Persist TempData Chris Roberts 2009-11-03T11:39:54Z 2009-11-03T11:39:54Z <p>I'm not sure of the exact answer to this as I'm pretty new to MVC myself. However, I have heard of people having trouble with AJAX requests killing off the TempData before they wanted it to as well.</p> <p>I guess you could implement your own Session based system to store this information?</p> <p>I'm sure someone else will have a more complete answer for you soon, though!</p> http://stackoverflow.com/questions/1657684/creating-a-list-of-folders-in-an-itemgroup-using-msbuild 1 Creating a list of Folders in an ItemGroup using MSBuild Chris Roberts 2009-11-01T17:07:36Z 2009-11-02T12:17:32Z <p>Hi,</p> <p>I'm trying to build an ItemGroup in an MSBuild script which contains a list of folders directly below a given 'Root' folder. So - in this example...</p> <pre><code>+ Root folder ---- Sub Folder 1 -------- Sub-Sub Folder 1 -------- Sub-Sub Folder 2 ---- Sub Folder 2 ---- Sub Folder 3 </code></pre> <p>... I would want my ItemGroup to contain "Sub Folder 1", "Sub Folder 2" and "Sub Folder 3".</p> <p>There may be a number of files at any point in the hierarchy, but I'm only interested in the folders.</p> <p>Can anyone help!?</p> <p>Thanks, - Chris</p> http://stackoverflow.com/questions/320335/html-email-delivered-as-an-attachment-as-well-as-the-body 1 HTML Email delivered as an attachment as well as the body!? Chris Roberts 2008-11-26T11:10:11Z 2009-10-19T17:00:03Z <p>Hi,</p> <p>I have a piece of code which sends e-mails using a third party e-mail sending component.</p> <p>When the e-mails are delivered, the HTML which should be appearing in the body of the e-mail is <em>also</em> being added as an attachment with the filename ATT00001.</p> <p>I <em>suspect</em> the attachment is being created by the receiving e-mail server (which in this case is Exchange 2007).</p> <p>My question is - does anybody know why this is happening? I suspect some sort of character set problem, but I'm not really sure.</p> <p>Any help would be appreciated!</p> http://stackoverflow.com/questions/1477039/how-do-i-remove-color-colour-profile-information-from-images-using-net 1 How do I remove color (colour) profile information from images using .NET? Chris Roberts 2009-09-25T12:32:43Z 2009-10-11T14:40:38Z <p>Hi,</p> <p>I have a tool which manipulates images at runtime as part of my web app.</p> <p>This generally works fine, but with the release of Firefox 3.5 we're seeing some colour problems. I believe this is because Firefox 3.5 now supports embedded ICC colour profiles where no other browsers do.</p> <p>In order to achieve consistency of display, I'd like to programatically remove any ICC colour profile in my .NET code.</p> <p>Can anyone point me in the right direction?</p> <p>Thanks, - Chris</p> http://stackoverflow.com/questions/1477039/how-do-i-remove-color-colour-profile-information-from-images-using-net/1550843#1550843 1 Answer by Chris Roberts for How do I remove color (colour) profile information from images using .NET? Chris Roberts 2009-10-11T14:40:38Z 2009-10-11T14:40:38Z <p>On further investigation, it appears that IE was taking notice of some Gamma correction information, and FireFox 3.5 was taking notice of an embedded ICC colour profile.</p> <p>All of this information appears to have been added by the .NET framework's PNG implementation by default.</p> <p>It is possible to remove this information in .NET - I've <a href="http://solutionmania.com/2009/10/10/png-colour-rendering-on-the-web" rel="nofollow">blogged about it here</a>.</p> http://stackoverflow.com/questions/1528380/spreadsheet-ml-text-color-colour-rendering 1 Spreadsheet ML Text Color (Colour) Rendering Chris Roberts 2009-10-06T22:11:20Z 2009-10-07T16:16:02Z <p>Hi All,</p> <p>I am writing a tool which generates some Spreadsheet ML (XML) to create an Excel spreadsheet for my users.</p> <p>I have defined a style as follows:</p> <pre> &lt;Style ss:ID="GreenText"&gt; &lt;Font ss:FontName="Arial" ss:Size="9" ss:Color="#8CBE50" /&gt; &lt;/Style&gt; </pre> <p>This works to an extent, but when I open it in Excel the colour rendered for the text isn't the one I specified - it's a brighter version. I can use the same colour reference for a cell border and the colour is rendered correctly.</p> <p>Can anyone shed any light on why the text colour isn't rendered correctly?</p> <p>Thanks!</p> http://stackoverflow.com/questions/324373/creating-a-web-service-without-an-asmx-file 1 Creating a web service without an ASMX file? Chris Roberts 2008-11-27T18:00:36Z 2009-09-15T16:48:45Z <p>Hi,</p> <p>I have written an ASP.NET composite control which includes some Javascript which communicates with a web service.</p> <p>I have packaged the classes for the control and the service into a DLL to make it nice and easy for people to use it in other projects.</p> <p>The problem I'm having is that as well as referencing the DLL in their project, the consumer of my control must also include a .ASMX file for the web service. Whilst it isn't a complicated file (just a one-liner which refers to the class in the DLL), I would like to avoid having it if I can.</p> <p>Is there any way to avoid having to have the .ASMX file?</p> <ul> <li>Can I register the service with the web server in Application_Start?</li> <li>Can I make a web.config change to reference it somehow?</li> </ul> <p>All suggestions gratefully received!</p> <p><strong>UPDATE:</strong> The article linked to in John Sheehan's response (below) does work - but not if you want to call the web service using AJAX. Does anybody know of an AJAX friendly version?</p> http://stackoverflow.com/questions/1370199/creating-a-hand-drawn-effect-using-net 1 Creating a Hand-Drawn effect using .NET Chris Roberts 2009-09-02T21:20:51Z 2009-09-03T00:29:04Z <p>I'd like to write a piece of code which creates images similar in style to those rendered by '<a href="http://www.balsamiq.com/products/mockups/examples#exportdialog" rel="nofollow">Balsamiq Mockups</a>' or '<a href="http://yuml.me/diagram/scruffy/class/samples" rel="nofollow">yUML</a>' using the .NET framework.</p> <p>Can anybody tell me how to achieve the hand-drawn pencil effect using GDI+?</p> <p>The text can obviously be done using the right font - my question is how to render the lines, boxes and circles.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1370198/is-it-possible-to-use-a-bitmap-generated-by-code-in-an-asp-image-tag/1370245#1370245 0 Answer by Chris Roberts for Is it possible to use a Bitmap generated by code in an asp image tag? Chris Roberts 2009-09-02T21:33:10Z 2009-09-02T21:33:10Z <p>I'd create an HTTP module to do this.</p> <p>You could setup the HTTP module to intercept all requests to a particular folder ('/images/generated/') for example.</p> <p>Then, when you get a request for an image in this folder, the code in your HTTP module will be called. Create your image in memory and write it out to the Response object (having set any appropriate MIME type headers and things first).</p> <p>In your HTML you can then write an image tag like <code>&lt;img src="/images/generated/image-doesnt-physically-exist.jpg" /&gt;</code> and still get an image back.</p> <p>Hope that helps point you in the right direction!</p> http://stackoverflow.com/questions/1370157/too-much-margin-on-button-element-in-ie-looks-perfect-in-firefox/1370220#1370220 0 Answer by Chris Roberts for Too Much Margin on Button Element in IE, Looks Perfect in Firefox Chris Roberts 2009-09-02T21:26:20Z 2009-09-02T21:26:20Z <p>Not sure if this is the case, but it could be the <a href="http://www.positioniseverything.net/explorer/doubled-margin.html" rel="nofollow">'IE Double Margin Bug'</a>.</p> <p>From memory, I think it might be worth trying to add <code>display: inline;</code> to your floated elements?</p> <p>Good Luck!</p> http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/1347674#1347674 0 Answer by Chris Roberts for How to access the current Subversion build number? Chris Roberts 2009-08-28T15:18:45Z 2009-08-28T15:18:45Z <p>I use the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> project which has a tool to retrieve the SVN revision number and add it to your AssemblyInfo.vb. You can then use reflection to retrieve this string to display it in your UI.</p> <p>Here's a <a href="http://solutionmania.com/2009/8/28/automatically-adding-svn-revision-numbers-to-assemblies" rel="nofollow">full blog post with instructions</a>.</p> http://stackoverflow.com/questions/1304916/building-only-labelled-versions-with-cruisecontrol-net-or-teamcity 0 Building ONLY Labelled Versions with CruiseControl.net or TeamCity Chris Roberts 2009-08-20T08:58:35Z 2009-08-21T09:31:19Z <p>We're currently using CruiseControl.NET as a continuous integration server for a number of ASP.NET web projects, but we're also evaluating TeamCity.</p> <p>This is working great for our build server.</p> <p>What we'd like to setup is a customer facing test server. I'm thinking that when we are happy for our latest development version to be released to the client for test, we could label it in SVN.</p> <p>I'd then like a second build server to build this version ready for the client to see.</p> <p>The question is this - is there any way to get either CruiseControl.NET or TeamCity to build <em>only</em> the latest <em>labelled</em> version of the code in a repository?</p> <p>If anyone has any alternative suggestions, that'd also be greatly appreciated!</p> http://stackoverflow.com/questions/1295178/why-is-the-save-button-needed/1295275#1295275 1 Answer by Chris Roberts for Why is the save button needed? Chris Roberts 2009-08-18T17:11:49Z 2009-08-18T17:11:49Z <p>I think the answer to this is that 'it depends'!</p> <p>You should consider not only your user's expectations in terms of consistency with other applications, but also the way in which the user is going to use your application.</p> <p>A very common use-case for OneNote is that someone opens it up to dump in some information almost as an aside to what they're working on. They need to get in and out quickly. Any prompts about saving would be a nuisance.</p> <p>Applications like Word, on the other hand, expect users to be spending a concerted amount of time working on a document. In this case, the chore of manually saving and responding to confirmation boxes etc will be seen as a relatively small task.</p> http://stackoverflow.com/questions/1289789/creating-an-extendable-application-with-linq-to-sql-or-entity-framework 0 Creating an Extendable Application with LINQ-to-SQL or Entity Framework Chris Roberts 2009-08-17T19:00:56Z 2009-08-18T16:12:55Z <p>I am working on a framework which will provide some basic functionality for a number of applications which our company is going to develop.</p> <p>The framework will come with a basic database schema which will support this functionality.</p> <p>Developers using the framework will be expected to extend the database schema with their own tables. Future versions of the framework will be shipped with update scripts to make any changes required.</p> <p>What do you think the best way of accessing the database would be - both from within the framework and in the application itself?</p> <p>I'd like to use either LINQ-to-SQL or the Entity Framework.</p> <p>Taking LINQ-to-SQL, for example, I guess I could distribute a DBML file with the framework, allowing the application developer to extend it and provide a reference to the data context back to the framework?</p> http://stackoverflow.com/questions/1289792/how-to-search-for-a-specific-string-in-all-columns-within-all-tables-of-a-sql-ser/1289862#1289862 1 Answer by Chris Roberts for How to search for a specific string in all columns within all tables of a SQL Server database? Chris Roberts 2009-08-17T19:18:25Z 2009-08-17T19:18:25Z <p>Is this just for a one-off, or something you want to do regularly?</p> <p>If it's a one-off, how about using the export data wizard to export the tables out to CSV files (assuming you're using MS-SQL, although I'm sure most databases have equivalents). </p> <p>Once you've done this you can just do a 'Find Files' in explorer to find all occurrances?</p> <p>It's a bit dirty - but it'll work!</p> http://stackoverflow.com/questions/1208518/how-do-i-find-the-total-number-of-records-created-on-a-given-day-using-t-sql/1208528#1208528 6 Answer by Chris Roberts for How do i find the total number of records created on a given day using T-SQL? Chris Roberts 2009-07-30T18:41:48Z 2009-08-14T15:49:02Z <p>You should be able to get the data you're after with the following SQL...</p> <p><code> SELECT COUNT(ID), CreatedDate FROM MyTable GROUP BY CreatedDate </code></p> <p>Or - if you want to do the formatting in the SQL, too...</p> <p><code> SELECT CONVERT(varchar, COUNT(ID)) + ' Records were created on ' + CONVERT(varchar, CreatedDate) FROM MyTable GROUP BY CreatedDate </code></p> <p>Good luck!</p> http://stackoverflow.com/questions/1240413/are-there-any-net-framework-3-5-rollout-cautions/1240440#1240440 0 Answer by Chris Roberts for Are There Any .NET Framework 3.5 Rollout Cautions? Chris Roberts 2009-08-06T17:53:04Z 2009-08-06T17:53:04Z <p>I understand your concern, and would usually recommend doing as much testing as you can on a server in a non-production environment first.</p> <p>But - having said that, the core runtime components of .NET 3.5 are the same as those in .NET 2.0. Version 3.5 is essentially .NET v2.0 with extra libraries on top.</p> <p>As you say - the frameworks are designed to co-exist quite hapily, so it should all be ok.</p> <p>We certainly didn't have any problems rolling out in our live environment.</p> <p>Disclaimer: All of the above is just from my experience - please don't blame me if it all goes wrong! ;o)</p> http://stackoverflow.com/questions/1240360/how-can-i-do-server-side-pagination-of-results-in-sql-server-2000/1240393#1240393 0 Answer by Chris Roberts for How can I do server side pagination of results in SQL Server 2000? Chris Roberts 2009-08-06T17:43:56Z 2009-08-06T17:43:56Z <p>Not sure if this is the most elegant solution, but it worked for me when we used SQL 2000...</p> <p>If you're writing a stored procedure, you can do it with a temporary table.</p> <p>Create a temporary table which has an automatically incrementing Identity column as well as the same columns as your result set.</p> <p>Then, select the data from the result set and insert it into this temporary table (in the right order).</p> <p>Finally, return results from your temporary table where the value of your Identity column acts as your row number.</p> http://stackoverflow.com/questions/1240299/how-to-manage-iis-from-web-page/1240356#1240356 0 Answer by Chris Roberts for How to manage IIS from web page Chris Roberts 2009-08-06T17:37:23Z 2009-08-06T17:37:23Z <p>IIS 7 Has a managed code API which should allow you to do what you need.</p> <p>Take a look at the API documentation from Microsoft, here: <a href="http://msdn.microsoft.com/en-gb/library/aa347649.aspx" rel="nofollow">http://msdn.microsoft.com/en-gb/library/aa347649.aspx</a></p> <p><a href="http://blogs.msdn.com/carlosag/archive/2006/04/17/MicrosoftWebAdministration.aspx" rel="nofollow">This blog</a> may be useful, too.</p> http://stackoverflow.com/questions/1234953/confirmation-dialog-at-runtime-in-asp-net/1240324#1240324 0 Answer by Chris Roberts for Confirmation dialog at runtime in asp.net Chris Roberts 2009-08-06T17:30:55Z 2009-08-06T17:30:55Z <p>An alternative, simpler approach which doesn't require AJAX would be to allow the post-back as normal, then in the code-behind, do your checks. </p> <p>If the user confirmation is required, just return the user back to the same page but make an extra panel visible and hide the original 'Save' button.</p> <p>In this extra panel, display your message with another OK / Cancel button. When the user clicks this OK button, perform the save!</p> http://stackoverflow.com/questions/1237813/the-best-way-to-clear-both/1237878#1237878 0 Answer by Chris Roberts for The best way to "clear: both" Chris Roberts 2009-08-06T09:29:40Z 2009-08-06T09:29:40Z <p>Why not give your UL and your LI fixed widths, where the width of the UL is at least twice the width of the LI, but less than 3 times the width of an LI.</p> <p>Then you can put all of your LI's in one UL and put a <code>float: left</code> on the LI.</p> <p>This will cause each list item to appear next to each other, but they will wrap onto the following line when they run out of room (due to the width of the UL).</p> http://stackoverflow.com/questions/1237759/drawing-a-dot-grid/1237857#1237857 1 Answer by Chris Roberts for Drawing a dot grid Chris Roberts 2009-08-06T09:25:10Z 2009-08-06T09:25:10Z <p>I think re-drawing all your dots every time the mouse moves is going to give you performance problems. Perhaps you should look into taking a snapshot of the view as a bitmap and panning that around, redrawing the view 'properly' when the user releases the mouse button?</p> http://stackoverflow.com/questions/1220180/asp-net-html-templating/1220189#1220189 0 Answer by Chris Roberts for asp.net html templating Chris Roberts 2009-08-02T23:40:06Z 2009-08-02T23:40:06Z <p>You could write an HTTP Module to redirect all incoming requests to a single ASPX page.</p> <p>This page could examine the original URL to work out what data to retrieve from the database and display it to the user.</p> <p>As the page is a standard ASPX page, you'll still be able to take advantage of post-backs, server controls etc.</p> <p>If you need pages that have different layouts and functionality, you could write a series of ASPX pages (treating each one as a different 'template', effectively). Then, in your HTTP Module, you could look the page up in the database to work out which 'template' ASPX page you should redirect to.</p> <p>There's more information about writing an HTTP Module to redirect URLs <a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">here</a>. Make sure you read down to the part which tells you how to override the default form action to make sure your post-backs still work!</p> <p>Hope this helps - good luck!</p> http://stackoverflow.com/questions/54475/help-with-aggressive-javascript-caching/1208994#1208994 2 Answer by Chris Roberts for Help with aggressive JavaScript caching Chris Roberts 2009-07-30T20:00:10Z 2009-07-30T20:00:10Z <p>I've written a blog post about how we overcame this problem here:</p> <p><a href="http://solutionmania.com/2009/7/30/avoiding-javascript-and-css-stylesheet-caching-problems-in-asp.net" rel="nofollow">Avoiding JavaScript and CSS Stylesheet Caching Problems in ASP.NET</a></p> <p>Basically, during development you can add a random number to a query string after the filename of your CSS file. When you do a release build, the code switches to using your assembly's revision number instead. This means that in your production environment, your clients can cache the stylesheet, but whenever you release a new version of the site they'll be forced to re-load the file.</p> http://stackoverflow.com/questions/384247/css-changes-not-reflecting-on-site/1208969#1208969 1 Answer by Chris Roberts for CSS changes not reflecting on site. Chris Roberts 2009-07-30T19:56:11Z 2009-07-30T19:56:11Z <p>I've written a blog post about how we overcame this problem here:</p> <p><a href="http://solutionmania.com/2009/7/30/avoiding-javascript-and-css-stylesheet-caching-problems-in-asp.net" rel="nofollow">Avoiding JavaScript and CSS Stylesheet Caching Problems in ASP.NET</a></p> <p>Basically, during development you can add a random number to a query string after the filename of your CSS file. When you do a release build, the code switches to using your assembly's revision number instead. This means that in your production environment, your clients can cache the stylesheet, but whenever you release a new version of the site they'll be forced to re-load the file.</p> http://stackoverflow.com/questions/1180716/is-there-anyway-to-find-out-the-ssid-of-the-wifi-access-point-within-the-browser/1185815#1185815 0 Answer by Chris Roberts for Is there anyway to find out the ssid of the wifi access point within the browser using javascript? Chris Roberts 2009-07-26T23:01:14Z 2009-07-26T23:01:14Z <p>This can't be done.</p> <p>JavaScript is quite well shielded from the hardware and environment it is running on. All JavaScript 'knows' is that it has an internet connection it can use. It doesn't know whether it's broadband, 3G, ethernet, wireless or any of the details - just that it's there.</p> <p>How worrying would it be for a user if they were innocently browsing the internet and websites could collect intimate details about their hardware as they went!? This would be open to huge amounts of abuse as someone, somewhere would surely work out a way of turning it to their advantage!</p> http://stackoverflow.com/questions/1185774/viewstate-error/1185788#1185788 0 Answer by Chris Roberts for Viewstate error Chris Roberts 2009-07-26T22:53:42Z 2009-07-26T22:53:42Z <p>Hi,</p> <p>A little more information in the question would be handy. Does this happen every time, for every user, when doing a particular thing? Or - is it just a random message in your error log which happens very rarely?</p> <p>If it's the latter, then it looks like someone is either trying to play around with the ViewState before it gets posted back to you (possibly in a failed attempt to do something nasty to your server), or for some reason the ViewState is getting corrupted for one of your visitors. Could be anything from a strange browser problem to dodgy software on the client PC?!</p> http://stackoverflow.com/questions/1691445/encapsulating-user-controls-in-asp-net-mvc/1691463#1691463 Comment by Chris Roberts on Encapsulating User Controls in ASP.NET MVC Chris Roberts 2009-11-07T00:50:44Z 2009-11-07T00:50:44Z Excellent - RenderAction is the piece of the puzzle I was missing! Many Thanks! http://stackoverflow.com/questions/1691445/encapsulating-user-controls-in-asp-net-mvc/1691468#1691468 Comment by Chris Roberts on Encapsulating User Controls in ASP.NET MVC Chris Roberts 2009-11-07T00:50:09Z 2009-11-07T00:50:09Z Excellent - RenderAction is the piece of the puzzle I was missing! Many Thanks! http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles Comment by Chris Roberts on Combined area of overlapping circles Chris Roberts 2009-11-03T15:44:04Z 2009-11-03T15:44:04Z How about for working out the answer to this question - &quot;We have sales reps living at these 4 locations, each of whom service an area with these 4 radii. How much of the country do we cover?&quot; If you had a changing database of sales reps, this becomes a programming question! http://stackoverflow.com/questions/1477039/how-do-i-remove-color-colour-profile-information-from-images-using-net/1477122#1477122 Comment by Chris Roberts on How do I remove color (colour) profile information from images using .NET? Chris Roberts 2009-10-11T14:38:20Z 2009-10-11T14:38:20Z Yeah - I know everyone knows the difference in the spelling - just making it easier for the search engines! http://stackoverflow.com/questions/1477039/how-do-i-remove-color-colour-profile-information-from-images-using-net/1477122#1477122 Comment by Chris Roberts on How do I remove color (colour) profile information from images using .NET? Chris Roberts 2009-09-27T13:22:21Z 2009-09-27T13:22:21Z Thanks for the reply, but my code is doing this sort of thing already. Unfortunately I don't know enough about colour profiles to know where the problem is. For all I know it might be a <i>lack</i> of colour profile that's causing FireFox 3.5 to render the colours differently?! http://stackoverflow.com/questions/1370157/too-much-margin-on-button-element-in-ie-looks-perfect-in-firefox/1370220#1370220 Comment by Chris Roberts on Too Much Margin on Button Element in IE, Looks Perfect in Firefox Chris Roberts 2009-09-02T21:38:20Z 2009-09-02T21:38:20Z Ah well - it was worth a shot! CSS isn't really my thing, but thought I'd mention it in case it was a quick win for you! Good luck! http://stackoverflow.com/questions/1370199/creating-a-hand-drawn-effect-using-net/1370206#1370206 Comment by Chris Roberts on Creating a Hand-Drawn effect using .NET Chris Roberts 2009-09-02T21:35:48Z 2009-09-02T21:35:48Z Hi, Thanks for the answer, but isn't SketchFlow an application? I'm looking to do this in code to render to an image file, not a Windows form. Any other ideas? http://stackoverflow.com/questions/1289789/creating-an-extendable-application-with-linq-to-sql-or-entity-framework/1294905#1294905 Comment by Chris Roberts on Creating an Extendable Application with LINQ-to-SQL or Entity Framework Chris Roberts 2009-08-18T17:19:48Z 2009-08-18T17:19:48Z Thanks, Dave, but even if I have the DAL in a separate assembly how would I be able to let the consumers of my framework extend it (as they would extend the DB schema) whilst still being able to call into it from the framework? Are you suggesting I bundle the DBML file with the framework assembly and rely on the app developer to provide the framework with a data context? http://stackoverflow.com/questions/1289789/creating-an-extendable-application-with-linq-to-sql-or-entity-framework/1289833#1289833 Comment by Chris Roberts on Creating an Extendable Application with LINQ-to-SQL or Entity Framework Chris Roberts 2009-08-17T22:01:47Z 2009-08-17T22:01:47Z Thanks for your response, but it doesn't really answer my question - how do I handle the database access from both the framework's DLL and the application developed by a consumer of my framework? http://stackoverflow.com/questions/1208518/how-do-i-find-the-total-number-of-records-created-on-a-given-day-using-t-sql/1208528#1208528 Comment by Chris Roberts on How do i find the total number of records created on a given day using T-SQL? Chris Roberts 2009-08-14T15:49:32Z 2009-08-14T15:49:32Z I've just added the two 'CONVERT' statements into the second query - give that a go! http://stackoverflow.com/questions/1240360/how-can-i-do-server-side-pagination-of-results-in-sql-server-2000/1240395#1240395 Comment by Chris Roberts on How can I do server side pagination of results in SQL Server 2000? Chris Roberts 2009-08-06T17:45:41Z 2009-08-06T17:45:41Z Oh yeah - that's better :o) http://stackoverflow.com/questions/1208518/how-do-i-find-the-total-number-of-records-created-on-a-given-day-using-t-sql/1208526#1208526 Comment by Chris Roberts on How do i find the total number of records created on a given day using T-SQL? Chris Roberts 2009-07-30T18:42:33Z 2009-07-30T18:42:33Z Shouldn't the GROUP BY be on the CreatedDate field? http://stackoverflow.com/questions/1182250/check-well-formatted-email-address/1182256#1182256 Comment by Chris Roberts on Check well formatted email address Chris Roberts 2009-07-25T15:44:48Z 2009-07-25T15:44:48Z :o) Yeah - good point. Fair enough! http://stackoverflow.com/questions/1051874/jquery-wcf-and-asp-net/1051919#1051919 Comment by Chris Roberts on jQuery, WCF and ASP.NET Chris Roberts 2009-06-27T08:02:48Z 2009-06-27T08:02:48Z Thanks for your answer!! By the sound of it - for my purposes - wouldn't I just be better off sticking with an ASMX web service? The service only exists to support the web application's UI through AJAX so needs tight and regular access to the user's ASP.NET session. What's the advantage of using WCF in my circumstance? Thanks again! http://stackoverflow.com/questions/362468/how-can-i-include-sessionid-in-log-files-using-log4net-in-asp-net/362526#362526 Comment by Chris Roberts on How can I include SessionID in log files using log4net in ASP.NET? Chris Roberts 2008-12-12T12:10:04Z 2008-12-12T12:10:04Z Hmm - this seems to work, but it looks like the session ID only appears for things that happen in the first postback. Subsequent trips back to the server have SessionID = null. Any other thoughts?