User Larry.Smithmier - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:49:48Zhttp://stackoverflow.com/feeds/user/4911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1626132/how-do-you-version-service-pack-or-hot-fix/1685833#16858330Answer by Larry.Smithmier for How do you version service pack or hot fix?Larry.Smithmier2009-11-06T06:39:44Z2009-11-06T06:39:44Z<p>The Microsoft way is to use <a href="http://msdn.microsoft.com/en-us/library/51ket42z%28VS.71%29.aspx" rel="nofollow">Major.Minor.BuildNumber.Revision</a>. I would suggest automatically generating and using the BuildNumber.Revision for Service Packs and Hot Fixes. I would manually modify and use the Minor build number for extensions to the API. I would manually modify and use the Major build number when changing things in a non-backward compatible way or introducing significant (30% or more) changes or extensions to the functionality. </p>
<p>Jeff Atwood actually has a blog post from back in the stone ages about <a href="http://www.codinghorror.com/blog/archives/000793.html" rel="nofollow">version numbering</a> and there is a question on here about <a href="http://stackoverflow.com/questions/356543/can-i-automatically-increment-the-file-build-version-when-using-visual-studio">automatically incrementing</a> the version number and I like the <a href="http://stackoverflow.com/questions/356543/can-i-automatically-increment-the-file-build-version-when-using-visual-studio/775796#775796">answer that linked</a> to <a href="http://autobuildversion.codeplex.com/" rel="nofollow">Build Version Increment Add-In Visual Studio</a>. </p>
http://stackoverflow.com/questions/106765/i-want-my-c-windows-service-to-automatically-update-itself5I want my C# Windows Service to automatically update itself.Larry.Smithmier2008-09-20T01:55:28Z2008-11-18T18:11:58Z
<p>Is there a framework that can be used to enable a C# Windows Service to automatically check vor a newer version and upgrade itself? I can certainly write code to accomplish this, but I am looking for a framework that has already been implemented and (most importantly) tested.</p>
http://stackoverflow.com/questions/137901/should-i-publish-a-file-format-or-an-api/137928#1379280Answer by Larry.Smithmier for Should I publish a File Format or an API?Larry.Smithmier2008-09-26T05:37:14Z2008-09-26T05:37:14Z<p><a href="http://en.wikipedia.org/wiki/Keep_it_simple_stupid" rel="nofollow" title="Wikipedia link to a definition of the KISS principle">KISS</a></p>
<p>As you say, the File solution is simpler so it should be the winner. Just plan on having the data storage piece be an easily replaced module (<a href="http://en.wikipedia.org/wiki/Separation_of_concerns" rel="nofollow" title="Wikipedia article on Separation of Concerns">SoC</a>) and only add complexity as required.</p>
http://stackoverflow.com/questions/122739/can-sql-try-catch-blocks-handle-thrown-clr-errors/122950#1229501Answer by Larry.Smithmier for Can SQL Try-Catch blocks handle thrown CLR errors?Larry.Smithmier2008-09-23T18:44:48Z2008-09-23T18:44:48Z<p>Here is a blog post that covers it at a highish level:
<a href="http://blogs.msdn.com/sqlclr/archive/2006/06/29/651649.aspx" rel="nofollow" title="SQL Server 2005: CLR Integration blog post on Exception Handling">Exception handling in SQLCLR</a></p>
<blockquote>
<p>When SQL server execute a user function/procedure/trigger implemented in CLR (i.e., managed code), we will install a managed exception handler around the user code. So if the user code leaked a exception, the server will catch it and throw a TSQL exception wrapping the user exception.</p>
</blockquote>
<p>This seems to imply that it will just work.</p>
http://stackoverflow.com/questions/114928/net-process-start-default-directory/115287#1152872Answer by Larry.Smithmier for .Net Process.Start default directory?Larry.Smithmier2008-09-22T14:54:46Z2008-09-22T14:54:46Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.workingdirectory.aspx" rel="nofollow" title="Link to MSDN documentation on ProcessStartInfo.WorkingDirectory"><em>ProcessStartInfo.WorkingDirectory</em></a> property to set it prior to starting the process. If the property is not set, the default working directory is %SYSTEMROOT%\system32. </p>
<p>You can determine the value of %SYSTEMROOT% by using:</p>
<pre><code>string _systemRoot = Environment.GetEnvironmentVariable("SYSTEMROOT").
</code></pre>
<p>Here is some sample code that opens Notepad.exe with a working directory of %ProgramFiles%:</p>
<pre><code>ProcessStartInfo _processStartInfo = new ProcessStartInfo();
_processStartInfo.WorkingDirectory = @"%ProgramFiles%";
_processStartInfo.FileName = @"Notepad.exe";
_processStartInfo.Arguments = "test.txt";
_processStartInfo.CreateNoWindow = true;
Process myProcess = Process.Start(_processStartInfo);
</code></pre>
<p>There is also an Environment variable that controls the current working directory for your process that you can access directly through the <a href="http://msdn.microsoft.com/en-us/library/system.environment.currentdirectory.aspx" rel="nofollow" title="MSDN documentation on Environment.CurrentDirectory"><em>Environment.CurrentDirectory</em></a> property .</p>
http://stackoverflow.com/questions/112224/click-through-transparency-for-visual-c-window-forms/113566#1135660Answer by Larry.Smithmier for Click through transparency for Visual C# Window Forms?Larry.Smithmier2008-09-22T07:12:22Z2008-09-22T07:12:22Z<p>If what you want is a hole through your window, set the TransparancyKey on your main form to some color (I chose Blue) and set the BackColor of the panel you want to click through to the same color. Build and run.</p>
<pre><code>this.TransparencyKey = System.Drawing.Color.Blue;
this.panel1.BackColor = System.Drawing.Color.Blue;
</code></pre>
<p>When the program runs, you can click through the hole with no problems.</p>
<p>If you want your program to work as an overlay, that is, have an opaque image that you are allowed to click through, I don't have a solution.</p>
http://stackoverflow.com/questions/112695/friendly-url-scheme/112706#1127063Answer by Larry.Smithmier for Friendly url scheme?Larry.Smithmier2008-09-22T00:52:48Z2008-09-22T05:16:07Z<p>Option #1 matches the common ASP.NET MVC examples. Some of the examples at <a href="http://www.asp.net/mvc/default.aspx?wwwaspnetrdirset=1" rel="nofollow" title="Model View Controller information">Model View Controller</a> model have the form {controller}/{action}/{id}. The <a href="http://quickstarts.asp.net/3-5-extensions/mvc/ASPNETRouting.aspx" rel="nofollow" title=".Net 3.5 Routing Quickstart">.NET 3.5 quickstart on routing</a> has a table showing some valid route patterns:</p>
<p><strong>Route definition
-- Example of matching URL</strong></p>
<p>{controller}/{action}/{id}
-- /Products/show/beverages</p>
<p>{table}/Details.aspx
-- /Products/Details.aspx</p>
<p>blog/{action}/{entry}
-- /blog/show/123</p>
<p>{reporttype}/{year}/{month}/{day}
-- /sales/2008/1/5</p>
<p>{locale}/{action}<br />
-- /en-US/show</p>
<p>{language}-{country}/{action}<br />
-- /en-US/show</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/112696#1126966Answer by Larry.Smithmier for What was the biggest lesson you learned in your career as an IT professional?Larry.Smithmier2008-09-22T00:48:39Z2008-09-22T00:48:39Z<p><strong>Never be afraid to ask for more money.</strong></p>
<p>As a contractor, I would know my rate was too low in the market by the number of calls I received in the first week. I kept good records and upped the price $5/hour for all <em>new</em> contacts. I would also negotiate the ability to be paid for at least a 50 hour work week.</p>
http://stackoverflow.com/questions/108141/how-do-i-work-effectively-with-very-messy-legacy-code/108199#1081991Answer by Larry.Smithmier for How do I work effectively with VERY messy legacy codeLarry.Smithmier2008-09-20T13:50:01Z2008-09-20T13:50:01Z<p>One byte at a time? </p>
<p>Seriously, it will take a while, but by fixing every piece you touch (formatting in the very least) and providing <a href="http://en.wikipedia.org/wiki/Software_metric" rel="nofollow" title="Wikipedia article on Software Metrics">software metrics</a> around the before and after. Play up cost reduction in software maintenance and play down the term refactoring since it already has a bad reputation in your organization. Have a care to increase design documentation and point out complexities and areas for 'simplification'. </p>
<p>I have found it possible to win management over to restructuring releases after developing a track record of success making minor architectural changes reduce defects or improve performance. Pick your initial fights with care and think about presenting management with a fait accompli.</p>
http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-server5Reading recommendations for: Microsoft SQL Server Larry.Smithmier2008-09-12T15:19:33Z2008-09-20T12:32:06Z
<p>Post your favorite book about Microsoft SQL Server (single book per comment please) or vote it up if someone has already listed it. Edit: Please include a small review or overview of subject matter and the reason for its applicability.</p>
http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/107509#1075090Answer by Larry.Smithmier for ASP.NET TreeView and Selecting the Selected NodeLarry.Smithmier2008-09-20T07:26:06Z2008-09-20T07:26:06Z<p>Store what is selected and use code in the Page_Load event handler to compare what is selected to what you have stored. Page_Load is called for every post back even if the selected value doesn't change, unlike SelectedNodeChanged.</p>
<p>Example</p>
<p><img src="http://smithmier.com/TreeViewExample.png" alt="alt text" title="Screen snippit of example" /></p>
<p>html</p>
<pre><code><form id="form1" runat="server">
<div>
<asp:TreeView ID="TreeView1" runat="server" OnSelectedNodeChanged="TreeView1_SelectedNodeChanged"
ShowLines="True">
<Nodes>
<asp:TreeNode Text="Root" Value="Root">
<asp:TreeNode Text="RootSub1" Value="RootSub1"></asp:TreeNode>
<asp:TreeNode Text="RootSub2" Value="RootSub2"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Root2" Value="Root2">
<asp:TreeNode Text="Root2Sub1" Value="Root2Sub1">
<asp:TreeNode Text="Root2Sub1Sub1" Value="Root2Sub1Sub1"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Root2Sub2" Value="Root2Sub2"></asp:TreeNode>
</asp:TreeNode>
</Nodes>
</asp:TreeView>
<asp:Label ID="Label1" runat="server" Text="Selected"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label></div>
</form>
</code></pre>
<p>C#</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if(TreeView1.SelectedNode!=null && this.TextBox1.Text == TreeView1.SelectedNode.Value.ToString())
{
Label2.Text = (int.Parse(Label2.Text) + 1).ToString();
}
else
{
Label2.Text = "0";
}
}
protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e)
{
this.TextBox1.Text = TreeView1.SelectedNode.Value.ToString();
}
</code></pre>
http://stackoverflow.com/questions/73072/report-templates-for-team-foundation-server-2008/73304#733040Answer by Larry.Smithmier for Report templates for Team Foundation Server 2008Larry.Smithmier2008-09-16T15:01:28Z2008-09-16T15:01:28Z<p>If you are using SCRUM, this has Sprint reports and Product Burndown reports:</p>
<p><a href="http://www.scrumforteamsystem.com/en/default.aspx" rel="nofollow">http://www.scrumforteamsystem.com/en/default.aspx</a></p>
http://stackoverflow.com/questions/52460/how-do-i-find-and-decouple-entities-from-a-certificate-when-upgrading-ms-sqlserve/66896#668961Answer by Larry.Smithmier for How do I find and decouple entities from a certificate when upgrading MS-SQLServer editions?Larry.Smithmier2008-09-15T20:58:30Z2008-09-15T20:58:30Z<p>The Microsoft forum has the following code snipit to delete the certificates:</p>
<pre><code>use msdb
BEGIN TRANSACTION
declare @sp sysname
declare @exec_str nvarchar(1024)
declare ms_crs_sps cursor global for select object_name(crypts.major_id) from sys.crypt_properties crypts, sys.certificates certs where crypts.thumbprint = certs.thumbprint and crypts.class = 1 and certs.name = '##MS_AgentSigningCertificate##'
open ms_crs_sps
fetch next from ms_crs_sps into @sp
while @@fetch_status = 0
begin
if exists(select * from sys.objects where name = @sp) begin print 'Dropping signature from: ' + @sp set @exec_str = N'drop signature from ' + quotename(@sp) + N' by certificate [##MS_AgentSigningCertificate##]'
Execute(@exec_str)
if (@@error <> 0)
begin
declare @err_str nvarchar(1024)
set @err_str = 'Cannot drop signature from ' + quotename(@sp) + '. Terminating.'
close ms_crs_sps
deallocate ms_crs_sps
ROLLBACK TRANSACTION
RAISERROR(@err_str, 20, 127) WITH LOG
return
end
end
fetch next from ms_crs_sps into @sp
end
close ms_crs_sps
deallocate ms_crs_sps
COMMIT TRANSACTION
go
</code></pre>
<p><a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3876484&SiteID=17" rel="nofollow">http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3876484&SiteID=17</a></p>
<p>I have not tried the script, so please backup your data and system before attempting and update here with results.</p>
http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-server/59273#592730Answer by Larry.Smithmier for Reading recommendations for: Microsoft SQL Server Larry.Smithmier2008-09-12T15:23:07Z2008-09-12T15:23:07Z<p><strong><em>The Guru’s Guide to SQL Server Architecture and Internals</em></strong> by Ken Henderson</p>
<p>This does for Microsoft SQL Server what the Windows Internals book does for Windows. This book explains how the envrionment that MSSQL is running in changes how you optimize the database environment to meet your performance goals. It is sort of like saying that you need to know if you are going to be sailing on fresh or salt water before you design the boat that you will be sailing on. For 99.5% of the people dealing with databases, the information in this book will be severe overkill. But, if you are the type of person who needs to know why something behaves the way it does, this is the book for you. </p>
http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-server/59272#592720Answer by Larry.Smithmier for Reading recommendations for: Microsoft SQL Server Larry.Smithmier2008-09-12T15:21:56Z2008-09-12T15:21:56Z<p><strong><em>Inside Microsoft SQL Server 2005: T-SQL Querying</em></strong>
by Itzik Ben-Gan</p>
<p>This book takes you through Query Tuning, out the other side to exactly why this way is faster than that. He also helps you build up a set of tools and techniques to get to information at a lower, more accurate level than what is available using the GUI Profiler. This is not a book to teach you how to write better SQL. This is a book that helps you understand why some SQL is better than others. If your current SQL is like bass fishing with a plastic worm, a rod, and a reel; this book will help you move your SQL game up to the Bass-Masters tournament level, with the Ranger boat and 15 different color worms in 7 different shapes with 5 different hooking patterns.</p>
http://stackoverflow.com/questions/5831/binary-patch-generation-in-c/47836#478361Answer by Larry.Smithmier for Binary patch-generation in C#Larry.Smithmier2008-09-06T21:10:09Z2008-09-06T21:10:09Z<p>Have you seen <a href="http://www.yoda.arachsys.com/csharp/miscutil/usage/vcdiff.html" rel="nofollow">VCDiff</a>? It is part of a Misc library that appears to be fairly active (last release r259, April 23rd 2008). I haven't used it, but thought it was worth mentioning.</p>
http://stackoverflow.com/questions/47436/what-is-the-shortcut-key-for-run-to-cursor/47541#475412Answer by Larry.Smithmier for What is the shortcut key for Run to cursorLarry.Smithmier2008-09-06T15:11:42Z2008-09-06T15:11:42Z<p>The default is CTRL+F10 but it can be overridden. The place to find what your current shortcuts are and change them is </p>
<blockquote>
<p><strong>T</strong>ools<br />
<strong>C</strong>ustomize...<br />
<strong>K</strong>eyboard...<br />
Show <strong>c</strong>ommands containing:<br />
Debug.RunToCursor</p>
</blockquote>
<p>or</p>
<blockquote>
<p><strong>T</strong>ools<br />
<strong>O</strong>ptions<br />
<strong>E</strong>nvironment<br />
<strong>K</strong>eyboard<br />
Show <strong>c</strong>ommands containing:<br />
Debug.RunToCursor</p>
</blockquote>
http://stackoverflow.com/questions/402265/beginner-programmer-which-direction/402278#402278Comment by Larry.Smithmier on Beginner Programmer - Which directionLarry.Smithmier2008-12-31T04:11:30Z2008-12-31T04:11:30ZA great NTDebugging link would be <a href="http://blogs.msdn.com/ntdebugging/" rel="nofollow">blogs.msdn.com/ntdebugging</a>http://stackoverflow.com/questions/305053/programmatically-reject-a-call-on-the-blackberryComment by Larry.Smithmier on Programmatically reject a call on the BlackBerryLarry.Smithmier2008-11-22T17:21:26Z2008-11-22T17:21:26ZI would love to have an easy block for 'my second and last call' or 'free minutes to India' since I know the numbers they use (area codes anyway) but still answer them 1 in 4 times.http://stackoverflow.com/questions/127776/where-can-you-find-the-c-language-specifications/127789#127789Comment by Larry.Smithmier on Where can you find the C# Language Specifications?Larry.Smithmier2008-09-24T15:29:09Z2008-09-24T15:29:09ZThanks for the tip! I didn't know that was there.http://stackoverflow.com/questions/123330/why-should-i-have-two-monitors/123345#123345Comment by Larry.Smithmier on Why should I have two monitors?Larry.Smithmier2008-09-23T19:54:28Z2008-09-23T19:54:28ZThanks for the link to Synergy! Great project and worth a look.http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/113281#113281Comment by Larry.Smithmier on What was the biggest lesson you learned in your career as an IT professional?Larry.Smithmier2008-09-22T13:46:56Z2008-09-22T13:46:56ZThis is why I love rotated wide screen monitors. :-) Your point is still valid.http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/113091#113091Comment by Larry.Smithmier on What was the biggest lesson you learned in your career as an IT professional?Larry.Smithmier2008-09-22T13:45:52Z2008-09-22T13:45:52Zre: overtime. I worked as a contractor for many years and believe that you should always, always, always be paid for work that you do. If your job doesn't pay overtime, take it out in comp time. If your company doesn't have formal comp time, talk to your manager, they can still work it out. http://stackoverflow.com/questions/112695/friendly-url-scheme/112706#112706Comment by Larry.Smithmier on Friendly url scheme?Larry.Smithmier2008-09-22T05:16:29Z2008-09-22T05:16:29ZUpdated to include other options. Thanks for the catch.http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-serverComment by Larry.Smithmier on Reading recommendations for: Microsoft SQL Server Larry.Smithmier2008-09-20T12:35:08Z2008-09-20T12:35:08ZCommunity mode check box not available during edit and several edits haven't changed status.http://stackoverflow.com/questions/106765/i-want-my-c-windows-service-to-automatically-update-itself/106774#106774Comment by Larry.Smithmier on I want my C# Windows Service to automatically update itself.Larry.Smithmier2008-09-20T05:44:25Z2008-09-20T05:44:25ZSorry for the confusion. I would like a way for my service to poll for updates and self install them when found. I have many services on many production (access controlled) servers and am very tired of the hastle and risk of manual interventions.http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-serverComment by Larry.Smithmier on Reading recommendations for: Microsoft SQL Server Larry.Smithmier2008-09-12T21:18:29Z2008-09-12T21:18:29ZNo, just wanted to get a question on the board and had work to do so I went shallow. I knew my two answers (books) and already had a summary written. I will edit it 3-4 times and get it into community mode.