DancesWithBamboo

1,716
reputation
140 views

Registered User

name DancesWithBamboo
member for 1 year
seen 15 hours ago
website
location Tacoma, WA
age
Dec
4
answered How to motivate stake holders to test the sprint delivered software
Dec
1
answered Sharing a db connection between threads in a C# application?
Nov
24
comment SQL with table name as parameter and query longer than 4000 characters
+1 nvarchar(MAX) is up to 2 Gig or 1073741823 characters.
Nov
20
comment restricting the size of wpf dockpanel region
Set the dockpanel's LastChildFill property to true. Dock the buttons to the right and don't set the docking property for the itemscontrol.
Nov
20
answered restricting the size of wpf dockpanel region
Nov
18
answered Scrum and Project estimated time
Nov
17
comment Use instance or form name when addressing public variables between forms?
I would also argue that form2.show() and form2.k look disturbing similar to static methods, which of course they are not.
Nov
17
comment Use instance or form name when addressing public variables between forms?
A form variable is required by the framework and VB is just making one named the same as your form class behind the scenes for you. All you are doing is making that action explicit in the code. It is most popular because it had been around the VB community for over 10 years! Tough to change old habits. If nothing else I would use the explicit version for uniformity and readability. Where else can you get away with using a class name as an instance variable in .net
Nov
17
comment C# - A class-design problem - Loading property List.
+1 I had the same thing written, refreshed, and presto; you had already written it.
Nov
17
answered Use instance or form name when addressing public variables between forms?
Nov
13
answered How to work unestimatable tasks into a scrum sprint?
Nov
12
comment Calculate statistical mode in SQL Server 2005
Perfect! Just what I needed. Just threw on an extra where clause for my needs and I'm good to go. I was trying to do it in one query without a table (didn't go well). Thanks.
Nov
12
asked Calculate statistical mode in SQL Server 2005
Nov
9
answered Can I use Agile in a Non-Development project?
Nov
9
answered Unit for estimating hours in Scrum tool
Nov
5
comment Which CS curriculum to take?
+1 for "taught them how to think"
Oct
31
answered User story size/scope
Oct
30
answered Scrum Compliance
Oct
29
comment Does .Net have any built in constants for common numbers like million, billion etc?
+1 All this time I have been wasting zeros.
Oct
29
comment Which is better coding style?
+1 Stylistically I like this because it moves logging to the catch block. But as you said, its usage depends on circumstance; wouldn't want to use it for form validation where the conditions are routinely false.
Oct
29
answered What is the use of stateConnectionString in sessionState in Web.config?
Oct
29
answered Implementing two interfaces or not?
Oct
29
revised Does anyone have any performance metrics of ADO.NET connection pooling vs. the create-and-destroy method?
Included comment about being able to turn off pooling.
Oct
29
comment Does anyone have any performance metrics of ADO.NET connection pooling vs. the create-and-destroy method?
Good point. Is there a case where you would ever want to do that?
Oct
29
accepted Does anyone have any performance metrics of ADO.NET connection pooling vs. the create-and-destroy method?
Oct
29
answered Does anyone have any performance metrics of ADO.NET connection pooling vs. the create-and-destroy method?
Oct
29
answered Can Scrum and Project Management live together?
Oct
22
answered Time Tracking in Scrum
Oct
21
answered Best ways to fit bug fixing into a Scrum process?
Oct
19
comment Retrieving the Windows username from a logged-in machine through an intranet application.
What is the db connection string you are using?
Oct
8
accepted Agile Scenario, which is correct?
Oct
7
answered How to prevent multiple web requests from processing the same records?
Oct
7
answered I’m a developer. How do I become a technical manager?
Oct
7
answered ASP.NET Saving Customer’s Shipping/Billing Addresses
Oct
6
answered Ways to design heavy data-centric web application in Silverlight
Oct
3
comment SQL Server 2005 edition for Web applications
From MS SQL Server Site: "SQL Server 2008 Web may be used only to support public and Internet accessible * Web pages * Web sites * Web applications * Web services It may not be used to support line of business applications (e.g., Customer Relationship Management, Enterprise Resource Management and other similar applications)"
Oct
2
comment SQL Server 2005 edition for Web applications
Depends on the usage of the Application here. Web Edition can only be used for public facing sites; not internal apps.
Oct
2
answered Who should fix bugs in a Scrum/Agile environment?
Oct
2
comment Who should fix bugs in a Scrum/Agile environment?
+1 for three great points, too bad I can only mark ya up by 1. I especially like the use of the word "fighting". Too many product owners don't understand the full extent of their role.
Oct
2
answered How do parameters and their usage in methods effect the static/instance design decision?
Oct
1
comment wpf custom control xaml null error
A custom control would not have a XAML file. It would have a theme stored as a ResourceDictionary in generic.xaml file. Do you really want a custom control (you need consumer defined theming)? Or would a user control be sufficient for what you are doing.
Oct
1
comment wpf custom control xaml null error
Custom controls in WPF are not supposed to enforce a particular look. They can have a default template but the user gets to define the UI. You are simply providing functionality. Think of how the Button class works in WPF. Thus a custom control does not have an InitializeComponent because it does not need to find the partial class and run the parser over a XAML file to build a UI. User controls on the other hand are intended to be reusable UI elements including functionality. At least this is how I understand it so far. I think of it like the difference between asp.net custom vs composite.
Oct
1
answered wpf custom control xaml null error
Sep
25
accepted Good tutorials for routing a document in Sharepoint
Sep
23
answered Javascript : Change the function of the browser’s back button
Sep
3
accepted Sql Server - DB Diagram with additional requirements
Sep
3
answered Non-tested product in the end of Sprint in Scrum methodology.
Sep
2
answered Good tutorials for routing a document in Sharepoint
Aug
31
answered Sql Server - DB Diagram with additional requirements
Aug
20
answered Team Foundation Server - How to team build a Team Project but not pull all branches