User Scott A. Lawrence - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T03:28:58Zhttp://stackoverflow.com/feeds/user/3475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799834/is-it-possible-to-restore-a-sql-server-database-from-a-virtual-drive0Is it possible to restore a SQL Server database from a virtual drive?Scott A. Lawrence2009-11-25T20:44:43Z2009-11-25T21:36:31Z
<p>In SQL Server Management Studio, if I attempt to restore a database from a backup file with a command like:</p>
<pre><code>RESTORE DATABASE somedatabase FROM DISK = '<virtual disk>:\<path>\<backup file>';
</code></pre>
<p>I get a "file not found" error. I'm creating with the "subst" command. But if I replace with a physical disk and with the complete path, the command works just fine.</p>
<p>Is there any way at all to restore a database from a path that starts with a virtual disk? If so, what is it? If not, how might I work around this issue?</p>
<p>As an aside, the reason for using virtual disks in the first place was to insulate the script from differences across development environments (I'm trying to develop an MSBuild script to automate the creation of local databases for testing.)</p>
http://stackoverflow.com/questions/1799834/is-it-possible-to-restore-a-sql-server-database-from-a-virtual-drive/1800128#18001281Answer by Scott A. Lawrence for Is it possible to restore a SQL Server database from a virtual drive?Scott A. Lawrence2009-11-25T21:36:31Z2009-11-25T21:36:31Z<p>As it turns out, this capability isn't supported in SQL Server (unfortunately).</p>
<p>I got this answer from a Microsoft consultant we're working with just a little while ago.</p>
http://stackoverflow.com/questions/1663167/visual-studio-test-runner-is-seeking-assembly-configuration-files-in-visual-studi0Visual Studio test runner is seeking assembly configuration files in Visual Studio common directory. How do I fix this?Scott A. Lawrence2009-11-02T19:26:09Z2009-11-02T20:11:31Z
<p>I have an existing Visual Studio solution with a handful of unit tests that throw one of two exceptions when executed using the Visual Studio test runner:</p>
<ul>
<li>System.IO.FileNotFoundException</li>
<li>System.TypeInitializationException (where the inner exception is System.IO.FileNotFoundException)</li>
</ul>
<p>In both cases, the error message includes content like the following:</p>
<blockquote>
<p>looked for it at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE[assemblyname].config</p>
</blockquote>
<p>The config files aren't in there of course. They're located in the ...\bin\Debug\TestResults[user]<em>[workspace]</em>[timestamp]\Out folder. Is it possible to configure where the Visual Studio test runner looks for configuration files of supporting assemblies? If so, what do I need to change?</p>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references2What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?Scott A. Lawrence2008-09-04T21:05:31Z2009-11-02T19:09:49Z
<p>Ideally, this script could be run multiple times, as new tables were added to the database. SQL Server Management Studio generates scripts for individual database objects, but I'm looking for more of a "fire-and-forget" script.</p>
http://stackoverflow.com/questions/1594357/wpf-how-to-use-2-converters-in-1-binding/1594921#15949210Answer by Scott A. Lawrence for WPF: how to use 2 converters in 1 binding?Scott A. Lawrence2009-10-20T14:16:21Z2009-10-20T14:16:21Z<p>I think you may want to use a Multiconverter here instead of two separate converters. You should be able to reuse the logic from your existing converters. Check out <a href="http://social.msdn.microsoft.com/forums/en-US/wpf/thread/c3ada975-9453-4f14-8cab-9372102b34fa" rel="nofollow">this discussion</a> for a start.</p>
http://stackoverflow.com/questions/1574970/financing-and-starting-a-software-development-business/1575044#15750441Answer by Scott A. Lawrence for Financing and starting a software development business Scott A. Lawrence2009-10-15T21:01:46Z2009-10-15T21:01:46Z<p>If you aren't already a reader of <a href="http://www.softwarebyrob.com/" rel="nofollow">Software by Rob</a>, he's definitely worth checking out. He's created <a href="http://www.micropreneur.com/" rel="nofollow">this site</a> on software entrepreneurship also.</p>
http://stackoverflow.com/questions/1568174/what-could-be-the-next-evolution-after-oop/1568217#15682171Answer by Scott A. Lawrence for What could be the next evolution after OOP?Scott A. Lawrence2009-10-14T18:45:07Z2009-10-14T18:45:07Z<p>Aspect Oriented Programming (AOP) is one relatively new paradigm that comes to mind which is already seeing significant use in the field through various inversion of control (IoC) containers and the dependency injection pattern. As Chris Ballance said, it builds on the existing OOP way of doing things.</p>
http://stackoverflow.com/questions/1533561/svcutil-exe-msbuild-task/1533642#15336420Answer by Scott A. Lawrence for Svcutil.exe MSBuild TaskScott A. Lawrence2009-10-07T19:22:35Z2009-10-07T19:22:35Z<p>I'm not aware of an MSBuild task for svcutil.exe. </p>
<p>Such a task may exist in <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> or the <a href="http://www.codeplex.com/MSBuildExtensionPack" rel="nofollow">MSBuild Extension Pack</a> though. </p>
http://stackoverflow.com/questions/1532086/when-developing-visual-studio-add-ins-what-testing-options-are-there-beyond-manu2When developing Visual Studio add-ins, what testing options are there beyond manual testing?Scott A. Lawrence2009-10-07T14:42:48Z2009-10-07T15:49:47Z
<p>I'm in the process of developing a Visual Studio add-in for a project at work, and have found debugging and testing it to be pretty tedious. So far, it appears to require the launching of a second instance of Visual Studio and manual execution of the add-in code. What techniques and/or tools are available for automating this sort of add-in testing?</p>
http://stackoverflow.com/questions/1532219/what-do-you-do-to-construct-a-softwares-user-interface/1532317#15323173Answer by Scott A. Lawrence for What do you do to construct a software's user interface ?Scott A. Lawrence2009-10-07T15:21:47Z2009-10-07T15:21:47Z<p>I'd start with paper sketches. Before reading <a href="http://rads.stackoverflow.com/amzn/click/0123740371" rel="nofollow">Sketching User Experiences</a> by Bill Buxton, I wouldn't have suggested sketching first. But once we actually did it for a project and made changes to the sketches based on user reactions, the results were a lot better than an approach that didn't use sketching.</p>
<p>The value of the sketches isn't merely that they're easier to change than actual code, it's that they give users something tangible to say yes (or no) to and bring a lot of useful questions to the surface before code is written. Sketching or story-boarding an entire interface makes you think through how you want the application to really work before you've gone down a path with actual code that will be hard to change.</p>
http://stackoverflow.com/questions/1334934/arguments-against-zip-files-as-source-control/1335535#13355351Answer by Scott A. Lawrence for Arguments against zip files as source controlScott A. Lawrence2009-08-26T15:23:53Z2009-10-02T13:14:21Z<p>I haven't seen an answer include Eric Sink's <a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">Source Control HOWTO</a>, but it's a valuable reference. I haven't seen any formal white papers on version control, but I'm not sure the argument about "validity" is your strongest one. The problems you describe in your question indicate some pretty serious drawbacks with the current approach. If "the powers that be" in your environment aren't convinced by that, change the argument entirely.</p>
<p>If you make it a question of quality control, and point to continuous integration as a practice that encourages it, then the zip file approach to version control isn't a "not fully valid form of version control", but an obstacle to implementing continuous integration as a practice.</p>
<p>Your question doesn't indicate whether or not the end product "under control" is tested in any automated fashion (in addition to being reviewed). If the process you describe would prevent that from taking place as well, certainly add that to your argument too.</p>
http://stackoverflow.com/questions/1457720/which-is-the-best-first-job-an-it-entrant-can-have/1477286#14772860Answer by Scott A. Lawrence for Which is the BEST first job an IT entrant can have?Scott A. Lawrence2009-09-25T13:27:16Z2009-09-25T13:27:16Z<p>If you were still in school, I'd say the best first job could be an internship. You get a chance to test-drive the company, see how they treat you, see if you like the work, the people, and the organizational culture. If you don't like what you see, you simply move on after the internship ends. If you have a positive internship experience and the company likes your work, the job search becomes much easier for both you and them.</p>
<p>Since it sounds like you're done with school though, consider looking at what areas outside of IT you're passionate about. So many industries need information technology that you may be able to build your experience and skills working for an organization that does something you believe in. For me, it was writing software for the Washington Post (print, not online) as an intern. For you, it could be something far different.</p>
<p>Previous answers have advocated for small companies as a start. But given some of the things you want (good job growth and nice perks specifically), a small company may not be right for you. Larger companies are more able to offer perks, and job growth (in the form of promotions). Larger companies tend to have more financial resources as well, so they can send you out for training, offer tuition reimbursement, employee stock purchase plans, stock options, etc.</p>
<p>If you're familiar with Stephen Covey's 7 Habits of Highly Effective People, you know about habit 2: begin with the end in mind. When applied to your question about the "best" first job, I think it changes the focus to what you want your <strong>career</strong> to look like. If your ultimate goal is to have your own company, the best first job, second job, etc will be one where you gain the kind of experience that will help you succeed as a business owner. If enterprise architect is the goal you want to reach, jobs that provide the experience you'll need to fill that role are the ones to pursue.</p>
<p>Phil Wheeler's comments are spot-on when it comes to marketability and versatility. Too narrow a focus, particularly in a technology or in anything that can be "commoditized" means that what you do can be more easily outsourced to a low bidder. It's important to be your best at the technical aspects of a job, but don't let that be all you bring to the table.</p>
<p>Regardless of what you ultimately choose as your first IT job, I highly recommend a book by Chad Fowler titled <a href="http://www.pragprog.com/titles/cfcar2/the-passionate-programmer" rel="nofollow">The Passionate Programmer</a>. It has tons of practical advice that I find very useful, even 13 years into my career.</p>
http://stackoverflow.com/questions/1403891/pros-and-cons-of-building-apps-with-proprietary-database-systems/1468560#14685600Answer by Scott A. Lawrence for Pros and cons of building apps with proprietary database systemsScott A. Lawrence2009-09-23T21:18:39Z2009-09-23T21:18:39Z<p>Consider the following questions:</p>
<ul>
<li>How easy (or difficult) is it to make changes in maintenance? Applications are likely to spend far more time in maintenance than they do in development, so if changes are hard, long-term pain is guaranteed.</li>
<li>What is the quality of support? A system that is well-documented, proprietary or otherwise, is going to be easier to work with.</li>
<li>How large (or small) is the user community? Systems with larger user communities mean more people to ask for assistance if and when things go wrong.</li>
<li>How robust are the import/export capabilities of this proprietary database system?</li>
</ul>
<p>I found the last point particularly useful at my first full-time job. Our client was using CA-Ingres, and no one at the company knew it well enough to write queries to validate the data. So I came up with the idea of exporting the data from Ingres and importing it into MS SQL Server (which I knew from a brief stint at Sybase Professional Services) so we could write our validation queries there. If it had been really hard to export data from Ingres, my idea wouldn't have been an option at all.</p>
http://stackoverflow.com/questions/197482/when-to-use-a-new-exception-type/197526#1975260Answer by Scott A. Lawrence for When to use a new exception typeScott A. Lawrence2008-10-13T13:04:29Z2009-09-23T18:21:43Z<p>As previous posters have stated, you shouldn't be throwing System.Exception. In fact, if you ran FxCop on your code, it would flag that as a rule violation.</p>
<p>I recommend having a look at Chapter 18 of Applied .NET Framework Programming, or chapter 19 of the more recent CLR via C# (2nd edition) for detailed guidance. Richter does an excellent job of correcting the misconceptions that a lot of developers hold about exceptions.</p>
<p>Both books contain a list of the exceptions defined by the Framework Class Library. Look at the list and figure out the most specific exceptions possible that your code can throw. If you can recover from an exception, do so in that catch block. If you have need of multiple catch blocks, organize them from the most specific to the least specific. Create a custom exception if you can't find one in the existing list that suits the situation. </p>
http://stackoverflow.com/questions/219915/what-functionality-should-always-be-third-party7What functionality should always be third-party?Scott A. Lawrence2008-10-20T21:07:23Z2009-09-03T03:14:35Z
<p>What prompts my question is <a href="http://www.codinghorror.com/blog/archives/001172.html" rel="nofollow">this post from Jeff Atwood</a>, and <a href="http://www.25hoursaday.com/weblog/2008/08/31/DevelopersUsingLibrariesIsNotASignOfWeakness.aspx" rel="nofollow">this post</a> from Dare Obasanjo. It seems to me that there might be at least a few areas where third-party functionality is a better idea than custom code.</p>
<p>For example, should logging always be third-party? How about encryption? Or search?</p>
<p>I'm looking forward to everyone's feedback on this.</p>
<p>Edit: This question assumes that logging, encryption, and/or search isn't your core business.</p>
http://stackoverflow.com/questions/780614/dbunit-net-alternatives/1336233#13362331Answer by Scott A. Lawrence for DbUnit.NET AlternativesScott A. Lawrence2009-08-26T17:08:35Z2009-08-26T17:08:35Z<p>We're using <a href="http://code.google.com/p/ndbunit/" rel="nofollow">NDbUnit</a> for one of our projects. It's a far more active project than DbUnit.NET appears to be.</p>
http://stackoverflow.com/questions/1324063/generating-random-strings-with-t-sql2Generating random strings with T-SQLScott A. Lawrence2009-08-24T18:52:03Z2009-08-24T19:54:29Z
<p>If you wanted to generate a pseudorandom alphanumeric string using T-SQL, how would you do it? How would you exclude characters like dollar signs, dashes, and slashes from it?</p>
http://stackoverflow.com/questions/1324063/generating-random-strings-with-t-sql/1324078#13240780Answer by Scott A. Lawrence for Generating random strings with T-SQLScott A. Lawrence2009-08-24T18:55:08Z2009-08-24T18:55:08Z<p>I came across <a href="http://blog.sqlauthority.com/2007/04/29/sql-server-random-number-generator-script-sql-query/" rel="nofollow">this blog post</a> first, then came up with the following stored procedure for this that I'm using on a current project (sorry for the weird formatting):</p>
<pre><code>CREATE PROCEDURE [dbo].[SpGenerateRandomString]
@sLength tinyint = 10,
@randomString varchar(50) OUTPUT
AS
BEGIN
SET NOCOUNT ON
DECLARE @counter tinyint
DECLARE @nextChar char(1)
SET @counter = 1
SET @randomString = ”
WHILE @counter <= @sLength
BEGIN
SELECT @nextChar = CHAR(48 + CONVERT(INT, (122-48+1)*RAND()))
IF ASCII(@nextChar) not in (58,59,60,61,62,63,64,91,92,93,94,95,96)
BEGIN
SELECT @randomString = @randomString + @nextChar
SET @counter = @counter + 1
END
END
END
</code></pre>
http://stackoverflow.com/questions/1234343/why-are-empty-catch-blocks-a-bad-idea/1234888#12348880Answer by Scott A. Lawrence for Why are empty catch blocks a bad idea?Scott A. Lawrence2009-08-05T18:20:34Z2009-08-05T18:20:34Z<p>With regard to exception handling, Jeffrey Richter wrote the following (Applied .NET Framework Programming, chapter 18, p. 402):</p>
<blockquote>
<p>“Another common misconception is that an ‘exception’ identifies an ‘error’.”
“An exception is the violation of a programmatic interface’s implicit assumptions.”</p>
</blockquote>
<p>You may find <a href="http://scottlaw.knot.org/blog/?p=294" rel="nofollow">one of my old blog posts</a> on the topic helpful also.</p>
<p>The one example I can think of where empty catch blocks are used by design is in log4net. Presumably, they didn't want an exception in their logging library to throw an exception into any apps that were using them for logging purposes. To me, that reasoning seems appropriate to their case. For applications of your own, it's probably best to avoid that technique unless a significant amount of thought is put into the decision. If memory serves, empty catch blocks are flagged by static analysis tools like ReSharper and FxCop as things to correct.</p>
http://stackoverflow.com/questions/1189821/basic-svn-usage/1189940#11899401Answer by Scott A. Lawrence for Basic SVN UsageScott A. Lawrence2009-07-27T18:52:04Z2009-07-27T18:52:04Z<p>I'll second Avihu Turzion's recommendation of Pragmatic Version Control using Subversion. Also check out <a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">Eric Sink's source control how-to</a> if you haven't already.</p>
<ol>
<li><p>Since you're the only one committing, building and packaging the binaries locally is definitely an option. If the building/packaging steps are fairly standard, automate them by setting up a continuous integration system. TeamCity Professional is a free product you can start with that is easy to configure and get working with Subversion.</p></li>
<li><p>As mentioned by others, the Export option is the way to get a version of your solution without the .svn files.</p></li>
<li><p>Subversion handles file creation, merging, and deleting fairly smoothly. With the plug-ins you mention, particularly if you're using something like AnhkSVN and TortoiseSVN, it's possible for what the plug-in reports as committed (versus what the Subversion repository actually has committed) to get out of sync. If you delete files or move files, considering doing it entirely at the command-line (or in TortoiseSVN).</p></li>
<li><p>I learned to use source control on my own once I'd been working a few years. While I started with Visual SourceSafe (which was terrible), I eventually moved on to companies that used Subversion and/or TFS for version control.</p></li>
</ol>
<p>You're far more likely to lose code if you don't use source control than if you do. You're definitely starting things off on the right foot.</p>
http://stackoverflow.com/questions/666597/tfs-vs2008-how-to-deal-with-external-assemblies/1153915#11539151Answer by Scott A. Lawrence for TFS, VS2008: How to deal with external assembliesScott A. Lawrence2009-07-20T14:24:39Z2009-07-20T14:24:39Z<p>I had a question similar to yours, and came across the following link:
<a href="http://tfsguide.codeplex.com/Wiki/View.aspx?title=Chapter%206%20-%20Managing%20Source%20Control%20Dependencies%20in%20Visual%20Studio%20Team%20System" rel="nofollow">Managing Source Control Dependencies in Visual Studio Team System</a></p>
<p>It goes into significant depth on four different dependency management scenarios. The article advocates what appears to be a similar branching solution to the one Ian Nelson mentioned. </p>
http://stackoverflow.com/questions/995999/stuck-trying-to-migrate-two-tables-from-one-db-to-another-db/996081#9960810Answer by Scott A. Lawrence for Stuck trying to migrate two tables from one DB to another DBScott A. Lawrence2009-06-15T13:21:32Z2009-06-15T13:21:32Z<p>I'm not sure from your question what database software you're using, but if temporary tables are an option, create a temporary table containing the original primary key of table1 and the new primary key of table1. Then create another temporary table with a copy of table2, update the copy using the "old key, new key" table you created earlier, then use "insert into select from" (or whatever the appropriate command is for your database) to copy the revised temporary table into its permanent location.</p>
http://stackoverflow.com/questions/278761/is-there-a-net-framework-method-for-converting-file-uris-to-paths-with-drive-let1Is there a .NET Framework method for converting file URIs to paths with drive letters?Scott A. Lawrence2008-11-10T18:45:28Z2009-06-10T07:59:03Z
<p>I was looking for something like Server.MapPath in the ASP.NET realm to convert the output of Assembly.GetExecutingAssembly().CodeBase into a file path with drive letter.</p>
<p>The following code works for the test cases I've tried:</p>
<pre>
private static string ConvertUriToPath(string fileName)
{
fileName = fileName.Replace("file:///", "");
fileName = fileName.Replace("/", "\\");
return fileName;
}
</pre>
<p>It seems like there should be something in the .NET Framework that would be much better--I just haven't been able to find it.</p>
http://stackoverflow.com/questions/724699/debugging-assembly-load-issue/948046#9480461Answer by Scott A. Lawrence for Debugging assembly load issueScott A. Lawrence2009-06-04T00:47:53Z2009-06-04T00:47:53Z<p>We encountered this issue as well, though it only happened on our build server (where we have VS2008 installed in order to use MSTest with MSBuild), not locally. We installed <a href="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=16827" rel="nofollow">this hotfix</a> in the version of VS2008 on the build server and that eliminated this problem. </p>
http://stackoverflow.com/questions/408511/what-development-tools-do-you-carry-on-your-usb-drive/835089#8350893Answer by Scott A. Lawrence for What development tools do you carry on your USB drive?Scott A. Lawrence2009-05-07T14:46:01Z2009-05-07T14:46:01Z<p>I would add <a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a> to this list. If you have to do anything at all with LINQ queries, it's must-have software. It has a self-contained executable so you could run it completely from a thumb drive if you wanted to.</p>
http://stackoverflow.com/questions/800091/how-do-i-update-an-existing-element-of-an-observablecollection1How do I update an existing element of an ObservableCollection?Scott A. Lawrence2009-04-28T22:27:18Z2009-04-29T12:00:47Z
<p>I have an instance of ObservableCollection bound to a WPF listbox with two separate data templates (one for display, one for editing). The data template for editing has a one-way binding on the textbox, and a Save button.</p>
<p>What changes do I need to make so that when I press the Save button (after putting the list item in edit mode), the value I change the textbox to replaces the value in the ObservableCollection (and the display)?</p>
http://stackoverflow.com/questions/787236/database-tables-duplication-guidelines/787317#7873171Answer by Scott A. Lawrence for Database tables duplication guidelines.Scott A. Lawrence2009-04-24T19:52:03Z2009-04-24T19:52:03Z<p>I wouldn't recommend the approach you've taken. If the intent was to improve application performance, it would have been more appropriate to collect performance metrics first. If a trend indicated decreasing performance as the amount of data grew, then it would be clear that some database change was appropriate.</p>
<p>Assuming your primary concern is the performance of selects against a large table, steps like applying good indexes and replacing "select *" with just the columns you want might be a better place to start than duplicating data across multiple tables. If your queries had a substantial number of joins, I could see that having a negative impact on your performance. In that case, creating an additional table that eliminated the need for joins in your queries would be a good optimization.</p>
http://stackoverflow.com/questions/777804/does-visual-studio-need-to-be-installed-on-the-tfs-build-server/777874#7778741Answer by Scott A. Lawrence for Does Visual Studio need to be installed on the TFS build server?Scott A. Lawrence2009-04-22T15:37:27Z2009-04-22T15:37:27Z<p>According to <a href="http://msdn.microsoft.com/en-us/library/ms252483%28VS.80%29.aspx" rel="nofollow">this</a>, Visual Studio shouldn't be required--just the .NET Framework. One other note to consider from the link is that they recommend against builds happening on the TFS box.</p>
http://stackoverflow.com/questions/374948/how-are-you-generating-test-data2How are you generating test data?Scott A. Lawrence2008-12-17T15:42:35Z2009-04-21T14:36:32Z
<p>I saw <a href="http://stackoverflow.com/questions/12880/large-data-sets">this question</a> about large datasets and it prompted me to ask how (or if) people are generating test data for themselves. One of the answers mentioned Visual Studio for Database Professionals and a product from Red Gate (<a href="http://www.red-gate.com/Products/SQL_Data_Generator/" rel="nofollow">SQL Data Generator</a> as it turns out). I came across <a href="http://www.generatedata.com/#about" rel="nofollow">generatedata.com</a> yesterday. Are there any other tools people are using that they've had a lot of success with?</p>
http://stackoverflow.com/questions/453481/subversion-plugin-to-visual-studio/662482#6624820Answer by Scott A. Lawrence for Subversion plugin to Visual Studio?Scott A. Lawrence2009-03-19T14:45:45Z2009-03-19T14:45:45Z<p>There are a couple of commercial plug-ins I saw mentioned in <a href="http://stackoverflow.com/questions/104579/cvs-and-vs-net-2008-integration-options">this answer</a> that you might consider:</p>
<ul>
<li>SVN SCC Proxy (from <a href="http://www.pushok.com/soft%5Fshort%5Finfo.php" rel="nofollow">PushOK Software</a>)</li>
<li>TamTam SVN SCC (from <a href="http://www.daveswebsite.com" rel="nofollow">daveswebsite.com</a>)</li>
</ul>
<p>The first can be used free for 30 days. To continue using it beyond that time, it's $27 per copy.</p>
<p>The second is free and fully-functional, with the "this is an evaluation" pop-up. To get rid of that, register it for $9.99.</p>
http://stackoverflow.com/questions/1799834/is-it-possible-to-restore-a-sql-server-database-from-a-virtual-drive/1799951#1799951Comment by Scott A. Lawrence on Is it possible to restore a SQL Server database from a virtual drive?Scott A. Lawrence2009-11-25T21:20:39Z2009-11-25T21:20:39ZThe "subst" command is what I'm using to create the virtual disk. It just maps to a location on the C:\ drive.http://stackoverflow.com/questions/1568174/what-could-be-the-next-evolution-after-oop/1568217#1568217Comment by Scott A. Lawrence on What could be the next evolution after OOP?Scott A. Lawrence2009-10-15T19:36:20Z2009-10-15T19:36:20Z@Martin Spamer - We've used it in production systems I've worked on going back to 2006--and that's just on the .NET side. The techniques are use to a larger degree than you assert.http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project/99594#99594Comment by Scott A. Lawrence on What is the best logging solution for a C# .NET 3.5 projectScott A. Lawrence2009-10-07T19:02:32Z2009-10-07T19:02:32Z@codeflunky - Does your approach really save that much work over configuring log4net to configure SmtpAppender and EventLogAppender?http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project/98093#98093Comment by Scott A. Lawrence on What is the best logging solution for a C# .NET 3.5 projectScott A. Lawrence2009-10-07T18:56:33Z2009-10-07T18:56:33ZEnterprise Library is a reasonable choice if you're using other parts of it already. If logging was all you wanted though, I think log4net is faster than its Enterprise Library counterpart.http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project/98791#98791Comment by Scott A. Lawrence on What is the best logging solution for a C# .NET 3.5 projectScott A. Lawrence2009-10-07T18:54:59Z2009-10-07T18:54:59Z@Richard E - Given a choice between sitting silently and causing the actual application to fail, I think the log4net team made the right choice for how log4net behaves at run-time. Configuration could be easier though.http://stackoverflow.com/questions/1532219/what-do-you-do-to-construct-a-softwares-user-interface/1532401#1532401Comment by Scott A. Lawrence on What do you do to construct a software's user interface ?Scott A. Lawrence2009-10-07T18:52:24Z2009-10-07T18:52:24Z@JeffH - You're welcome. You've come up with an excellent answer.http://stackoverflow.com/questions/1532086/when-developing-visual-studio-add-ins-what-testing-options-are-there-beyond-manu/1532466#1532466Comment by Scott A. Lawrence on When developing Visual Studio add-ins, what testing options are there beyond manual testing?Scott A. Lawrence2009-10-07T17:52:13Z2009-10-07T17:52:13ZSo if I'm understanding your answer correctly, would this mean that the logic which does the actual work should be as separate as possible from the Connect.cs contents that Visual Studio generates automatically?
http://stackoverflow.com/questions/1532219/what-do-you-do-to-construct-a-softwares-user-interface/1532317#1532317Comment by Scott A. Lawrence on What do you do to construct a software's user interface ?Scott A. Lawrence2009-10-07T17:47:01Z2009-10-07T17:47:01Z@Nathan Long - I've played with Balsamiq a bit and like the tool a lot. If I had to design interfaces more regularly, I would definitely buy it for myself. @HLGEM - Amen to your point. Few things are worse than an interface that appears to be working, especially if a lot of shortcuts were taken for demo purposes.http://stackoverflow.com/questions/1532219/what-do-you-do-to-construct-a-softwares-user-interface/1532401#1532401Comment by Scott A. Lawrence on What do you do to construct a software's user interface ?Scott A. Lawrence2009-10-07T17:45:18Z2009-10-07T17:45:18Z+1 for the answer because the first two points are on target. On the agile point though, the end result of those practices tends to be that you get an app with an unsatisfying user experience more quickly than with a waterfall methodology. Beginning each iteration with sketches of how a feature might look as it's used is key to avoiding the "get mediocre user experience faster" result.http://stackoverflow.com/questions/655365/does-desktop-development-matter/655394#655394Comment by Scott A. Lawrence on Does desktop development matter?Scott A. Lawrence2009-09-25T16:25:47Z2009-09-25T16:25:47ZWithout a tool like Expression Blend, doing some of the more complex things that are possible with WPF can be quite challenging.http://stackoverflow.com/questions/1473624/business-logic-in-database-versus-code/1473688#1473688Comment by Scott A. Lawrence on Business Logic in Database versus Code?Scott A. Lawrence2009-09-24T19:34:18Z2009-09-24T19:34:18ZT-SQL and other SQL variants can be hard to read, but I would consider them declarative instead of procedural--cursors being one exception.http://stackoverflow.com/questions/1406283/visual-studio-does-not-break-with-exception-assistant-but-just-stops-the-processComment by Scott A. Lawrence on Visual Studio does not break with exception assistant, but just stops the processScott A. Lawrence2009-09-21T20:56:53Z2009-09-21T20:56:53ZI hope you get an answer. I've encountered something that sounds like your situation in getting a Visual Studio macro to work. I'm trying to add banners to source code files the way it's done in this question: <a href="http://stackoverflow.com/questions/415101/need-visual-studio-macro-to-add-banner-to-all-c-files" rel="nofollow" title="need visual studio macro to add banner to all c files">stackoverflow.com/questions/415101/…</a>http://stackoverflow.com/questions/415101/need-visual-studio-macro-to-add-banner-to-all-c-files/415178#415178Comment by Scott A. Lawrence on Need Visual Studio macro to add banner to all C# filesScott A. Lawrence2009-09-21T20:31:09Z2009-09-21T20:31:09ZHow well does this work for files that have designers, like WinForms?http://stackoverflow.com/questions/469330/how-to-resolve-only-one-project-can-be-specified-error-from-msbuild-task-in-c/470659#470659Comment by Scott A. Lawrence on How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NETScott A. Lawrence2009-08-26T13:11:56Z2009-08-26T13:11:56ZMSBuild definitely doesn't like spaces at all. I encountered the same error you did when testing property overrides for certain targets in my build file. Once I eliminated spaces from the paths, everything worked.http://stackoverflow.com/questions/1316100/what-contents-should-a-professional-programmers-website-have/1316107#1316107Comment by Scott A. Lawrence on What contents should a professional programmer’s website have?Scott A. Lawrence2009-08-26T12:07:13Z2009-08-26T12:07:13ZUdi, whether the site is unique and well-written is up to you. The platform (wordpress, movabletype, etc) is less important than the content you add.