User BlackWasp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:14:44Z http://stackoverflow.com/feeds/user/21862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1870028/is-there-a-way-to-obtain-the-html-of-a-web-page-using-the-net-compact-framework 0 Is there a way to obtain the HTML of a web page using the .NET compact framework? BlackWasp 2009-12-08T21:38:29Z 2009-12-08T21:48:36Z <p>As the WebBrowser control does not expose a get accessor for the DocumentText property you cannot use it to obtain the HTML that was loaded into this control. Does anyone know a way to obtain the HTML as a string?</p> <p>I am using .NET CF3.5.</p> http://stackoverflow.com/questions/255350/can-you-recommend-a-free-task-board-burndown-tool-for-windows 3 Can you recommend a free Task Board/Burndown tool for Windows? BlackWasp 2008-11-01T00:59:44Z 2009-12-04T19:22:47Z <p>There's not a lot to add to the subject really.</p> <p>I am after a free task board/ burndown reporting tool for Windows.</p> http://stackoverflow.com/questions/763773/unexpected-performance-results-comparing-int-to-bigint-for-identity-columns 0 Unexpected performance results comparing INT to BIGINT for IDENTITY columns. BlackWasp 2009-04-18T17:04:35Z 2009-11-21T03:00:03Z <p>I have been asked to perform a performance test using SQL Server 2008. As part of this, I am comparing the speed of IDENTITY columns as PKs using INTs and BIGINTs. I have a simple routine to create 100,000 rows for each type and time the insert speed. The script looks like this:</p> <pre><code>SET NOCOUNT ON CREATE TABLE TestData ( PK INT IDENTITY PRIMARY KEY, Dummy INT ) DECLARE @Rows INT DECLARE @Start DATETIME SET @Rows = 100000 SET @Start = GETDATE() WHILE @Rows &gt; 0 BEGIN INSERT INTO TestData (Dummy) VALUES (@Rows) SET @Rows = @Rows - 1 END SELECT @Start, GETDATE(), DATEDIFF(MS, @Start, GETDATE()) DROP TABLE TestData </code></pre> <p>For testing BIGINT identities, I use a very slightly modified version:</p> <pre><code>SET NOCOUNT ON CREATE TABLE TestData ( PK BIGINT IDENTITY PRIMARY KEY, Dummy INT ) DECLARE @Rows INT DECLARE @Start DATETIME SET @Rows = 100000 SET @Start = GETDATE() WHILE @Rows &gt; 0 BEGIN INSERT INTO TestData (Dummy) VALUES (@Rows) SET @Rows = @Rows - 1 END SELECT @Start, GETDATE(), DATEDIFF(MS, @Start, GETDATE()) DROP TABLE TestData </code></pre> <p>To my surprise, the BIGINT version runs appreciably faster than the INT version. The INT version on my test kit takes about 30 seconds and the BIGINT about 25 seconds. Granted the test kit has a 64-bit processor. However, it is running 32-bit Windows and 32-bit SQL Server 2008.</p> <p>Can anyone else recreate, deny, confirm or contest the results or point out if I have missed something?</p> http://stackoverflow.com/questions/1026357/how-can-i-mock-activityexecutioncontext 0 How can I mock ActivityExecutionContext BlackWasp 2009-06-22T09:54:23Z 2009-10-31T17:16:49Z <p>This class is sealed but I need to mock it using Moq for use in a CRM workflow development for calling the method:</p> <pre><code> protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext) </code></pre> <p>How can I do this or get around the problem by creating an instance of ActivityExecutionContext (which has no public constructor)?</p> http://stackoverflow.com/questions/1001140/why-do-i-get-an-argumentoutofrangeexception-from-moq 1 Why do I get an ArgumentOutOfRangeException from Moq? BlackWasp 2009-06-16T12:23:44Z 2009-09-15T10:30:08Z <p>I am using Moq to mock a connection to a Microsoft Dynamics CRM system. I have set up an expectation when a RetrieveMultipleRequest is sent to my Execute method with a specific value in a parameter. The expectation looks like this:</p> <pre><code>mockConnection.Setup( m =&gt; m.Execute(It.Is&lt;RetrieveMultipleRequest&gt;( r =&gt; r.Query.EntityName == "custom_entity"))) .Returns(configResponse); </code></pre> <p>In my code, I call the Execute method of the mocked connection. I can see from debugging the code that the EntityName parameter is set how I expect it to be. However, rather than returning configResponse, an ArgumentOutOfRangeException is thrown from within Moq.</p> <p>The stack trace of the exception are:</p> <pre><code>System.Collections.ArrayList.get_Item(Int32 index) lambda_method(ExecutionScope , RetrieveMultipleRequest ) b__1(TValue value) Matches(Object value) Moq.Matcher.Matches(Object value) Moq.MethodCall.Matches(IInvocation call) b__4(IProxyCall c) System.Linq.Enumerable.LastOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) Moq.Interceptor.Intercept(IInvocation invocation) Castle.DynamicProxy.AbstractInvocation.Proceed() ICrmConnectionProxy17058decd02e4fb58f77d282ab950c88.Execute(Request request) </code></pre> <p>I have a total of ten expectations against the same method but none that have the same EntityName property value.</p> http://stackoverflow.com/questions/758126/what-are-good-tools-for-identifying-potentially-duplicated-code-for-c-express-us 3 What are good tools for identifying potentially duplicated code for C# Express users? BlackWasp 2009-04-16T21:26:11Z 2009-09-03T12:40:22Z <p>A friend of mine only as access to the Express editions of Visual Studio and I am trying to help him refactor to remove a lot of duplication.</p> http://stackoverflow.com/questions/1018525/should-i-change-the-naming-convention-for-my-unit-tests 5 Should I change the naming convention for my unit tests? BlackWasp 2009-06-19T15:13:36Z 2009-08-21T05:11:24Z <p>I currently use a simple convention for my unit tests. If I have a class named "EmployeeReader", I create a test class named "EmployeeReader.Tests. I then create all the tests for the class in the test class with names such as:</p> <ul> <li>Reading_Valid_Employee_Data_Correctly_Generates_Employee_Object</li> <li>Reading_Missing_Employee_Data_Throws_Invalid_Employee_ID_Exception</li> </ul> <p>and so on.</p> <p>I have recently been reading about a <a href="http://elegantcode.com/2008/05/01/thanks-to-bdd/" rel="nofollow">different type of naming convention</a> used in BDD. I like the readability of this naming, to end up with a list of tests something like:</p> <ul> <li>When_Reading_Valid_Employee (fixture) <ul> <li>Employee_Object_Is_Generated (method)</li> <li>Employee_Has_Correct_ID (method)</li> </ul></li> <li>When_Reading_Missing_Employee (fixture) <ul> <li>An_Invalid_Employee_ID_Exception_Is_Thrown (method)</li> </ul></li> </ul> <p>and so on.</p> <p>Has anybody used both styles of naming? Can you provide any advice, benefits, drawbacks, gotchas, etc. to help me decide whether to switch or not for my next project?</p> http://stackoverflow.com/questions/1037121/why-does-my-crm-workflow-steps-run-individually-but-not-when-two-steps-exist 0 Why does my CRM workflow steps run individually but not when two steps exist? BlackWasp 2009-06-24T08:38:00Z 2009-06-27T09:37:53Z <p>I have created a custom workflow activity that copies attachments from a case to an email, both supplied as Lookup parameters. I installed the workflow assembly, created a case with attachments and an email. I then used the workflow design to create a new workflow with one step that runs my custom activity. The attachments copied nicely.</p> <p>The first use of the custom workflow assembly is to create the email before doing the copying the attachments. I therefore created a new workflow that created an email using details from a case. I set this up as a manual workflow as this it what the end user (CRM consultant) will be doing. I ran that workflow and an email was created as expected.</p> <p>I then modified the second workflow to add a second step. The second step copies the attachments from the current case to the created email. When I ran the workflow, it failed on step 1.</p> <p>I modified the workflow so that the email from step 1 was not used in step 2. Instead, I used an existing email as per my very first test. This means that the two steps when executed individually work and if they ran concurrently they should work because there is no link between them. However, when I ran the workflow, it failed on step 1.</p> <p>Can anyone suggest why this may be happening?</p> http://stackoverflow.com/questions/1037121/why-does-my-crm-workflow-steps-run-individually-but-not-when-two-steps-exist/1052503#1052503 0 Answer by BlackWasp for Why does my CRM workflow steps run individually but not when two steps exist? BlackWasp 2009-06-27T09:37:53Z 2009-06-27T09:37:53Z <p>I found the answer so thought I would post it here. I had a class in use that was not marked with the [Serializable] attribute. Once the attribute was added, the problem went away.</p> http://stackoverflow.com/questions/985624/can-i-get-a-series-of-good-results-and-a-thrown-exception-from-moq 2 Can I get a series of good results and a thrown exception from Moq. BlackWasp 2009-06-12T08:36:55Z 2009-06-12T09:34:53Z <p>I am mocking a wrapper to an MSMQ. The wrapper simply allows an object instance to be created that directly calls static methods of the MessageQueue class.</p> <p>I want to test reading the queue to exhaustion. To do this I would like the mocked wrapper to return some good results and throw an exception on the fourth call to the same method. The method accepts no parameters and returns a standard message object.</p> <p>Can I set up this series of expectations on the method in Moq?</p> http://stackoverflow.com/questions/901724/what-skills-should-a-tech-leader-have/946586#946586 0 Answer by BlackWasp for What skills should a tech leader have? BlackWasp 2009-06-03T19:12:37Z 2009-06-03T19:12:37Z <p>In addition to the other items here, they should have the trust in the team to delegate responsibility and allow other people to take on the work. Too many leads take all of the work themselves, increase their personal stress and deliver poor quality and / or late because the rest of the team is ssat around twiddling their thumbs with nothing to do.</p> http://stackoverflow.com/questions/927679/how-to-add-text-in-a-multiline-textbox/927836#927836 0 Answer by BlackWasp for How to add text in a multiline textbox? BlackWasp 2009-05-29T19:55:43Z 2009-05-29T19:55:43Z <p>Not sure why your code would not work unless something else is going on.</p> <p>I just created a WinForms project using C#, added a textbox, set it multiline and added the following code - works a charm.</p> <pre><code>textBox1.Text = "a\r\nb"; </code></pre> http://stackoverflow.com/questions/845920/how-do-you-organise-your-code-library 3 How do you organise your code library? BlackWasp 2009-05-10T19:21:01Z 2009-05-10T23:05:22Z <p>I am interested to know how people organise their code libraries, particularly with respect to reusable components. I am talking in OO terms below but I am interested in how your organise libraries for other types of language also.</p> <p>For example:</p> <ul> <li>Are you a stickler for class library projects for everything or do you prefer to keep everything in a single project?</li> <li>Do you reuse your prebuilt DLLs or do you include individual classes from previous projects in your current work? If individual classes, do you share them between the projects to ensure all are kept up to date or do you permit branching?</li> <li>How large are your reusable elements? How focussed are they? How are they focussed?</li> <li>What level of reuse do you attain through your preferred practices?</li> </ul> <p>etc.</p> <p>EDIT</p> <p>I am not looking for specific guidance here, I am just interested in people's thoughts and practices. I am particularly interested in the reuse of code between disparate projects, rather than within a single project. (Unfortunately the use of 'project' here is misleading - I mean reuse between real-world projects undertaken for customers, not projects in a Visual Studio sense.)</p> http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/831253#831253 0 Answer by BlackWasp for MS SQL: Database + Windows Authentication + Username/Password? BlackWasp 2009-05-06T19:18:23Z 2009-05-06T19:18:23Z <p>The article and point in question relates to SQL security, not integrated security. You can pass the credentials for a SQL user and log in in this manner if SQL authentication (mixed mode) is enabled. If the SQL server is set up to use integrated security only then this will not work. It will also not work to allow logging in using Windows logon credentials.</p> http://stackoverflow.com/questions/824489/when-what-and-why-did-you-start-programming/824491#824491 1 Answer by BlackWasp for When, What, and why did you start programming? BlackWasp 2009-05-05T11:39:18Z 2009-05-05T11:39:18Z <p>The good old days for me were aged 12 on a ZX Spectrum in BASIC - fat rubbery keys :) Then moved into assemly - Z80, 6502, 8086 Bit of C, C++, VB3-6 and now mainly C#.</p> <p>Reason why? It's fun :) You get to create something really special without the need to have particularly skilled hands (apart from for typing quickly).</p> http://stackoverflow.com/questions/610334/is-it-possible-to-set-a-property-value-of-object-during-expect-call-in-rhinomocks 0 Is it possible to set a property value of object during Expect.Call in RhinoMocks? BlackWasp 2009-03-04T12:30:29Z 2009-05-04T14:51:06Z <p>I have a method that should only be called when a property of a specific object is set to false. This is its initial value. After the first call, the property is set to true, ensuring that the call is only ever made once.</p> <p>However, when I mock the class that performs this change, the mock object does not change the property of the underlying object.</p> <p>Is there a way to force a change of a property on an object is response to an Expectation being met?</p> <p>Something along the lines of...</p> <pre><code>Expect.Call(mockedObject.TestMethod(underlyingObject)).NowDoThis(delegate() { underlyingObject.Processed = true; }); </code></pre> http://stackoverflow.com/questions/816385/sql-server-2008-express-setup-problem/816541#816541 0 Answer by BlackWasp for sql server 2008 express setup problem BlackWasp 2009-05-03T07:55:10Z 2009-05-03T07:55:10Z <p>I had a similar problem because I still had some remnants of SQL Server 2005 left - not the services, it was some parts of the IDE. Anyway, to resolve it I used the option to upgrade (sorry, I can't remember the exact option just now). After running the upgrade portion, which took a few minutes, I could then run the full install with no problems.</p> http://stackoverflow.com/questions/814840/desktop-wiki-to-replace-sea-of-post-its/814877#814877 0 Answer by BlackWasp for Desktop wiki to replace sea of post its BlackWasp 2009-05-02T13:35:24Z 2009-05-02T13:35:24Z <p>I use <a href="http://dale.lane.googlepages.com/" rel="nofollow">BladeWiki</a>. Very simple to use and easy to backup. It will also run from a USB stick.</p> http://stackoverflow.com/questions/435927/can-anybody-recommend-a-pdf-solution-for-the-compact-framework 0 Can anybody recommend a PDF solution for the Compact Framework? BlackWasp 2009-01-12T16:15:45Z 2009-04-20T13:14:55Z <p>We have a requirement to generate PDF documents using information from a PDA / Mobile Phone. We cannot send the information back to a server as the information is required immediately and the engineers with the devices may be out of coverage.</p> <p>So, can anybody recommend a .NET compact framework component for producing PDFs?</p> <p>Could you also tell me about your experiences with it?</p> <p>Thanks</p> http://stackoverflow.com/questions/246913/is-visual-studio-written-in-winforms/247295#247295 -1 Answer by BlackWasp for Is Visual Studio written in winforms? BlackWasp 2008-10-29T15:40:14Z 2009-04-18T17:08:24Z <p>This sounds a bit like a "<a href="http://en.wikipedia.org/wiki/Loaded%5Fquestion" rel="nofollow">Are you still beating your wife?</a>" question with no answer that sounds good from Visual Studio's point of view.</p> <p>No, Visual Studio (at least up to 2008) is not written using .NET. However, SharpDevelop and other editors are and do not suffer from speed problems necessarily.</p> http://stackoverflow.com/questions/693531/extending-enums-via-user-input/693536#693536 1 Answer by BlackWasp for Extending enums via user input BlackWasp 2009-03-28T21:15:52Z 2009-03-28T21:15:52Z <p>An enum may not be the right tool for the job in that case. You would be better off using a set of configuration options. These could be in a config file, in the registry or in a database, depending upon what is available to you and whether you want the configuration to be undertaken by a developer or consultant, or by the users of the system.</p> http://stackoverflow.com/questions/662113/how-do-i-get-the-product-version-for-my-silverlight-program 1 How do I get the product version for my Silverlight program? BlackWasp 2009-03-19T13:01:52Z 2009-03-19T13:13:58Z <p>In Winforms I would use Application.ProductVersion to get the version of my code. Is there an equivalent for Silverlight 2.0?</p> http://stackoverflow.com/questions/649746/is-there-a-document-describing-silverlight-2-0-security-considerations 0 Is there a document describing Silverlight 2.0 security considerations? BlackWasp 2009-03-16T09:25:45Z 2009-03-19T13:04:52Z <p>Our IT guys haven't worked with Silverlight 2.0 yet and I am asking them to roll it out across the organisation. They would like to see a document from Microsoft that describes the security implications for the network. Can anyone point me to one?</p> http://stackoverflow.com/questions/609949/how-can-i-remove-the-test-with-menu-left-after-uninstalling-testdriven-net 0 How can I remove the "Test With" menu left after uninstalling TestDriven.NET? BlackWasp 2009-03-04T10:09:33Z 2009-03-16T03:24:35Z <p>I have uninstalled my trial of TestDriven.NET but it leaves this menu behind on the context menu. How can I remove this?</p> http://stackoverflow.com/questions/235564/is-it-possible-to-throw-a-messagequeueexception 0 Is it possible to throw a MessageQueueException? BlackWasp 2008-10-24T23:10:46Z 2009-03-14T16:50:36Z <p>I am using a mock object in RhinoMocks to represent a class that makes calls to MessageQueue.GetPublicQueues. I want to simulate the exception thrown when message queueing is operating in workgroup mode, which is a MessageQueueException, to ensure that I am catching the exception correctly</p> <p>The MessageQueueException has no public constructor, only the standard protected constructor for an exception. Is there an appropriate way to throw this exception from the mock object / Expect.Call statement?</p> http://stackoverflow.com/questions/631850/how-do-you-name-your-many-to-many-relationship-tables/632014#632014 1 Answer by BlackWasp for How do you name your many-to-many relationship tables? BlackWasp 2009-03-10T19:57:08Z 2009-03-10T19:57:08Z <p>I like to use something that describes the data for what it is, rather than just tacking the names together from the two tables. This way it will also make sense should the linking table become more functional at a later time.</p> <p>In this case, I would go for either PostTags or TagPosts.</p> http://stackoverflow.com/questions/52312/what-is-the-real-overhead-of-try-catch-in-c/624610#624610 0 Answer by BlackWasp for What is the real overhead of try/catch in C#? BlackWasp 2009-03-09T00:17:35Z 2009-03-09T00:17:35Z <p>I wrote an article about this a while back because there were a lot of people asking about this at the time. You can find it and the test code at <a href="http://www.blackwasp.co.uk/SpeedTestTryCatch.aspx" rel="nofollow">http://www.blackwasp.co.uk/SpeedTestTryCatch.aspx</a>.</p> <p>The upshot is that there is a tiny amount of overhead for a try/catch block but so small that it should be ignored. However, if you are running try/catch blocks in loops that are executed millions of times, you may want to consider moving the block to outside of the loop if possible.</p> <p>The key performance issue with try/catch blocks is when you actually catch an exception. This can add a noticeable delay to your application. Of course, when things are going wrong, most developers (and a lot of users) recognise the pause as an exception that is about to happen! The key here is not to use exception handling for normal operations. As the name suggests, they are exceptional and you should do everything you can to avoid them being thrown. You should not use them as part of the expected flow of a program that is functioning correctly.</p> http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/143516#143516 1 Answer by BlackWasp for What's the least useful comment you've ever seen? BlackWasp 2008-09-27T12:13:23Z 2009-03-02T18:32:46Z <p>I have removed the name to avoid embarassment but this is a comment found in some production code. Unfortunately, as this was ASP code, referring to a VB6 module, and the customer was quite inquisitive, it was she who pointed out the comment to me whilst I was on-site during a consultancy visit. Luckily she had a sense of humour about it.</p> <blockquote> <p>'I don't know how the help this @"%&amp; works. It is a load of &amp;£$! created by that contractor ---------.<br/> I will just leave it in place and hope nobody ever needs it changing.</p> </blockquote> <p>Unfortunately for me the code did need changing about a year later, at which point we found we had no source code and had to junk it and rewrite for free.</p> http://stackoverflow.com/questions/533898/microsoft-message-queue-missing-messages/534788#534788 2 Answer by BlackWasp for Microsoft Message Queue Missing Messages BlackWasp 2009-02-10T23:34:20Z 2009-02-10T23:34:20Z <p>If it isn't hitting the queue at all and isn't going to the dead-letter queue, it suggests the item isn't being sent to the queue. You should be able to confirm that this is the case by switching on the journal for the queue.</p> <p>Assuming it isn't hitting the queue, it is probably a transaction issue. I would check that you are definitely committing the message to the queue every time. Make sure there aren't any exceptions being thrown and swallowed that causes the transaction to roll back or never be committed (essentially the same thing). Also make sure there aren't any conditional statements that mean the commit gets skipped.</p> <p>I would add some logging around every location where a transaction is started, committed and rolled back and also around any location where you are creating a message. You can then review you log to see the order of events and see what's going astray.</p> <p>Another option would be to remove all of the transaction code and test the code against a non-transactional queue. If the messages all appear then it is a transactional problem. If not, the issue is elsewhere.</p> <p>I use MSMQ a lot and the one thing I have learned through experience is that it works really well and the weak point is me :-)</p> http://stackoverflow.com/questions/534096/should-a-business-rule-violation-throw-an-exception/534741#534741 0 Answer by BlackWasp for Should a business rule violation throw an exception? BlackWasp 2009-02-10T23:23:21Z 2009-02-10T23:23:21Z <p>As an alternative view to most of the answers...</p> <p>It can be useful to throw exceptions from the business logic, particularly if they are cuased by a failure in validation. If you are expecting an object and you get a null, it suggests that some problem has evaded detection in the user interface (or other interface). It may be completely valid to throw exceptions at this point. Indeed, you may decide to place this type of validation in the business logic when there are multiple interfaces.</p> <p>Throwing exceptions in some languages / frameworks (I am thinking .NET) can be costly but this should not immediately worry you. It does mean that, at the name suggests, they are used for exceptional circumstances and not as part of the standard flow of a program. You certainly shouldn't throw an exception just to exit a method. You should also consider a graceful recovery where possible that may not include throwing an exception.</p> <p>So, summing up... It depends...</p> http://stackoverflow.com/questions/1049908/is-using-base-bad-practice-even-though-it-might-be-good-for-readability/1049925#1049925 Comment by BlackWasp on Is using "base" bad practice even though it might be good for readability? BlackWasp 2009-06-27T09:45:16Z 2009-06-27T09:45:16Z I wouldn't say that this is coding style or personal preference. A call to base.SomeMethod() vs a call to SomeMethod() may give the same effect in some cases but the two calls may be fundamentally different. http://stackoverflow.com/questions/1026357/how-can-i-mock-activityexecutioncontext/1027383#1027383 Comment by BlackWasp on How can I mock ActivityExecutionContext BlackWasp 2009-06-24T08:39:40Z 2009-06-24T08:39:40Z Execute is an overridden method from within the workflow system. In the end I have just kept that element really thin and extracted the code to another testable class. http://stackoverflow.com/questions/985624/can-i-get-a-series-of-good-results-and-a-thrown-exception-from-moq Comment by BlackWasp on Can I get a series of good results and a thrown exception from Moq. BlackWasp 2009-06-13T10:26:12Z 2009-06-13T10:26:12Z I have been using RhinoMocks but I thought I would give Moq a go to see how it compares and to spread my knowledge. I am now a convert - I find Moq syntax easier to read when scanning code. http://stackoverflow.com/questions/171970/how-can-i-find-the-method-that-called-the-current-method/171974#171974 Comment by BlackWasp on How can I find the method that called the current method? BlackWasp 2009-06-01T15:14:01Z 2009-06-01T15:14:01Z Ah well, thought the comments may not like it. http://stackoverflow.com/questions/171970/how-can-i-find-the-method-that-called-the-current-method/171974#171974 Comment by BlackWasp on How can I find the method that called the current method? BlackWasp 2009-06-01T15:13:42Z 2009-06-01T15:13:42Z This isn't entirely reliable though. Let's see if this works in a comment! Try the following in a console application and you see that compiler optimsations break it. static void Main(string[] args) { CallIt(); } private static void CallIt() { Final(); } static void Final() { StackTrace trace = new StackTrace(); StackFrame frame = trace.GetFrame(1); Console.WriteLine(&quot;{0}.{1}()&quot;, frame.GetMethod().DeclaringType.FullName, frame.GetMethod().Name); } http://stackoverflow.com/questions/294933/generate-unique-id-to-share-with-multiple-tables-sql-2008/294957#294957 Comment by BlackWasp on Generate unique ID to share with multiple tables SQL 2008 BlackWasp 2009-05-31T18:26:55Z 2009-05-31T18:26:55Z Just a small point but since SQL2005 you are able to create sequential GUIDs. http://stackoverflow.com/questions/256579/why-use-y-n-instead-of-a-bit-field-in-microsoft-sql-server/256580#256580 Comment by BlackWasp on Why use "Y"/"N" instead of a bit field in Microsoft SQL Server? BlackWasp 2009-05-31T18:07:18Z 2009-05-31T18:07:18Z @nickf - that's true, good point. It could have also been in bigints. I wonder, perhaps a UNIQUEIDENTIFIER with 00000000-0000-0000-0000-000000000000 for yes and 00000000-0000-0000-0000-000000000001 for no? Or maybe just whack a new GUID in every time you need a Y/N. It could go into a Y/N table! (Of course, you would then need another column in the Y/N table to explain which was in use for each GUID. Perhaps another GUID.... http://stackoverflow.com/questions/932520/why-does-it-appear-that-my-random-number-generator-isnt-random-in-c/932541#932541 Comment by BlackWasp on Why does it appear that my random number generator isn't random in C#? BlackWasp 2009-05-31T17:52:27Z 2009-05-31T17:52:27Z Sometimes you will want a wrapper method (or more likely a wrapper class) for Random so that you can mock it. http://stackoverflow.com/questions/763773/unexpected-performance-results-comparing-int-to-bigint-for-identity-columns/764007#764007 Comment by BlackWasp on Unexpected performance results comparing INT to BIGINT for IDENTITY columns. BlackWasp 2009-05-10T19:40:14Z 2009-05-10T19:40:14Z Weird - must be my server. http://stackoverflow.com/questions/843288/c-when-to-use-this-keyword/843309#843309 Comment by BlackWasp on C# When To Use "This" Keyword BlackWasp 2009-05-09T13:28:46Z 2009-05-09T13:28:46Z Yup. There's nothing wrong with either syntax. http://stackoverflow.com/questions/836945/i-dont-like-this-is-this-cheating-the-language/836965#836965 Comment by BlackWasp on I don't like this... Is this cheating the language? BlackWasp 2009-05-07T21:25:50Z 2009-05-07T21:25:50Z @KM - almost always but not if the second operand is a method that needs to be executed in every case. Of course, one would question the merits of a method such as this being executed within the condition. Better to execute it beforehand and hold the result in a variable. That said, I have seen this happen and known of people head-scratching whilst trying to work out why the method was not being executed as expected. http://stackoverflow.com/questions/97097/what-is-the-c-version-of-vb-nets-inputdialog/97135#97135 Comment by BlackWasp on What is the C# version of VB.net's InputDialog? BlackWasp 2009-05-02T17:29:46Z 2009-05-02T17:29:46Z I think you are being too kind. It's far more ugly and outdated than that! http://stackoverflow.com/questions/790633/problem-loading-project-in-c-express/790652#790652 Comment by BlackWasp on Problem loading project in C# Express. BlackWasp 2009-04-26T13:58:21Z 2009-04-26T13:58:21Z Nope. As I say, all of the examples are created in Express unless the example in question applies only to other versions. I have a dedicated virtual PC for this purpose. I created this one and it loaded fine until I applied the service pack. http://stackoverflow.com/questions/763627/in-c-are-there-any-built-in-exceptions-i-shouldnt-use/763771#763771 Comment by BlackWasp on In C#, are there any built-in exceptions I shouldn't use? BlackWasp 2009-04-19T21:10:43Z 2009-04-19T21:10:43Z Between .NET 2.0 and 3.0 I think. The advice to derive from ApplicationException in .NET 2.0 still exists on MSDN for 2.0 and earlier - <a href="http://msdn.microsoft.com/en-us/library/system.applicationexception(VS.80).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>. For 3.0 it changed - <a href="http://msdn.microsoft.com/en-us/library/system.applicationexception(VS.85).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/763773/unexpected-performance-results-comparing-int-to-bigint-for-identity-columns Comment by BlackWasp on Unexpected performance results comparing INT to BIGINT for IDENTITY columns. BlackWasp 2009-04-19T09:30:53Z 2009-04-19T09:30:53Z I just tried it on the same test box with Express with the same results I had before.