User tpower - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:01:06Z http://stackoverflow.com/feeds/user/18107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1762717/deploy-problem-with-hierarchyid-on-automated-build-only 0 Deploy problem with hierarchyid on automated build only tpower 2009-11-19T11:40:30Z 2009-11-19T11:40:30Z <p>I am getting the following error during the deploy task of an automated build (Team Foundation Build Server). </p> <blockquote> <p>This deployment may encounter errors during execution because [dbo].[MyTableThatUsesHierarchyId] depends on [sys].[hierarchyid] and [sys].[hierarchyid] does not exist in the target database</p> </blockquote> <p>I can manually deploy to the same database server with no problems. Any ideas?</p> http://stackoverflow.com/questions/1751591/how-do-i-displaying-details-of-a-php-internal-server-error 2 How do I displaying details of a PHP internal server error? tpower 2009-11-17T20:36:56Z 2009-11-17T20:48:47Z <p>I have installed a PHP application onto a shared hosting web server. I am getting a <code>500 Internal Server Error</code>. I don't seem to have access to any log files so I would like the error page to temporarily give details of the error.</p> <p>I know how to do this in ASP.Net but I am not that familiar with PHP.</p> http://stackoverflow.com/questions/1683416/how-do-i-run-a-function-before-each-test-when-using-qunit 0 How do I run a function before each test when using qUnit? tpower 2009-11-05T20:36:54Z 2009-11-05T20:51:11Z <p>What is the equivalent of nUnits <code>[SetUp]</code> attribute for qUnit?</p> http://stackoverflow.com/questions/368612/can-i-detect-errors-while-using-a-net-webbrowser-control 2 Can I detect errors while using a .Net WebBrowser control? tpower 2008-12-15T14:58:52Z 2009-11-04T23:02:01Z <p>I have an .Net Froms application that displays web pages through a WebBrowser control.</p> <p>Is there anyway that I can detect if the control shows a '<em>Page not found</em>' or '<em>Cannot display webpage</em>' error? There doesn't seem to be any error event handlers.</p> http://stackoverflow.com/questions/1631124/accessing-private-member-of-a-parameter-within-a-static-method/1631180#1631180 6 Answer by tpower for Accessing private member of a parameter within a Static method? tpower 2009-10-27T14:25:11Z 2009-10-27T14:25:11Z <p>The <code>private</code> means private for the class and not private for the instance.</p> http://stackoverflow.com/questions/1609840/matching-string-and-then-characters-until-a-specified-string-appears-again/1609900#1609900 1 Answer by tpower for Matching string and then characters until a specified string appears again tpower 2009-10-22T20:56:59Z 2009-10-22T21:13:43Z <p>In C# using regular expression:</p> <pre><code>var regex = new Regex( "&lt;tr&gt;&lt;td colspan=\"25\"&gt;.*?&lt;/tr&gt;" ); var result = regex.Replace( "&lt;tr&gt;&lt;td&gt;2.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=\"25\"&gt;&lt;img src=\"/adad4.gif\" alt=\"\" align=\"middle\"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;3.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=\"25\"&gt;&lt;img src=\"/h5s6c.gif\" alt=\"\" align=\"middle\"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;4.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;5.&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;", "" ); </code></pre> <p>Note the question mark in <code>&lt;tr&gt;&lt;td colspan=\"25\"&gt;.*?&lt;/tr&gt;</code> this removes the shortest match. </p> http://stackoverflow.com/questions/1405855/is-a-system-messagequeue-msmq-message-lost-if-my-function-fails-while-processin 1 Is a System.MessageQueue (MSMQ) message lost if my function fails while processing it? tpower 2009-09-10T15:05:17Z 2009-10-14T05:07:53Z <p>I send a message using the following code: </p> <pre><code>var transaction = new MessageQueueTransaction()) transaction.Begin( ); var message = new Message { Body = myContent, Recoverable = true }; m_oMessageQueue.Send( message , myTransaction ); transaction.Commit( ); </code></pre> <p>And receive it using a <code>BeginRecieve</code> and a <code>ReceiveCompleted</code> event handler.</p> <p>If my event handler fails before calling <code>EndRecieve</code>, should the message remain on the queue and be available to a subsequent calls to receive? The behavior I am seeing is that the message is gone forever. (Or maybe there is a timeout after which point it will become available again?)</p> <p><strong>Update</strong> The code receiving the message looks like this.</p> <pre><code>var messageQueue = new MessageQueue( myPath ); messageQueue.ReceiveCompleted += messageQueue_ReceiveCompleted_ThrowException; messageQueue.BeginReceive(); </code></pre> <p>For test purposes I throw an exception in the messageQueue_ReceiveCompleted_ThrowException event handler.</p> <p>I then repeat the above code with a working event handler but i doesn't get called.</p> http://stackoverflow.com/questions/1198763/what-are-the-different-ways-of-handling-enumerations-in-sql-server 2 What are the different ways of handling 'Enumerations' in SQL server? tpower 2009-07-29T08:26:40Z 2009-10-13T21:24:12Z <p>We currently define a list of constants (mostly these correspond to enumerations we have defined in the business layer) at the top of a stored procedure like so:</p> <pre><code>DECLARE @COLOR_RED INT = 1 DECLARE @COLOR_GREEN INT = 2 DECLARE @COLOR_BLUE INT = 3 </code></pre> <p>But these often get repeated for many stored procedures so there is a lot of duplication.</p> <p>Another technique I use if the procedure needs just one or two constants is to pass them in as parameters to the stored procedure. (using the same convention of upper case for constant values). This way I'm sure the values in the business layer and data layer are consistent. This method is not nice for lots of values.</p> <p>What are my other options?</p> <p>I'm using SQL Server 2008, and C# if it makes any difference.</p> <p><strong>Update</strong> Because I'm using .Net is there any way that user defined (CLR) types can help?</p> http://stackoverflow.com/questions/1198763/what-are-the-different-ways-of-handling-enumerations-in-sql-server/1562983#1562983 0 Answer by tpower for What are the different ways of handling 'Enumerations' in SQL server? tpower 2009-10-13T21:24:12Z 2009-10-13T21:24:12Z <p>How about using a scalar function as a constant. A naming convention would make their usage close to enumerations:</p> <pre><code>CREATE FUNCTION COLOR_RED() RETURNS INT AS BEGIN RETURN 2 END </code></pre> http://stackoverflow.com/questions/573528/was-fxcop-wrong-to-tell-me-to-use-the-net-uri-class 2 Was FxCop wrong to tell me to use the .Net Uri class? tpower 2009-02-21T18:41:37Z 2009-10-10T18:39:44Z <p>When getting a URL for something in an Amazon S3 bucket it can append a signature to the end to confirm that the user has permission to view the object and the URL looks like so:</p> <blockquote> <p>https://mybucket.amazonaws.com/mykey?AWSAccessKeyId=myaccesskey&amp; Expires=1235241261&amp;Signature=<strong>t5vFBWXaN0DvVaWfck9n2%2fmTzOU%3d</strong></p> </blockquote> <p>These URLs were coming back from my S3 library as string objects and I passed them around like that. Recently I ran my code through FxCop and it recommended that I use the <code>Uri</code> class to pass around URLs. I took FxCops advice and changed my URL <code>string</code> properties to <code>Uri</code> properties. Everything seemed to be working fine until much later I noticed that not all the objects were being fetched back successfully.</p> <p>The reason for the problem was that the <code>Uri</code> class <code>ToString()</code> function would return a slightly different version of the URL:</p> <blockquote> <p>https://mybucket.amazonaws.com/mykey?AWSAccessKeyId=myaccesskey&amp; Expires=1235241261&amp;Signature=<strong>t5vFBWXaN0DvVaWfck9n2/mTzOU=</strong></p> </blockquote> <p>My solution was to use the <code>OriginalString</code> property of the <code>Uri</code> class. But something feels wrong about this and I have two questions,</p> <ul> <li>Should I have taken FxCops advice and used the <code>Uri</code> class?</li> <li>Should Amazon realize that URLs may pass through many hands and not depend on them coming back exactly the same?</li> </ul> <p>For using the .Net Uri class I can be sure that my URLs are always valid but it seems to make more subtle mistakes possible.</p> http://stackoverflow.com/questions/1504667/c-ajax-web-methods-what-am-i-doing-wrong/1504720#1504720 2 Answer by tpower for C# AJAX Web methods - What am I doing wrong??? tpower 2009-10-01T15:40:47Z 2009-10-01T16:25:54Z <p>The page method is asynchronous, you must provide an onSuccess handler like so:</p> <pre><code>function OnSuccess(result) { alert(result); } function ClickHandler() { PageMethods.MyMethod(OnSuccess); } </code></pre> <p>You will also need to prevent the <code>SelectedIndexChanging</code> event from doing a Post Back or else the page will not be able to handle the returning result.</p> http://stackoverflow.com/questions/1496639/how-can-i-get-an-msi-vs-setup-project-to-install-a-windows-component 1 How can I get an msi (VS Setup Project) to install a Windows component? tpower 2009-09-30T07:49:07Z 2009-09-30T20:16:53Z <p>I have a Visual Studio Setup project that creates a Message Queue (MSMQ). It fails on computers where the Message Queue component is not installed.</p> <p>Is it possible to get the installer to enable/add this Windows Component?</p> http://stackoverflow.com/questions/1453658/how-do-i-give-a-windows-service-access-to-a-msmq-queue-with-a-setup-project 0 How do I give a Windows Service access to a MSMQ queue, with a setup project? tpower 2009-09-21T09:42:26Z 2009-09-21T11:10:58Z <p>I have a windows service that needs to access a message queue (MSMQ). </p> <p>The queue itself is created using a <code>MessageQueueInstaller</code> component that automatically generates the install code. I then deploy this using a standard setup project.</p> <p>The service is installed in the same way, using the same setup project.</p> <p>When I start the service it stops straight away, and I get the following exception in my code</p> <blockquote> <p>Access to Message Queuing system is denied</p> </blockquote> <p>I've tried both LocalService and NetworkService.</p> <p>Do I need the installer to change the permissions required for the queue or do I need to change the permissions that the service has?</p> <p>How should I modify the setup project to make this change?</p> http://stackoverflow.com/questions/1347316/where-do-i-put-my-c-delegate-declaration-in-a-file-of-its-own 2 Where do I put my C# delegate declaration, in a file of its own? tpower 2009-08-28T14:23:50Z 2009-08-28T14:36:22Z <p>Out of habit I tend to put classes/structs/enumerations in separate files when not nested. </p> <p>For delegates, it seems like overkill to create a seperate file for a one liner:</p> <pre><code>public delegate string MyDelegateThatIsNotNestedInAnyClass ( string par ); </code></pre> <p>I usually add it to the bottom of the most closely related class file. I was just wondering what other people do?</p> http://stackoverflow.com/questions/905944/in-asp-net-can-i-call-a-user-controls-webmethod-using-javascript-and-pagemethods 0 In ASP.Net can I call a user controls WebMethod using Javascript and PageMethods? tpower 2009-05-25T08:54:34Z 2009-08-03T13:11:22Z <p>It's saying PageMethods is undefined. </p> http://stackoverflow.com/questions/577749/is-there-a-way-to-force-a-c-class-to-implement-certain-static-functions 1 Is there a way to force a C# class to implement certain static functions? tpower 2009-02-23T14:11:21Z 2009-07-22T20:30:24Z <p>I am developing a set of classes <strike>that implement a common interface</strike>. A consumer of my library shall expect each of these classes to implement a certain set of static functions. Is there anyway that I can decorate these class so that the compiler will catch the case where one of the functions is not implemented.</p> <p>I know it will eventually be caught when building the consuming code. And I also know how to get around this problem using a kind of factory class.</p> <p>Just curious to know if there is any syntax/attributes out there for requiring static functions on a class.</p> <p><strong>Ed</strong> Removed the word 'interface' to avoid confusion.</p> http://stackoverflow.com/questions/933713/is-there-a-version-of-getjson-that-doesnt-use-a-call-back 3 Is there a version of $getJSON that doesn't use a call back? tpower 2009-06-01T06:04:34Z 2009-07-07T14:29:34Z <p>I am implementing a callback for a 3rdParty javascript library and I need to return the value, but I need to get the value from the server. I need to do something like this:</p> <pre><code>3rdPartyObject.getCustomValue = function { return $.getJSON('myUrl'); } </code></pre> <p>getJson uses XMLHttpRequest which (I believe) has both synchronous and asynchronous behaviors, can I use the synchronouse behavior?</p> http://stackoverflow.com/questions/251795/how-do-i-manage-version-control-when-developing-with-sql-server-express 4 How do I manage version control when developing with SQL Server Express? tpower 2008-10-30T21:10:25Z 2009-07-07T12:50:29Z <p>I am developing a website using SQL Server Express on my development machine. My web hosting company is providing me with SQL Server 2005.</p> <p>At the moment all I have is a database that I develop with and a database that is on the live server. I do not have the original scripts to generate the schema but I can auto generate the create scripts individually or for the entire database.</p> <p>I am now putting my code into source control and I would like to know how I manage my database schema. What do I put into it? Create commands? Alter scripts?</p> <p>The database is very small at the moment and it is not hard to maintain the two databases, but I am concerned that going forward but it will get out of hand. Do you have any tips for getting the live database in sync when deploying new code?</p> <p><strong>EDIT</strong> Any ideas as to what should go into source control? Should the DDL scripts go here?</p> http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel 1 Why is my asp:TreeView selected node reset when in an UpdatePanel? tpower 2008-10-15T15:15:23Z 2009-07-07T09:53:01Z <p>I have an asp.net 2.0 page that contains 2 <code>UpdatePanels</code>.</p> <p>The first panel contains a <code>TreeView</code> control, when I select a node in the three view control it triggers an update of the second <code>UpdatePanel</code> only. This much is behaving correctly.</p> <p>There are two buttons on the page outside of an update panel (previous/next). These buttons trigger an update of both panels. The behaviour of the buttons is to select the adjacent node in the tree. The first time I click on one of these buttons I get the expected behaviour, and adjacent node is selected and the both panels are updated to reflect this change.</p> <p>The problem happens when I click any of these buttons again. The selected node of the treeview seems to remember the previously selected node and the buttons act on this node. So the behaviour of the previous/next buttons is to do nothing or jump back two.</p> <p><strong>Edit</strong> - Sample code that demonstrates my problem</p> <p>The markup</p> <pre><code> &lt;asp:UpdatePanel ID="myTreeViewPanel" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:TreeView runat="server" ID="myTreeView" OnSelectedNodeChanged="myTreeView_SelectedNodeChanged"&gt; &lt;SelectedNodeStyle BackColor="#FF8000" /&gt; &lt;/asp:TreeView&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="myButton" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:UpdatePanel ID="myLabelPanel" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:Label runat="server" ID="myLabel" Text="myLabel"&gt;&lt;/asp:Label&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="myTreeView" EventName="SelectedNodeChanged" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="myButton" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:Button runat="server" ID="myButton" Text="myButton" OnClick="myButton_Click" /&gt; </code></pre> <p>The code behind</p> <pre><code> protected void Page_Load ( object sender, EventArgs e ) { if ( !IsPostBack ) { myTreeView.Nodes.Add( new TreeNode( "Test 1", "Test One" ) ); myTreeView.Nodes.Add( new TreeNode( "Test 2", "Test two" ) ); myTreeView.Nodes.Add( new TreeNode( "Test 3", "Test three" ) ); myTreeView.Nodes.Add( new TreeNode( "Test 4", "Test four" ) ); myTreeView.Nodes.Add( new TreeNode( "Test 5", "Test five" ) ); myTreeView.Nodes.Add( new TreeNode( "Test 6", "Test size" ) ); } } protected void myTreeView_SelectedNodeChanged ( object sender, EventArgs e ) { UpdateLabel( ); } protected void myButton_Click ( object sender, EventArgs e ) { // here we just select the next node in the three int index = myTreeView.Nodes.IndexOf( myTreeView.SelectedNode ); myTreeView.Nodes[ index + 1 ].Select( ); UpdateLabel( ); } private void UpdateLabel ( ) { myLabel.Text = myTreeView.SelectedNode.Value; } </code></pre> <p>It is like the viewstate of the tree is not being saved?</p> http://stackoverflow.com/questions/1058924/php-problem-else-condition-not-executing/1059006#1059006 2 Answer by tpower for PHP Problem: else condition not executing tpower 2009-06-29T15:43:51Z 2009-06-29T15:43:51Z <p>Maybe login is returning <code>"false"</code> as a string? It is evaluating to true because it is not null.</p> http://stackoverflow.com/questions/453356/should-cs-files-be-deployed-when-publishing-an-asp-net-mvc-application 0 Should cs files be deployed when publishing an ASP.Net MVC application? tpower 2009-01-17T14:16:19Z 2009-06-10T19:49:09Z <p>I have a project that compiles and runs fine on my development machine but when I run it on the web server I get the following error.</p> <blockquote> <p>Parser Error Message: The file '/Views/Shared/Main.master.cs' does not exist.</p> </blockquote> <p>The file mentioned does not exist on the server but the file '/Views/Shared/Main.master' does.</p> <p>I use the 'Publish' command to upload the project. Is it missing the cs files?</p> <p>Is there some setting where it does just in-time compiling that need to turn off?</p> http://stackoverflow.com/questions/882733/what-does-the-validating-web-site-step-do-when-building-an-asp-net-website 1 What does the 'Validating Web Site' step do when building an ASP.Net website? tpower 2009-05-19T13:24:50Z 2009-05-19T13:59:14Z <p>It's taking some time to do every time I debug my application. Is it something I can speed-up or skip?</p> http://stackoverflow.com/questions/870470/how-to-register-same-type-twice-with-different-constructors-in-unity/870497#870497 2 Answer by tpower for How to register same type twice with different constructors in Unity? tpower 2009-05-15T19:44:55Z 2009-05-15T20:35:54Z <p>You need to give them names when registering. The parameter to <code>Resolve</code> is the name of the instance you want.</p> <pre><code>var container = new UnityContainer(); container .RegisterInstance&lt;IBar&gt;("BAR", new Bar()) .RegisterInstance&lt;IBar&gt;("FOOBAR", new Bar("foo")); Bar bar1 = (Bar)container.Resolve&lt;IBar&gt;("BAR"); Bar bar2 = (Bar)container.Resolve&lt;IBar&gt;("FOOBAR"); </code></pre> http://stackoverflow.com/questions/296909/is-transactional-behaviour-ever-needed-outside-of-databases 9 Is transactional behaviour ever needed outside of databases? tpower 2008-11-17T21:02:48Z 2009-05-15T11:53:35Z <p>I wouldn't dare do anything complex in a database without transactions. There is nearly always a simple to use in-built command. But when you start working with other persistent data you just don't get this simple to use transaction support. Some example are</p> <ul> <li>file systems</li> <li>web services (none that I've used)</li> </ul> <p>Even in non-persistent data it is often useful to undo a block of work, following an exception. None of the standard data structures you get with a language, support transactions.</p> <p>What I would like to know is, why are databases the special case?</p> <p>Are there any useful links to the topic of transactional behavior out-side of databases?</p> http://stackoverflow.com/questions/857433/temporary-tables-in-stored-procedures/857501#857501 1 Answer by tpower for Temporary tables in stored procedures tpower 2009-05-13T11:46:38Z 2009-05-13T11:46:38Z <p>The database uses the same lock for all #temp tables so if you are using a lot you will get deadlock problems. It is better to use @ table variables for concurrency.</p> http://stackoverflow.com/questions/854476/in-c-how-do-i-add-event-handlers-to-an-object-based-on-names 1 In C#, how do I add event handlers to an object based on names? tpower 2009-05-12T19:36:17Z 2009-05-12T20:13:40Z <p>I'm am trying to add event handlers to 'myObject' based on the <em>name</em> of an event or events. 'myObject' has an event called 'MyEvent' and I have a public event handler called 'MyEventHandler' (which I don't need to get by name but do it below to get a MethodInfo).</p> <p>This is what I have so far:</p> <pre><code>EventInfo eventInfo = myObject.GetType().GetEvent("MyEvent"); MethodInfo handlerInfo = GetType().GetMethod("MyEventHandler"); if (eventInfo != null &amp;&amp; handlerInfo != null) eventInfo.AddEventHandler( this, Delegate.CreateDelegate(eventInfo.EventHandlerType, handlerInfo) ); </code></pre> <p>I get this error:</p> <blockquote> <p>Error binding to target method.</p> </blockquote> <p>Am I on the right track or is there a better way?</p> http://stackoverflow.com/questions/494932/has-anyone-created-any-cool-rules-for-fxcop-stylecop 4 Has anyone created any cool rules for FxCop/StyleCop? tpower 2009-01-30T09:16:05Z 2009-05-12T08:44:10Z <p>I'm just looking for some inspiration. Especially in the area of performance and security, naming conventions are important but not as 'cool' ;)</p> <p>Even if your rule was only applicable to your domain/project but demonstrates how powerful a rule can be, please let me know.</p> <p>I work with C#, but I'm interested in rules for any language.</p> http://stackoverflow.com/questions/847209/in-c-what-happens-when-you-call-an-extension-method-on-a-null-object 6 In C#, what happens when you call an extension method on a null object? tpower 2009-05-11T08:35:27Z 2009-05-11T12:25:15Z <p>Does the method get called with a null value or does it give a null reference exception?</p> <pre><code>MyObject myObject = null; myObject.MyExtensionMethod(); // &lt;-- is this a null reference exception? </code></pre> <p>If this is the case I will never need to check my 'this' parameter for null?</p> http://stackoverflow.com/questions/515214/total-number-of-nodes-in-a-tree-data-structure 1 Total number of nodes in a tree data structure? tpower 2009-02-05T09:55:36Z 2009-05-01T01:44:05Z <p>I have a tree data structure that is L levels deep each node has <strong>about</strong> N nodes. I want to work-out the total number of nodes in the tree. To do this (I think) I need to know what percentage of the nodes that will have children.</p> <p>What is the correct term for this ratio of leaf nodes to non-leaf nodes in N?</p> <p>What is the formula for working out the total number nodes in the three?</p> <p><strong>Update</strong> Someone mention <strong>Branching factor</strong> in one of the answer but it then disappeared. I think this was the term I was looking for. So shouldn't a formula take the branching factor into account?</p> <p><strong>Update</strong> I should have said an estimate about a hypothetical datastructure, not the exact figure!</p> http://stackoverflow.com/questions/228875/how-can-i-sort-a-dataset-before-doing-a-databind 1 How can I sort a DataSet before doing a DataBind? tpower 2008-10-23T07:42:28Z 2009-04-17T13:10:04Z <p>I have data coming from the database in the form of a <code>DataSet</code>. I then set it as the <code>DataSource</code> of a grid control before doing a <code>DataBind()</code>. I want to sort the <code>DataSet</code>/<code>DataTable</code> on one column. The column is to complex to sort in the database but I was hoping I could sort it like I would sort a generic list i.e. using a deligate.</p> <p>Is this possible or do I have to transfer it to a different data structure?</p> <p><strong>Edit</strong> I can't get any of these answer to work for me, I think because I am using <strong>.Net 2.0.</strong></p> http://stackoverflow.com/questions/1755504/c-how-to-programatically-get-version-number-of-a-dll Comment by tpower on C#, how to programatically get version number of a DLL? tpower 2009-11-18T12:03:24Z 2009-11-18T12:03:24Z Can't believe this was asked 6 mins ago, was just about to ask the same! http://stackoverflow.com/questions/1686212/css-two-different-styles-for-the-same-field Comment by tpower on CSS Two different styles for the same field tpower 2009-11-06T08:35:20Z 2009-11-06T08:35:20Z Can you give a sample of what you have tried, because I don't understand the question? http://stackoverflow.com/questions/1683416/how-do-i-run-a-function-before-each-test-when-using-qunit/1683505#1683505 Comment by tpower on How do I run a function before each test when using qUnit? tpower 2009-11-05T21:04:45Z 2009-11-05T21:04:45Z Yes, I saw this but it isn't obvious as to how it should be used or what it should be used for. Now I know, thanks! http://stackoverflow.com/questions/1639787/how-do-apps-that-image-web-pages-work Comment by tpower on How do apps that image web pages work? tpower 2009-10-28T20:12:41Z 2009-10-28T20:12:41Z +1 Good question, I wondering the same http://stackoverflow.com/questions/1637391/where-should-a-viewmodel-sit-in-the-directory-structure-of-an-asp-net-mvc-applica/1637421#1637421 Comment by tpower on Where should a ViewModel sit in the directory structure of an ASP.NET MVC application tpower 2009-10-28T14:00:42Z 2009-10-28T14:00:42Z There can't be that much to test with view models? http://stackoverflow.com/questions/1612798/static-field-and-object-reference-not-set-to-an-instance-of-an-object Comment by tpower on Static field and Object reference not set to an instance of an object tpower 2009-10-23T11:26:36Z 2009-10-23T11:26:36Z Are you sure <code>SqlDataSource1</code> has a value? http://stackoverflow.com/questions/1504667/c-ajax-web-methods-what-am-i-doing-wrong Comment by tpower on C# AJAX Web methods - What am I doing wrong??? tpower 2009-10-01T15:53:29Z 2009-10-01T15:53:29Z If you put a break point in the webmethod is it getting hit? http://stackoverflow.com/questions/1504667/c-ajax-web-methods-what-am-i-doing-wrong/1504720#1504720 Comment by tpower on C# AJAX Web methods - What am I doing wrong??? tpower 2009-10-01T15:50:57Z 2009-10-01T15:50:57Z I updated the answer to include code that is working for me. http://stackoverflow.com/questions/1496639/how-can-i-get-an-msi-vs-setup-project-to-install-a-windows-component Comment by tpower on How can I get an msi (VS Setup Project) to install a Windows component? tpower 2009-09-30T11:21:38Z 2009-09-30T11:21:38Z Windows XP Professional http://stackoverflow.com/questions/1453658/how-do-i-give-a-windows-service-access-to-a-msmq-queue-with-a-setup-project/1453738#1453738 Comment by tpower on How do I give a Windows Service access to a MSMQ queue, with a setup project? tpower 2009-09-21T10:14:38Z 2009-09-21T10:14:38Z This sounds like work that the person deploying to software would need to do. Can I get the setup project to do any of this? http://stackoverflow.com/questions/1405855/is-a-system-messagequeue-msmq-message-lost-if-my-function-fails-while-processin/1405986#1405986 Comment by tpower on Is a System.MessageQueue (MSMQ) message lost if my function fails while processing it? tpower 2009-09-10T15:30:08Z 2009-09-10T15:30:08Z Thanks that should help me. Another related question, if I'm using Peek is there a possibility that the message would be picked up by multiple consumers? http://stackoverflow.com/questions/1405855/is-a-system-messagequeue-msmq-message-lost-if-my-function-fails-while-processin Comment by tpower on Is a System.MessageQueue (MSMQ) message lost if my function fails while processing it? tpower 2009-09-10T15:12:08Z 2009-09-10T15:12:08Z I didn't set it to anything, what is it for? http://stackoverflow.com/questions/1347316/where-do-i-put-my-c-delegate-declaration-in-a-file-of-its-own/1347335#1347335 Comment by tpower on Where do I put my C# delegate declaration, in a file of its own? tpower 2009-08-28T14:52:16Z 2009-08-28T14:52:16Z +1, I've never seen this Func thingy. http://stackoverflow.com/questions/1198763/what-are-the-different-ways-of-handling-enumerations-in-sql-server/1198809#1198809 Comment by tpower on What are the different ways of handling 'Enumerations' in SQL server? tpower 2009-07-29T10:23:12Z 2009-07-29T10:23:12Z What I mean is, if the stored procedure contains some business logic like 'IF @MyVariable = @MY_ENUMERATION_VALUE_2 THEN' where we need to state the value foreign keys don't help here. http://stackoverflow.com/questions/1198763/what-are-the-different-ways-of-handling-enumerations-in-sql-server/1198809#1198809 Comment by tpower on What are the different ways of handling 'Enumerations' in SQL server? tpower 2009-07-29T08:58:12Z 2009-07-29T08:58:12Z A foreign key on the enumerations is good, but how are the values used in a stored procedure?