User BlackMael - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:46:42Z http://stackoverflow.com/feeds/user/19377 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1391473/linq-and-vb-net-and-the-expression-tree-that-is-compiled-is-breaking-subsonic-3 0 LINQ and VB.NET and the expression tree that is compiled is breaking SubSonic 3 BlackMael 2009-09-08T00:51:20Z 2009-11-20T21:10:16Z <p>I've been trying to solve a little problem with VB.NET and the expression trees it likes to generate.</p> <p>I have a simple test...</p> <pre><code>Public Sub ActiveRecord_Find_By_NonKey_Returns_123() Dim orders = Order.Find(Function(item As Order) item.EmployeeID = 1) Assert.Equal(Of Integer)(123, orders.Count) End Sub </code></pre> <p>One would expect that to work but there is a problem with the <code>item.EmployeeID = 1</code> bit and it is only a problem for VB.NET and not C#. VB.NET likes to be clever with the expression tree it compiles because of the fact <code>item.EmployeeID</code> is nullable! (<a href="http://blogs.msdn.com/timng/archive/2008/03/24/vb-expression-trees-coalesce-operator.aspx" rel="nofollow">Read blog relating to this</a>)</p> <p>The problem is that expression <code>item.EmployeeID = 1</code> gets wraps with a <code>Convert</code> expression node. At which point the TSql generator gets completely lost and creates the following <code>WHERE</code> clause.</p> <pre><code>WHERE ([t0].[EmployeeID] = 1) &lt;&gt; 0 </code></pre> <p>That snippet tends to fail somewhat when it is executed on the database.</p> <p>So that seems to be a bug in SubSonic. Unfortunately trying to work out how/where to fix it is doing my head in!</p> <p><hr /></p> <p>It does get more interesting though.</p> <pre><code>Public Sub ActiveRecord_Find_By_NonKey_Returns_123_Linq() Dim orders = From item In Order.All Where item.EmployeeID = 1 Select item Assert.Equal(Of Integer)(123, orders.Count) End Sub </code></pre> <p>But its <code>WHERE</code> clause is...</p> <pre><code>WHERE COALESCE(CASE WHEN (([t0].[EmployeeID] = 1)) THEN 1 ELSE 0 END, 0) &lt;&gt; 0 </code></pre> <p>Well that seems sub-optimal! But at least it works.</p> <p>Finally, there seems to be a work around for the original example above after reading the blog entry. Use the new coalesce operator (If) in VB.NET...</p> <pre><code>Public Sub ActiveRecord_Find_By_NonKey_Returns_123_Fix() Dim orders = Order.Find(Function(item As Order) If(item.EmployeeID, 0) = 1) Assert.Equal(Of Integer)(123, orders.Count) End Sub </code></pre> <p>Which produces this <code>WHERE</code> clause...</p> <pre><code>WHERE (COALESCE([t0].[EmployeeID], 0) = 1) </code></pre> <p>A slightly more concise query though it there a difference between using <code>ISNULL</code> as opposed to <code>COALESCE</code>? Perhaps only in terms of compatibility across versions of SQL.</p> <p><hr /></p> <p>Basically, I want the first example to work as it is. I'd also like the second example to keep working but produce much cleaner SQL.</p> <p>I would like to fix this myself but haven't gotten very far other than realise I have some issues with VB.NETs expression tree generation.</p> http://stackoverflow.com/questions/342554/how-to-embed-image-in-outlook-signature 1 How to Embed Image in Outlook Signature? BlackMael 2008-12-05T00:42:54Z 2009-11-15T05:30:40Z <p>Is it possible to create an HTML email signature for <strong>Outlook 2003</strong> or above that doesn't reference external images?</p> <p>That is, using those special "cid" reference but embed the image itself in the signature and not on the file system or network.</p> <p>This is for an web application that generates a "standard" email signature based on various input from a user. It has worked fine so far with a single "embedded" image. But a new feature is going to require the possible addition of multiple tiny images.</p> <p>Getting to user to save one email signature template and one image to the user's machine is about the limit of what I'd like to require of the user. But forcing the user to save multiple images seem to be pushing things a little to far in my opinion.</p> <p>So my problem is trying to embed the images into without having to inconvenience the user with multiple downloads first.</p> http://stackoverflow.com/questions/257096/is-visual-studio-tools-for-applications-part-of-office-2007 1 Is Visual Studio Tools for Applications part of Office 2007? BlackMael 2008-11-02T17:35:59Z 2009-10-24T18:00:02Z <p>The VSTO bit I understand. Visual Studio has the project templates to get you started with creating nice .NET based add-ins.</p> <p>But where is VSTA? I installed the SDK but it seems to be gears towards adding extensibility to your own applications.</p> <p>I had thought that VSTA was like the new VBA for Office 2007. Infopath 2007 seems to be VSTA enabled but I cannot seem to find where Excel 2007 is also VSTA enabled.</p> <p>Am I missing something?</p> http://stackoverflow.com/questions/264286/vs2008-objectdatasource-throws-exceptions 1 VS2008 ObjectDataSource throws Exceptions BlackMael 2008-11-05T03:40:17Z 2009-09-15T10:00:00Z <p>I am working on an ASP.NET page with a GridView and an ObjectDataSource.</p> <p>I want to configure the ObjectDataSource against a class (decorated with DataObject()) in my business layer. A class amonst many others set up in a very similar fashion. I select the class and click Next to pick the function for the SelectMethod and it closes without warning and without any error.</p> <p>I can set the TypeName for the ObjectDataSource and attach it to a GridView. I attempt to Refresh Schema and I get an error pop up.</p> <blockquote> <p>Error invoking 'Refresh Schema'. Details: Exception has been thrown by the target of an invocation.</p> </blockquote> <p>I can manual set up the ObjectDataSource, but I am inherently lazy and would prefer to use the GUI.</p> <p>Why is it failing?</p> <p>Everything builds just fine. I can manually hook everything up and the page works just fine. Yet it still fails when I go to configure the ObjectDataSource with the UI.</p> http://stackoverflow.com/questions/1402376/jquery-popups-with-load/1402482#1402482 0 Answer by BlackMael for Jquery popups with load() BlackMael 2009-09-09T22:31:10Z 2009-09-09T22:31:10Z <p>You're not closing your 1st click function and you're not opening the <code>ready(function(){...})</code> correctly either:</p> <pre><code>$(document).ready(function(){ // &lt;-- added missing open parens //Find &amp; Open $(".projectThumb").click(function(){ htmlName = $(this).find("img").attr("name"); $("#popupContainer").load(htmlName + ".html"); }); // &lt;-- added needed closing function //Close property $("a.close").live("click", function(){ $("#popupContainer").empty(); }); }); </code></pre> http://stackoverflow.com/questions/1372275/subsonic3-vb-net-add-update-firstordefault-problems/1382957#1382957 0 Answer by BlackMael for SubSonic3 VB.Net Add,Update, FirstOrDefault Problems BlackMael 2009-09-05T10:18:31Z 2009-09-05T10:31:13Z <p>Firtly, which version of SubSonic3 are you using?</p> <p>1) Not sure what you are trying to do here.</p> <p>2) That is not how you update a record, try this...</p> <pre><code>Dim cat = Category.SingleOrDefault(Function(item) item.CategoryID = 1) cat.CategoryName = "MOTORS" cat.Update() </code></pre> <p>3) Subsonic uses <code>SingleOrDefault()</code> as example above demonstrates.</p> http://stackoverflow.com/questions/1283425/ie7-doesnt-render-part-of-page-until-the-window-resizes-or-switch-between-tabs 0 IE7 doesn't render part of page until the window resizes or switch between tabs BlackMael 2009-08-16T04:15:43Z 2009-09-05T07:07:45Z <p>I have a problem with IE7.</p> <p>I have a fixed layout for keeping the header and a sidepanel fixed on a page leaving only the "main content" area switch can happily scroll it's content.</p> <p><a href="http://twitpic.com/e32q7" rel="nofollow" title="layout on Twitpic"><img src="http://twitpic.com/show/thumb/e32q7.png" width="150" height="150" alt="layout on Twitpic"></a></p> <p>This layout works perfectly fine for IE6 and IE8, but sometimes one page may start "hiding" the content that should be showing in the "main content" area.</p> <p>The page finishes loading just fine. For a split second IE7 will render the main content just fine and then it will immediately hide it from view.. somewhere.. It would also seem that it only experiences this problem when there is enough content to force the "main content" area to scroll.</p> <p>By resizing the window or switching to another open tab and back again will cause IE7 to show the page as it was intended.</p> <p>Note the same problem does occur with IE8 in compatibility mode, but the page is rendered correctly in IE8 mode.</p> <p>If need be I can attach the basic CSS styling I use, but I first want to see if this is a known issue with IE7. </p> <p>Does IE7 have issues with positioned layout and overflow scrolling that is sometimes likes to forgot to finish rendering the page correctly until some window redraw event forces to finish rendering?</p> <p>Please remember, this exact same layout is used across multiple pages in the site as it is set up in a master page. It is just (in this case) one page that is experiencing this problem.</p> <p>Other pages with the exact same layout do render correctly. Even if the main content is full enough to also scroll.</p> <p><strong>UPDATE</strong>: <a href="http://stackoverflow.com/questions/1273394/div-overflowauto-does-not-show-scrollbar-until-resize">A related question</a> which doesn't have an answer at this point.</p> <p><strong>LATE UPDATE</strong>: Adding example masterpage and css</p> <p>Please note this same layout is the same for all the pages in the application. My problem with IE7 only occurs on one such page. All other pages have happily render correctly in IE7. Just one page, using the exact same layout, has issues where it <strong>sometimes</strong> hides the content in the "work-space" div.</p> <p><strong>The master page</strong></p> <pre><code>&lt;%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="shared_templates_MasterPage" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;link rel="Stylesheet" type="text/css" href="~/common/yui/2.7.0/build/reset-fonts/reset-fonts.css" runat="server" /&gt; &lt;link rel="Stylesheet" type="text/css" href="~/shared/css/layout.css" runat="server" /&gt; &lt;asp:ContentPlaceHolder ID="head" runat="server" /&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server" /&gt; &lt;div id="app-header"&gt; &lt;/div&gt; &lt;div id="side-panel"&gt; &lt;/div&gt; &lt;div id="work-space"&gt; &lt;asp:ContentPlaceHolder ID="WorkSpaceContentPlaceHolder" runat="server" /&gt; &lt;/div&gt; &lt;div id="status-bar"&gt; &lt;asp:ContentPlaceHolder ID="StatusBarContentPlaceHolder" runat="server" /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>The layout.css</strong></p> <pre><code>html { overflow: hidden; } body { overflow: hidden; padding: 0; margin: 0; width: 100%; height: 100%; background-color: white; } body, table, td, th, select, textarea, input { font-family: Tahoma, Arial, Sans-Serif; font-size: 9pt; } p { padding-left: 1em; margin-bottom: 1em; } #app-header { position: absolute; top: 0; left: 0; width: 100%; height: 80px; background-color: #dcdcdc; border-bottom: solid 4px #000; } #side-panel { position: absolute; top: 84px; left: 0px; bottom: 0px; overflow: auto; padding: 0; margin: 0; width: 227px; background-color: #AABCCA; border-right: solid 1px black; background-repeat: repeat-x; padding-top: 5px; } #work-space { position: absolute; top: 84px; left: 232px; right: 0px; padding: 0; margin: 0; bottom: 22px; overflow: auto; background-color: White; } #status-bar { position: absolute; height: 20px; left: 228px; right: 0px; padding: 0; margin: 0; bottom: 0px; border-top: solid 1px #c0c0c0; background-color: #f0f0f0; } </code></pre> <p><strong>The Default.aspx</strong></p> <pre><code>&lt;%@ Page Title="Test" Language="VB" MasterPageFile="~/shared/templates/MasterPage.master" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %&gt; &lt;asp:Content ID="WorkspaceContent" ContentPlaceHolderID="WorkSpaceContentPlaceHolder" Runat="Server"&gt; Workspace &lt;asp:ListView ID="DemoListView" runat="server" DataSourceID="DemoObjectDataSource" ItemPlaceholderID="DemoPlaceHolder"&gt; &lt;LayoutTemplate&gt; &lt;table style="border: 1px solid #a0a0a0; width: 600px"&gt; &lt;colgroup&gt; &lt;col width="80" /&gt; &lt;col /&gt; &lt;col width="80" /&gt; &lt;col width="120" /&gt; &lt;/colgroup&gt; &lt;tbody&gt; &lt;asp:PlaceHolder ID="DemoPlaceHolder" runat="server" /&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;th&gt;&lt;%#Eval("ID")%&gt;&lt;/th&gt; &lt;td&gt;&lt;%#Eval("Name")%&gt;&lt;/td&gt; &lt;td&gt;&lt;%#Eval("Size")%&gt;&lt;/td&gt; &lt;td&gt;&lt;%#Eval("CreatedOn", "{0:yyyy-MM-dd HH:mm:ss}")%&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; &lt;asp:ObjectDataSource ID="DemoObjectDataSource" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="DemoLogic"&gt; &lt;SelectParameters&gt; &lt;asp:Parameter Name="path" Type="String" /&gt; &lt;/SelectParameters&gt; &lt;/asp:ObjectDataSource&gt; &lt;/asp:Content&gt; &lt;asp:Content ID="StatusContent" ContentPlaceHolderID="StatusBarContentPlaceHolder" Runat="Server"&gt; Ready OK. &lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/1327871/subsonic2-2-shareddbconnectionscope-and-transactionscope-transaction-confusion 2 SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion BlackMael 2009-08-25T12:08:54Z 2009-09-04T14:50:50Z <p>ARGH!!!</p> <p>There seems to be a little confusion surrounding the SharedDbConnectionScope and TransactionScope objects to enable wrapping your SubSonic queries within a transaction.</p> <p>The docs suggest specifying the using SharedDbConnectionScope wrapped around the using TransactionScope...</p> <pre><code>using(SharedDbConnectionScope scope = new SharedDbConnectionScope()) { using(TransactionScope ts = new TransactionScope()) { // do something ts.Complete(); } } </code></pre> <p>Then other question here such as <a href="http://stackoverflow.com/questions/1242988/subsonic-using-shareddbconnectionscope-together-with-transactionscope-seems-to-b">Subsonic: Using SharedDbConnectionScope together with TransactionScope seems to be broken</a> suggest the docs are wrong and the two objects should be the other way around...</p> <pre><code>using(TransactionScope ts = new TransactionScope()) { using(SharedDbConnectionScope scope = new SharedDbConnectionScope()) { // do something ts.Complete(); } } </code></pre> <p>But looking into the source code I am even more confused.</p> <p>In the SqlQuery.cs code file it has a number of ExecuteTransaction overloads. For example... </p> <pre><code>public static void ExecuteTransaction(List&lt;SqlQuery&gt; queries) { using(SharedDbConnectionScope scope = new SharedDbConnectionScope()) { using(TransactionScope ts = new TransactionScope()) { foreach(SqlQuery q in queries) q.Execute(); } } } </code></pre> <p>Umm... Interesting... Matches the docs but... <strong>Where's the ts.Complete() call?</strong></p> <p>How is that supposed to commit the transaction? As far as I can see it will always rollback. And it is the same for all the ExecuteTransaction overloads!</p> <p>But here is the real kicker...</p> <p>In the TransactionWithDtcOffTests.cs code has some nice tests except they have set up the SharedDbConnectionScope and TransactionScope around the other way!</p> <pre><code>using(TransactionScope ts = new TransactionScope()) { using(SharedDbConnectionScope connScope = new SharedDbConnectionScope()) { // &lt;snip /&gt; } } </code></pre> <p>I haven't had the opportunity to run the tests for SubSonic 2.2 but I assume someone has and they passed..</p> <p><strong>Finally...</strong></p> <p>Can someone give me the definitive answer to how Transactions in SubSonic2.2 should be set up? Are the docs indeed wrong? Does the source for the ExecuteTransaction overloads and tests be aligned to whichever way is actually correct?</p> http://stackoverflow.com/questions/1349201/subsonic-3-0-0-3-not-generating-parameters-for-stored-procedures/1361508#1361508 1 Answer by BlackMael for Subsonic 3.0.0.3 not generating parameters for stored procedures BlackMael 2009-09-01T09:35:23Z 2009-09-01T09:35:23Z <p>To debug a T4 template file...</p> <p><a href="http://www.olegsych.com/2008/09/t4-tutorial-debugging-code-generation-files/" rel="nofollow">T4 Tutorial: Debugging Code Generation Files</a></p> <p>Using the project in the SubSonic-30-Templates that points to an instance of Northwind in SqlExpress I added the stored procedure above. Re-generated the StoredProcedures.tt and it happily created...</p> <pre><code>public StoredProcedure prc_Sample(string FileName){ StoredProcedure sp=new StoredProcedure("prc_Sample",this.Provider); sp.Command.AddParameter("FileName",FileName,DbType.AnsiString); return sp; } </code></pre> <p>Though I use the latest and greatest build, I've not noticed issues with parameters missing.</p> <p>Can you post your <strong>Settings.ttinclude</strong> and possibly <strong>SqlServer.ttinclude</strong> file? Or maybe a link to them? The <strong>StoredProcedures.tt</strong> may be good too.</p> http://stackoverflow.com/questions/1334615/subsonic-aggregation-constraint-having/1352238#1352238 3 Answer by BlackMael for Subsonic Aggregation Constraint ("Having") BlackMael 2009-08-29T20:00:40Z 2009-08-29T20:00:40Z <p>SubSonic does have a "having" but you don't explicitly state it.</p> <p>It is determined from you selecting an Aggregate and adding the Aggregate to the Where clause.</p> <p>For example (paraphrased from SubSonic AggregateTests.cs)</p> <pre><code> SubSonic.SqlQuery q = new Select(Aggregate.GroupBy("ProductID"), Aggregate.Avg("UnitPrice")) .From("Order Details") .Where(Aggregate.Avg("UnitPrice")) .IsGreaterThan(50); </code></pre> <p>The SubSonic query above will create a SQL statement with a "HAVING AVG(UnitPrice) > 50"</p> http://stackoverflow.com/questions/336009/where-is-the-handy-designer-for-setting-permissions-and-schema-diagram-designer-i 1 Where is the handy designer for setting Permissions and schema diagram designer in a SQL2005 Database Project in VSTS2008 Database Edition GDR RTM? BlackMael 2008-12-03T01:37:34Z 2009-08-29T04:00:02Z <p>I have just installed the GDR RTM version of Visual Studio Team System Database Edition GDR RTM.</p> <p>It all seems to work wonderfully, but I seem to have to edit XML (Database.sqlpermissions) for specify SQL Permissions.</p> <p>Am I missing something?</p> <p>For that matter where is the schema diagram tool?</p> <p>I understand GDR exposes alot for extending the Database Edition components, so am I supposed to wait for third party extensions to provide the diagram tool and permissions designer?</p> http://stackoverflow.com/questions/1135506/subsonic-3-simple-repository-and-transactions/1317361#1317361 0 Answer by BlackMael for Subsonic 3 Simple Repository And Transactions BlackMael 2009-08-22T23:51:31Z 2009-08-22T23:51:31Z <p>Perhaps switching the SharedDbConnectionScope and TransactionScope around may help.</p> <pre><code>using (SharedDbConnectionScope scs = new SharedDbConnectionScope("connstring", "providerName")) { using (TransactionScope ts = new TransactionScope()) { } } </code></pre> http://stackoverflow.com/questions/1287148/t-sql-query-to-flag-repeat-records 2 T-SQL query to flag repeat records BlackMael 2009-08-17T10:08:12Z 2009-08-18T17:03:32Z <p>I have a table that will have 500,000+ records. Each record has a LineNumber field which is not unique and not part of the primary key. Each record has a CreatedOn field.</p> <p>I need to update all 500,000+ records to identify repeat records.</p> <p>A repeat records is defined by a record that has the same LineNumber within the last seven days of its CreatedOn field.</p> <p><img src="http://i30.tinypic.com/27xq7oz.jpg" alt="alt text" /> </p> <p>In the diagram above row 4 is a repeat because it occurred only five days since row 1. Row 6 is not a repeat even though it occurs only four days since row 4, but row 4 itself is already a repeat, so Row 6 can only be compared to Row 1 which is nine days prior to Row 6, therefore Row 6 is not a repeat.</p> <p>I do not know how to update the IsRepeat field with stepping through each record one-by-one via a cursor or something.</p> <p>I do not believe cursors is the way to go, but I'm stuck with any other possible solution.</p> <p>I have considered maybe Common Table Expressions may be of help but I have no experience with them and have no idea where to start.</p> <p>Basically this same process needs to be done on the table every day as the table is truncated and re-populated every single day. Once the table is re-populated, I have to go through and re-mark each record if it is a repeat or not.</p> <p>Some assistance would be most appreciated.</p> <p><strong>UPDATE</strong></p> <p>Here is a script to create a table and insert test data</p> <pre><code>USE [Test] GO /****** Object: Table [dbo].[Job] Script Date: 08/18/2009 07:55:25 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Job]') AND type in (N'U')) DROP TABLE [dbo].[Job] GO USE [Test] GO /****** Object: Table [dbo].[Job] Script Date: 08/18/2009 07:55:25 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Job]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Job]( [JobID] [int] IDENTITY(1,1) NOT NULL, [LineNumber] [nvarchar](20) NULL, [IsRepeat] [bit] NULL, [CreatedOn] [smalldatetime] NOT NULL, CONSTRAINT [PK_Job] PRIMARY KEY CLUSTERED ( [JobID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] END GO SET NOCOUNT ON INSERT INTO dbo.Job VALUES ('1006',NULL,'2009-07-01 07:52:08') INSERT INTO dbo.Job VALUES ('1019',NULL,'2009-07-01 08:30:01') INSERT INTO dbo.Job VALUES ('1028',NULL,'2009-07-01 09:30:35') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-01 10:51:10') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-02 09:22:30') INSERT INTO dbo.Job VALUES ('1027',NULL,'2009-07-02 10:27:28') INSERT INTO dbo.Job VALUES (NULL,NULL,'2009-07-02 11:15:33') INSERT INTO dbo.Job VALUES ('1029',NULL,'2009-07-02 13:01:13') INSERT INTO dbo.Job VALUES ('1014',NULL,'2009-07-03 12:05:56') INSERT INTO dbo.Job VALUES ('1029',NULL,'2009-07-03 13:57:34') INSERT INTO dbo.Job VALUES ('1025',NULL,'2009-07-03 15:38:54') INSERT INTO dbo.Job VALUES ('1006',NULL,'2009-07-04 16:32:20') INSERT INTO dbo.Job VALUES ('1025',NULL,'2009-07-05 13:46:46') INSERT INTO dbo.Job VALUES ('1029',NULL,'2009-07-05 15:08:35') INSERT INTO dbo.Job VALUES ('1000',NULL,'2009-07-05 15:19:50') INSERT INTO dbo.Job VALUES ('1011',NULL,'2009-07-05 16:37:19') INSERT INTO dbo.Job VALUES ('1019',NULL,'2009-07-05 17:14:09') INSERT INTO dbo.Job VALUES ('1009',NULL,'2009-07-05 20:55:08') INSERT INTO dbo.Job VALUES (NULL,NULL,'2009-07-06 08:29:29') INSERT INTO dbo.Job VALUES ('1002',NULL,'2009-07-07 11:22:38') INSERT INTO dbo.Job VALUES ('1029',NULL,'2009-07-07 12:25:23') INSERT INTO dbo.Job VALUES ('1023',NULL,'2009-07-08 09:32:07') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-08 09:46:33') INSERT INTO dbo.Job VALUES ('1016',NULL,'2009-07-08 10:09:08') INSERT INTO dbo.Job VALUES ('1023',NULL,'2009-07-09 10:45:04') INSERT INTO dbo.Job VALUES ('1027',NULL,'2009-07-09 11:31:23') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-09 13:10:06') INSERT INTO dbo.Job VALUES ('1006',NULL,'2009-07-09 15:04:06') INSERT INTO dbo.Job VALUES ('1010',NULL,'2009-07-09 17:32:16') INSERT INTO dbo.Job VALUES ('1012',NULL,'2009-07-09 19:51:28') INSERT INTO dbo.Job VALUES ('1000',NULL,'2009-07-10 15:09:42') INSERT INTO dbo.Job VALUES ('1025',NULL,'2009-07-10 16:15:31') INSERT INTO dbo.Job VALUES ('1006',NULL,'2009-07-10 21:55:43') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-11 08:49:03') INSERT INTO dbo.Job VALUES ('1022',NULL,'2009-07-11 16:47:21') INSERT INTO dbo.Job VALUES ('1026',NULL,'2009-07-11 18:23:16') INSERT INTO dbo.Job VALUES ('1010',NULL,'2009-07-11 19:49:31') INSERT INTO dbo.Job VALUES ('1029',NULL,'2009-07-12 11:57:26') INSERT INTO dbo.Job VALUES ('1003',NULL,'2009-07-13 08:32:20') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-13 09:31:32') INSERT INTO dbo.Job VALUES ('1021',NULL,'2009-07-14 09:52:54') INSERT INTO dbo.Job VALUES ('1021',NULL,'2009-07-14 11:22:31') INSERT INTO dbo.Job VALUES ('1023',NULL,'2009-07-14 11:54:14') INSERT INTO dbo.Job VALUES (NULL,NULL,'2009-07-14 15:17:08') INSERT INTO dbo.Job VALUES ('1005',NULL,'2009-07-15 13:27:08') INSERT INTO dbo.Job VALUES ('1010',NULL,'2009-07-15 14:10:56') INSERT INTO dbo.Job VALUES ('1011',NULL,'2009-07-15 15:20:50') INSERT INTO dbo.Job VALUES ('1028',NULL,'2009-07-15 15:39:18') INSERT INTO dbo.Job VALUES ('1012',NULL,'2009-07-15 16:06:17') INSERT INTO dbo.Job VALUES ('1017',NULL,'2009-07-16 11:52:08') SET NOCOUNT OFF GO </code></pre> http://stackoverflow.com/questions/1145829/vb-net-cant-find-by-string/1155798#1155798 0 Answer by BlackMael for VB.net can't find by string BlackMael 2009-07-20T20:30:30Z 2009-07-20T20:30:30Z <p>The problem is with SubSonic3's SQL generator and the expression tree generated from VB.NET.</p> <p>VB.NET generates a different expression tree as noted by JaredPar and SubSonic3 doesn't account for it - see <a href="http://github.com/subsonic/SubSonic-3.0/issues#issue/66" rel="nofollow">Issue 66</a>.</p> <p>I have implemented the fix as <a href="http://blogs.msdn.com/vbteam/archive/2007/09/18/vb-expression-trees-string-comparisons.aspx" rel="nofollow">described</a> but it has yet to merge into the main branch of SubSonic3.</p> http://stackoverflow.com/questions/1148681/where-is-the-subsonic-3-test-database-subsonic 1 Where is the SubSonic 3 Test Database "SubSonic"? BlackMael 2009-07-18T21:54:00Z 2009-07-18T23:47:51Z <p>I may be a little dense at times but where do I get the SubSonic database referenced by the SubSonic 3 test project?</p> http://stackoverflow.com/questions/257234/what-does-the-strunk-white-badge-mean -1 What does the Strunk & White badge mean? [closed] BlackMael 2008-11-02T19:20:59Z 2009-06-26T01:52:26Z <p>Okay, it says "edited 100 entries" so that is fine.</p> <p>What I am curious about is what "Strunk &amp; White" itself mean or references?</p> http://stackoverflow.com/questions/300841/how-do-you-globally-set-the-date-format-in-asp-net 2 How do you globally set the date format in ASP.NET? BlackMael 2008-11-19T02:26:54Z 2009-05-08T00:47:45Z <p>How do you globally set the date format in ASP.NET?</p> <p>My local machine and servers have Regional Settings set to "English (New Zealand)".</p> <p>When I format a date with "dd/MM/yyyy" I expect to see "19/11/2008" for today for example.</p> <p>Until recently, that is what I did in fact get from both my local machine and the servers.</p> <p>Just recently, for some mysterious reason, our local machines have changed ever so slightly. Despite still be set to "English (New Zealand)", the date delimter has changed from "/" to "-"! The same change has not occurred on the servers which still show "English (New Zealand)" and the "/" for the date delimter.</p> <p>So now for my local machine, for the format "dd/MM/yyyy" I get "19-11-2008" instead of "19/11/2008".</p> <p>This is a little disconcerting.</p> <p>The only way around it that I can see so far is to escape the slashes and set the format to "dd\/MM\/yyyy". It seems to work, but it doesn't seem to be the ideal solution.</p> <p>Can anyone please help?</p> <p>NOTE: This is for an intranet application and I do not care about true globalisation. I just want to fix the date format and not have it change on me.</p> http://stackoverflow.com/questions/795267/why-is-stylesheet-loaded-when-contional-comment-states-it-should-be-ignored 0 Why is Stylesheet loaded when Contional Comment states it should be ignored? BlackMael 2009-04-27T21:01:14Z 2009-04-28T00:57:03Z <p>I thought conditional comments would instruct the browser to ignore the content if the condition is not met?!</p> <p>For example I want to only include a stylesheet if IE6 is the browser. The following in located in the &lt;HEAD&gt; element of the page.</p> <pre><code>&lt;!--[if IE 6]&gt; &lt;link id="IE6StyleSheet" rel="Stylesheet" type="text/css" href="~/css/IE6.css" runat="server" /&gt; &lt;![endif]--&gt; </code></pre> <p>or</p> <pre><code>&lt;!--[if IE 6]&gt; &lt;link rel="Stylesheet" type="text/css" href="../css/IE6.css" /&gt; &lt;![endif]--&gt; </code></pre> <p>How come IE7, IE8 and FF3 all load that stylesheet?!</p> <p>NOTE: Changing the condition to [if lte IE 6] does not make any difference! :(</p> <p><strong>MAJOR UPDATE</strong></p> <p>I am a moron... I just noticed what I did wrong! The example I'd given was slightly modified. The path to the css file in under App_Themes! Of course the css was always loaded!!!</p> http://stackoverflow.com/questions/722171/asp-net-multiple-session-objects-in-a-single-application/722269#722269 4 Answer by BlackMael for ASP.NET: Multiple Session objects in a single application BlackMael 2009-04-06T16:47:02Z 2009-04-06T16:56:43Z <p>Wouldn't the simplest solution be to update references to Session objects that are company dependent with a dynamic key based on the Company?</p> <p>For example... </p> <pre><code>Session["IsTest"] </code></pre> <p>becomes</p> <pre><code>Session[createSessionKey(CompanyID, "IsTest")] </code></pre> <p>where createSessionKey generates the corresponding key possibly by a simple concatenation of Company and Key</p> <p>This would then differentiate the two or more companies by accessing the session via generated keys.</p> <p>Following the example above, company1 would access the "IsTest" Session variable via the key "company1_IsTest" and company2 would access the "same" "IsTest" Session variable via the key "company2_IsTest".</p> <p>Hopefully you have don't have things like Session("IsTest") littered all over your code base as that would make refactoring your code a real pain.</p> <p>Typically I abstract my Session variables into a strongly typed class. Then my session management is contained in one place.</p> <p>Using the idea of having a base Page class and overriding the Session property is a nice way to go if all you Session variables are to be company specific. Though if you can determine if a particular Session key is a generic Session variable or company specific then it may still be workable.</p> http://stackoverflow.com/questions/237091/how-to-get-bids-for-visual-studio-2008-sp1 2 How to get BIDS for Visual Studio 2008 SP1? BlackMael 2008-10-25T22:04:13Z 2009-03-31T04:54:43Z <p>I currently use Visual Studio 2008 SP1 and have been migrating older projects into VS2008 but existing SSIS and SSRS (2005) projects have not been compatible with VS2008. It has been a pain to maintain those BIDS projects as a separate solution.</p> <p>I have been considering upgrading to SQL2008 but because our dev, test and production platforms are all SQL2005 Enterprise Edition I do not like the idea of deviating my local environment from the current standard. Despite wanting BIDS for VS2008.</p> <p>I just installed Sql Express 2008 with all the bits and something occurred to me... Did Sql Express 2008 just install all the BIDS bits I need without requiring me to upgrade my local version of Sql Server?</p> <p>Is this a viable methods of installing BIDS for VS2008 or am I missing something?</p> <p><strong>UPDATE</strong></p> <p>I just had a thought... Why don't I just install the tools from the full SQL Server 2008 since I have access to that.</p> <p>There is still the question of what differences there are between the tools from Express 2008 and the full Sql Server 2008.</p> http://stackoverflow.com/questions/659444/where-do-subsonic-classes-go-in-an-asp-net-mvc-project/659461#659461 0 Answer by BlackMael for Where do Subsonic classes go in an ASP.NET MVC Project? BlackMael 2009-03-18T18:06:38Z 2009-03-18T18:06:38Z <p>I would not put the Subsonic classes directly in the MVC project. Since you didn't with ASP.NET, there is no reason to change now.</p> <p>I wouldn't even leave the Controllers in the MVC web project.</p> http://stackoverflow.com/questions/268037/exported-project-template-from-vs2008-but-it-is-corrupted 0 Exported Project Template from VS2008 but it is corrupted?! BlackMael 2008-11-06T09:19:51Z 2009-03-05T15:03:58Z <p>I am working on creating a custom project template with Visual Studio 2008 Team System edition. I have also created a custom wizard for the custom template.</p> <p>So I have to update the vstemplate file to tell the template to use my custom wizard. But the archive is corrupted!</p> <p>7zip thinks folders within the archive are using non-standard zip compression. The latest winzip thinks the CRC header on the folders doesn't match the main CRC header.</p> <p>What am I doing wrong?</p> <p>If I don't change the template zip file created by VS2008, it works just fine. But I need to be able to update the zip file. If I do, 7zip/winzip fixes the zip file structure and then VS2008 doesn't like the template anymore. Files that are in folders within the zip file are inaccessible.</p> <p>I do notice that the standard templates seem to keep a flat file structure. That is no nested folders or anything. But the vstemplate file has targetfilename attributes that recreate the original folder structure.</p> <p>For example instead of...</p> <pre><code>&lt;Folder Name="My Project" TargetFolderName="My Project"&gt; &lt;ProjectItem ReplaceParameters="true" TargetFileName="AssemblyInfo.vb"&gt;AssemblyInfo.vb&lt;/ProjectItem&gt; &lt;/Folder&gt; </code></pre> <p>the standard vstemplate defines the following...</p> <pre><code>&lt;ProjectItem ReplaceParameters="true" TargetFileName="My Project\AssemblyInfo.vb"&gt;AssemblyInfo.vb&lt;/ProjectItem&gt; </code></pre> <p>I've just had a little think about the above. Are they actually the same thing?</p> <p>Is the problem with the creation of the original zip file?</p> <p>Is the folder structure within the zip file tripping everything up?</p> <p>Should it have added all the files to the zip archive in as flat folder structure? If so is there a fix for VS2008 so that I do not have to manually fix the template archives?</p> http://stackoverflow.com/questions/330571/databound-dropdownlist-in-datagrid-order-of-binding/528262#528262 0 Answer by BlackMael for DataBound DropDownList in DataGrid - order of binding BlackMael 2009-02-09T14:09:38Z 2009-02-09T14:09:38Z <p>Create another DataSource and bind it to the DataGrid. Where the SelectMethod would return the default values in a simple object.</p> <p>Then all the binding should happily work together.</p> http://stackoverflow.com/questions/528066/server-tag-in-onclientclick/528205#528205 8 Answer by BlackMael for Server tag in OnClientClick BlackMael 2009-02-09T13:49:51Z 2009-02-09T13:55:29Z <p>The problem is the binding nugget and the use of single and double quotes.</p> <pre><code>&lt;asp:LinkButton D="DeleteButton" runat="server" CommandName="Delete" OnClientClick='&lt;%# CreateConfirmation(Eval("Username")) %&gt;'&gt;Delete&lt;/asp:LinkButton&gt; </code></pre> <p>Then on the code-behind add the function...</p> <pre><code>Public Function CreateConfirmation(ByVal Username As String) As String Return String.Format("return confirm('Are you sure you want to delete {0}?');", Username) End Function </code></pre> <p>When the binding nugget is used as the value for an attribute, you'll note you have to use single quotes. Your script also needed quotes for the embedded string parameter to the confirm function. You basically ran out of quotes.</p> http://stackoverflow.com/questions/237069/why-does-a-ssrs-report-time-out-when-the-stored-procedure-it-is-based-on-returns 0 Why does a SSRS report time out when the Stored Procedure it is based on returns results within a few seconds? BlackMael 2008-10-25T21:49:27Z 2009-02-03T15:27:03Z <p>I have a report that renders data returned from a stored procedure. Using profiler I can catch the call to the stored procedure from the reporting services.</p> <p>The report fails stating the report timed out yet I can execute the stored procedure from SSMS and it returns the data back in five to six seconds.</p> <p>Note, in the example test run only two rows are returned to the report for rendering though within the stored procedure it may have been working over thousands or even millions of records in order to collate the result passed back to reporting services.</p> <p>I know the stored procedure could be optimised more but I do not understand why SSRS would be timing out when the execution only seems to take a few seconds to execute from SSMS.</p> <p>Also another issue has surfaced. If I recreate the stored procedure, the report starts to render perfectly fine again. That is fine except after a short period of time, the report starts timing out again.</p> <p>The return of the time out seems to be related to new data being added into the main table the report is running against. In the example I was testing, just one hundred new records being inserted was enough to screw up the report.</p> <p>I imagine more correctly its not the report that is the root cause. It is the stored procedure that is causing the time out when executed from SSRS.</p> <p>Once it is timeing out again, I best fix I have so far is to recreate the stored procedure. This doesn't seem to be an ideal solution.</p> <p>The problem also only seems to be occuring on our production environment. Our test and development platforms do not seem to be exhibiting the same problem. Though dev and test do not have the same volume of records as production.</p> http://stackoverflow.com/questions/467717/sql-server-reporting-services-2005-licensing 2 SQL Server Reporting Services 2005 Licensing BlackMael 2009-01-22T00:58:44Z 2009-02-02T12:27:25Z <p>Does the use of subscriptions in Reporting Services 2005 require special licensing?</p> http://stackoverflow.com/questions/421953/asp-net-gridview-validation-repeating-validation-messages-issue/422925#422925 0 Answer by BlackMael for asp.net - gridview validation - repeating validation messages issue BlackMael 2009-01-08T01:41:03Z 2009-01-08T01:41:03Z <p>I would suggest not using a Validator Summary.</p> <p>Change the Text property or inner content of the validators to something more appropriate for your application.</p> <p>For example...</p> <pre><code>&lt;asp:Validator ID="X" ... runAt="server" Text="*" /&gt; </code></pre> <p>or</p> <pre><code>&lt;asp:Validator ID="X" ... runAt="server"&gt;*&lt;/asp:Validator&gt; </code></pre> <p>or to display an image...</p> <pre><code>&lt;asp:Validator ID="X" ... runAt="server"&gt;&lt;img src="../path.png" alt="Invalid" /&gt;&lt;/asp:Validator&gt; </code></pre> <p>I also style the validator to change to pointer to the help cursor and add a ToolTip property to show the same Error Message.</p> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node 1 ASP.NET TreeView and Selecting the Selected Node BlackMael 2008-09-20T04:54:00Z 2008-12-21T06:04:34Z <p>How do I capture the event of the clicking the Selected Node of a TreeView? It doesn't fire the <strong>SelectedNodeChanged</strong> since the selection has obviously not changed but then what event can I catch so I know that the Selected Node was clicked?</p> <p><strong>UPDATE</strong>: When I have some time, I'm going to have to dive into the bowels of the TreeView control and dig out what and where it handles the click events and subclass the TreeView to expose a new event OnSelectedNodeClicked.</p> <p>I'll probably do this over the Christmas holidays and I'll report back with the results.</p> <p><strong>UPDATE</strong>: I have come up with a solution below that sub-classes the TreeView control.</p> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/384163#384163 1 Answer by BlackMael for ASP.NET TreeView and Selecting the Selected Node BlackMael 2008-12-21T06:03:14Z 2008-12-21T06:03:14Z <p>After a somewhat lengthy period, I have finally had some time to look into how to subclass the TreeView to handle a Selected Node being clicked.</p> <p>Here is my solution which exposes a new event <strong>SelectedNodeClicked</strong> which you can handle from the Page or wherever. (<em>If needed it is a simple task to refactor into C#</em>)</p> <pre><code>Imports System.Web.UI Imports System.Web Public Class MyTreeView Inherits System.Web.UI.WebControls.TreeView Public Event SelectedNodeClicked As EventHandler Private Shared ReadOnly SelectedNodeClickEvent As Object Private Const CurrentValuePathState As String = "CurrentValuePath" Protected Property CurrentValuePath() As String Get Return Me.ViewState(CurrentValuePathState) End Get Set(ByVal value As String) Me.ViewState(CurrentValuePathState) = value End Set End Property Friend Sub RaiseSelectedNodeClicked() Me.OnSelectedNodeClicked(EventArgs.Empty) End Sub Protected Overridable Sub OnSelectedNodeClicked(ByVal e As EventArgs) RaiseEvent SelectedNodeClicked(Me, e) End Sub Protected Overrides Sub OnSelectedNodeChanged(ByVal e As System.EventArgs) MyBase.OnSelectedNodeChanged(e) ' Whenever the Selected Node changed, remember its ValuePath for future reference Me.CurrentValuePath = Me.SelectedNode.ValuePath End Sub Protected Overrides Sub RaisePostBackEvent(ByVal eventArgument As String) ' Check if the node that caused the event is the same as the previously selected node If Me.SelectedNode IsNot Nothing AndAlso Me.SelectedNode.ValuePath.Equals(Me.CurrentValuePath) Then Me.RaiseSelectedNodeClicked() End If MyBase.RaisePostBackEvent(eventArgument) End Sub End Class </code></pre> http://stackoverflow.com/questions/379962/how-to-pivot-my-data-with-sql-server-2005 1 How to pivot my data with SQL Server 2005 BlackMael 2008-12-19T02:28:31Z 2008-12-19T03:17:33Z <p>I have the following data</p> <p><img src="http://i41.tinypic.com/swr04y.jpg" alt="alt text" /></p> <p>How do I transform it (with SQL Server 2005) into the following format?</p> <p><img src="http://i41.tinypic.com/339u9tw.jpg" alt="alt text" /></p> <p>I have a example solution that I came up with but it seems a little clunky. It smells perhaps?</p> <pre><code>DECLARE @ProductLanguage TABLE ( [PRODUCT_ID] int , [LANGUAGE] varchar(50) ) INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'Czech') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'English') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'German') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'Danish') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'Spanish') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'English') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Finnish') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Greek') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Hungarian') INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52044,'Hebrew') SELECT PRODUCT_ID ,MAX(CASE WHEN [ROW_ID]=1 THEN LANGUAGE ELSE NULL END) As LANG_1 ,MAX(CASE WHEN [ROW_ID]=2 THEN LANGUAGE ELSE NULL END) As LANG_2 ,MAX(CASE WHEN [ROW_ID]=3 THEN LANGUAGE ELSE NULL END) As LANG_3 FROM (SELECT ROW_NUMBER() OVER (PARTITION BY [PRODUCT_ID] ORDER BY [PRODUCT_ID] ASC) AS [ROW_ID] , [PRODUCT_ID] , [LANGUAGE] FROM @ProductLanguage) AS Temp GROUP BY [PRODUCT_ID] </code></pre> <p>The interesting bit is I do not care about the specific Languages displayed in each LANG_* column. Other questions posted here seem to all refer to knowning the pivoted columns by name. But I do not want to name the columns by the languages found.</p> <p><strong>NOTE</strong>: I know I mention the word "pivot" but the best solution for this problem may not involve the PIVOT clause. I just used that word as my question seemed to suggest pivotting data. Maybe a CTE would help with the solution, I do not know. I just know I am not happy about the example solution above.</p> http://stackoverflow.com/questions/1402376/jquery-popups-with-load/1402482#1402482 Comment by BlackMael on Jquery popups with load() BlackMael 2009-09-10T03:07:22Z 2009-09-10T03:07:22Z Hmm... Now I'm confused as it works for me.. http://stackoverflow.com/questions/1402376/jquery-popups-with-load Comment by BlackMael on Jquery popups with load() BlackMael 2009-09-10T03:05:42Z 2009-09-10T03:05:42Z I created a page with the exact same html and jQuery and it worked perfectly. Or at least updated the popupContainer with the dummy text I'd placed in the correspending files it loads. Of course I having implemented any stylesheets. So is the problem actually CSS related? http://stackoverflow.com/questions/1402376/jquery-popups-with-load/1402408#1402408 Comment by BlackMael on Jquery popups with load() BlackMael 2009-09-09T22:37:08Z 2009-09-09T22:37:08Z Why do people think the &lt;img&gt; tag cannot have a &quot;name&quot; attribute? <a href="http://htmlhelp.com/reference/html40/special/img.html" rel="nofollow">htmlhelp.com/reference/html40/&hellip;</a> http://stackoverflow.com/questions/1402376/jquery-popups-with-load/1402402#1402402 Comment by BlackMael on Jquery popups with load() BlackMael 2009-09-09T22:33:17Z 2009-09-09T22:33:17Z Almost there but no banana... the first function passed to &quot;ready&quot; is ill-defined http://stackoverflow.com/questions/1283425/ie7-doesnt-render-part-of-page-until-the-window-resizes-or-switch-between-tabs Comment by BlackMael on IE7 doesn't render part of page until the window resizes or switch between tabs BlackMael 2009-09-08T21:54:02Z 2009-09-08T21:54:02Z Why should the data matter? I have two screens built the same way. Only one seems to have issues with IE7. Granted the data is different but I still can't see why it affects things. IE7 does render the page if you resize the window or just switch between tabs (and not refresh the page at all). It is like IE7 gives up rendering the page when it first loads, and only some window event causes it to think &quot;oops, I haven't finished rendering this page. I should render it properly now&quot;. Most frustrating. http://stackoverflow.com/questions/67916/lambda-expressions-in-vb-net/68839#68839 Comment by BlackMael on lambda expressions in vb.net BlackMael 2009-09-08T00:12:17Z 2009-09-08T00:12:17Z I agree with Richard. The original code from Rob is doing an assignment. It has to be broken out into a For Each loop. http://stackoverflow.com/questions/1372275/subsonic3-vb-net-add-update-firstordefault-problems/1382957#1382957 Comment by BlackMael on SubSonic3 VB.Net Add,Update, FirstOrDefault Problems BlackMael 2009-09-07T23:18:57Z 2009-09-07T23:18:57Z Or perhaps the following works... cat = Category.Find(Function(item) item.CategoryID = 1).FirstOrDefault() http://stackoverflow.com/questions/1372275/subsonic3-vb-net-add-update-firstordefault-problems/1382957#1382957 Comment by BlackMael on SubSonic3 VB.Net Add,Update, FirstOrDefault Problems BlackMael 2009-09-07T22:58:34Z 2009-09-07T22:58:34Z Okay. But as I said, maybe you should be using SingleOrDefault()? My example above (2) works for me, I am not sure why it wouldn't for you. http://stackoverflow.com/questions/1352359/error-handling-should-i-throw-exception-or-handle-at-the-source/1352389#1352389 Comment by BlackMael on Error Handling Should I throw exception? Or handle at the source? BlackMael 2009-08-29T21:36:54Z 2009-08-29T21:36:54Z Of course you could also argue that the caller may not expect exceptions to be throw, and it doesn't bother wrapping the call with a Try Catch. Either way you cannot really force the caller to do anything at all. So it is a moot point to use the actions of the caller as a deciding factor of returning nulls or throwing exceptions. http://stackoverflow.com/questions/1352359/error-handling-should-i-throw-exception-or-handle-at-the-source/1352389#1352389 Comment by BlackMael on Error Handling Should I throw exception? Or handle at the source? BlackMael 2009-08-29T21:36:19Z 2009-08-29T21:36:19Z It's up to the caller to understand the expected results from calling the function. If the caller ignores the fact the signature/documentation states the function can return nulls, then the caller is at fault not the function. Returning nulls is perfectly valid in this case IMOH. http://stackoverflow.com/questions/1327871/subsonic2-2-shareddbconnectionscope-and-transactionscope-transaction-confusion Comment by BlackMael on SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion BlackMael 2009-08-26T06:49:46Z 2009-08-26T06:49:46Z Is the order of SDCS and TS the error or is the error in SDCS itself and the order in the docs correct. Note, for now putting the TS wrapping the SDCS works for me, where SDCS wrapping the TS didn't work in terms of rolling back when it should. http://stackoverflow.com/questions/1327871/subsonic2-2-shareddbconnectionscope-and-transactionscope-transaction-confusion Comment by BlackMael on SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion BlackMael 2009-08-26T06:48:29Z 2009-08-26T06:48:29Z The order of SharedDbConnectionScope (SDCS) and TransactionScope (TS) is the confusing or buggy bit. The docs state SDCS wraps the TS. But that doesn't seem to work. So that is a bug. The ExecuteTransaction overloads have SDCS wrapping the TS so therefore that is also a bug. I couldn't see where the overloads where actually committed but that may be because I didn't look hard enough as opposed to a bug. The test code I looked at had the TS wrapping the SDCS. So from I conclude that is not a bug. The confusing bit is where the error is. http://stackoverflow.com/questions/1297022/subsonic-3-activerecord-easy-way-to-compare-two-records Comment by BlackMael on SubSonic 3 / ActiveRecord - Easy way to compare two records? BlackMael 2009-08-22T23:56:18Z 2009-08-22T23:56:18Z The best bet may be to add a hashing function for the columns of a table into the t4 templates. Then it would be a very simple compare. Building a suitable hashing routine would then become the problem. :( Not sure how well that would work hence I've mentioned it as a comment and not an answer. http://stackoverflow.com/questions/1287148/t-sql-query-to-flag-repeat-records/1292182#1292182 Comment by BlackMael on T-SQL query to flag repeat records BlackMael 2009-08-18T20:46:48Z 2009-08-18T20:46:48Z That's the plan once I manage to get my dev machine up and running so that I can try out your solutions http://stackoverflow.com/questions/1287148/t-sql-query-to-flag-repeat-records/1292182#1292182 Comment by BlackMael on T-SQL query to flag repeat records BlackMael 2009-08-18T11:57:39Z 2009-08-18T11:57:39Z It ignores LineNumber IS NULL, but thats okay. I left IsRepeat for NULLs just in case I needed to care. On the most part I think I only really need to default to FALSE if LineNumber IS NULL