User AR - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:46:34Zhttp://stackoverflow.com/feeds/user/1354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/107383/what-is-the-best-windows-program-launcher4What is the best (Windows) program launcher?AR2008-09-20T06:31:32Z2009-11-18T13:55:26Z
<p>One of the biggest general productivity boosters I've used is a good program launcher. I was a long-time user of SlickRun, and I've tried a few others. My current favorite is Executor - by far the best I've used.</p>
<p>Other options:</p>
<ul>
<li><a href="http://executor.dk/" rel="nofollow">Executor</a>: My current favorite</li>
<li>Vista Start Menu: Pretty good, actually, but Executor is similar (binds to Win+Z) and much more flexible.</li>
<li><a href="http://quicksilver.en.softonic.com/mac" rel="nofollow">Quicksilver</a>: For Macs only, but it seems to be the <em>gold standard</em> against which most other launchers are measured.</li>
<li><a href="http://desktop.google.com/" rel="nofollow">Google Desktop</a>: Press Ctrl+Ctrl and it's a quick launcher!</li>
<li><a href="http://www.autohotkey.com/" rel="nofollow">AutoHotKey</a>: Much,much more than just a launcher - more than I need, really.</li>
<li><a href="http://www.bayden.com/SlickRun/" rel="nofollow">SlickRun</a>: simple and unobtrusive</li>
<li><a href="http://launchy.net/" rel="nofollow">Launchy</a>: <em>Seems to be the launcher of choice for many StackOverflow users</em> :)</li>
<li><a href="http://colibri.leetspeak.org/" rel="nofollow">Colibri</a>: "Type Ahead - Information at the tip of your wings". Quite a cool concept.</li>
<li>Many, many others. Scott Hanselman outlines some more <a href="http://www.hanselman.com/blog/ReplacingStartRunTheQuestContinues.aspx" rel="nofollow">here</a>.</li>
</ul>
<p>I realize that everyone will have their own preferences, but the question is: is there anything that really stands out in terms of speed, features, and especially productivity increase?</p>
http://stackoverflow.com/questions/130794/what-is-dependency-injection39What is dependency injection?AR2008-09-25T00:28:40Z2009-09-22T17:36:24Z
<p>There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question:</p>
<p><strong>What is dependency injection and when/why should or shouldn't it be used?</strong></p>
<p>Edit: While external links for followup reading are always appreciated, I'd like to encourage people to write as complete an answer here as possible, so that SO itself can be a good source to learn. I believe this is the intent of the site.</p>
http://stackoverflow.com/questions/1280508/how-do-i-suppress-t-sql-warnings-when-running-a-script-sql-server-20050How do I suppress T-SQL warnings when running a script SQL Server 2005?AR2009-08-14T22:29:15Z2009-08-14T22:39:33Z
<p>Is it possible to suppress warnings generated by T-SQL scripts? If so, how?</p>
<p>I know I can turn of the 'records affected' messages with</p>
<pre><code>SET NOCOUNT ON
</code></pre>
<p>but is there an equivalent for warnings?
Eg:</p>
<pre><code>Warning: Null value is eliminated by an aggregate or other SET operation.
</code></pre>
<p>If I'm expecting these errors, it helps to sift the real errors from the chaff in a big script.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/164967/how-can-i-enumerate-the-list-of-dsns-set-up-on-a-computer-using-vba1How can I enumerate the list of DSN's set up on a computer using VBA?AR2008-10-02T23:00:17Z2009-06-22T09:44:09Z
<p>I have an Excel application in which I want to present the user with a list of the Data Source Names (ie: DSN's), whereby s/he can choose what data source to use.</p>
<p>Hopefully once I've got the list, I can easily access the DSN properties to connect to the appropriate database.</p>
<p>Please note, I do <em>not</em> want to use a DSN-less connection.</p>
http://stackoverflow.com/questions/710899/robust-svn-export-and-copy-script0Robust SVN export and copy script?AR2009-04-02T18:05:42Z2009-04-03T06:46:38Z
<p>I'm looking for the best way to run a nightly script that exports a set of
files from a SVN Repository to a local directory. When the export finishes,
copy the contents of the local directory to several remote servers.</p>
<p>This will be a scheduled back job running on a Windows Server 2003 machine.
Remote servers are all on the network, so there's no need for FTP, etc.</p>
<p>Pseudocode would run like this</p>
<pre><code>1. svn export repo localdir (plus some switches)
2. ... wait to make sure export is finished ...
3. robocopy localdir \\remotedir1
4. robocopy localdir \\remotedir2, etc
</code></pre>
<p>I'm very new to writing batch jobs, but I'd like this to be as robust as possible:
- copy doesn't start until export is done
- if copy to remotedir1 fails, script still proceeds copying to remotedir2,3,etc
- is it possible to log problems if there is any trouble at one of the steps?</p>
<p>Any input on what the batch job would look like would be much appreciated!</p>
http://stackoverflow.com/questions/632385/how-can-i-best-use-vba-in-access-or-excel-to-test-an-odbc-connection1How can I best use VBA in Access or Excel to test an ODBC connection?AR2009-03-10T21:37:59Z2009-03-10T22:01:01Z
<p>Given a pre-configured ODBC System DSN, I'd like to write a function that gracefully <strong>tests</strong> that connection using VBA.</p>
<pre><code>Private Function TestConnection(ByVal dsnName As String) As Boolean
' What goes here?? '
End Function
</code></pre>
<p>Edit: To clarify, the System DSNs are pointing to external SQL Server 2005 databases, with Windows NT authentication.</p>
<p>One approach I've tried is to send some random query to the target database and catch the error. If the query works, return true. If there's an error then return false. This works just fine but it feels...kludgy. Is there a more elegant way, especially one that doesn't rely on <em>On Error Goto</em> ?</p>
<p>Note: It's a legacy Access 2000 database I'm working on, so any solution can't have any Access 2007 or 2003 dependencies. I'd like to make it generic to VBA, but if there's a simple way in Access that's fine too.</p>
<p>Much obliged for any advice.</p>
http://stackoverflow.com/questions/481244/can-anyone-recommend-a-good-tutorial-for-learning-linq2sql/481269#4812693Answer by AR for Can anyone recommend a good tutorial for learning Linq2Sql?AR2009-01-26T20:45:38Z2009-01-26T20:45:38Z<p>As a supplement to book or web-learning, LinqPad (<a href="http://www.linqpad.net/" rel="nofollow">http://www.linqpad.net/</a>) is a great way to learn Linq to SQL. The download includes quite a few examples, and you can try things out directly.</p>
http://stackoverflow.com/questions/335805/how-can-i-synchronize-views-and-stored-procedures-between-sql-server-databases3How can I synchronize views and stored procedures between SQL Server databases?AR2008-12-02T23:24:55Z2009-01-19T02:47:14Z
<p>I have a 'reference' SQL Server 2005 database that is used as our global standard. We're all set up for keeping general table schema and data properly synchronized, but don't yet have a good solution for other objects like views, stored procedures, and user-defined functions.</p>
<p>I'm aware of products like <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">Redgate's SQL Compare</a>, but we don't really want to rely on (any further) 3rd-party tools right now.</p>
<p>Is there a way to ensure that a given stored procedure or view on the reference database, for example, is up to date on the target databases? Can this be scripted?</p>
<p>Edit for clarification: when I say 'scripted', I mean running a script that pushes out any changes to the target servers. Not running the same CREATE/ALTER script multiple times on multiple servers.</p>
<p>Any advice/experience on how to approach this would be much appreciated.</p>
http://stackoverflow.com/questions/296696/how-do-i-make-sure-public-vba-methods-dont-show-up-in-the-list-of-excel-macros2How do I make sure public VBA methods don't show up in the list of Excel macros?AR2008-11-17T19:59:55Z2008-12-12T12:26:06Z
<p>In Excel VBA (2003), I've noticed that any <strong>Public</strong> or <strong>Friend</strong> <strong>Sub</strong> method in either a module or <em>ThisWorkbook</em> that doesn't have any arguments will show up as a Macro that can be run by the user. I.e. when the user goes to Tools --> Macro --> Macros... (or Alt+F8) the method will show up in the list that can be run.</p>
<p>For sanity's sake (organization, maintenance, etc) I do need to separate the code into modules. I'm hoping to find a non-hacky way to hide some methods from the user, but still allow them to be visible to other code modules. Note that all the code is contained within the same <em>application</em>, so no external code is called.</p>
<p>My current work-around is to use <strong>Function</strong>s that return a boolean instead of <strong>Sub</strong>s, and just ignore the return value. eJames suggested the option of using an optional argument in the <strong>Sub</strong>, which will also hide the method from the list of macros.</p>
<p>Neither of these feel quite right, however, so any advice about how to structure a non-trivial Excel VBA application would be much appreciated.</p>
http://stackoverflow.com/questions/360158/case-sensitive-validation-in-excel-from-named-list1Case sensitive validation in Excel from Named ListAR2008-12-11T17:17:48Z2008-12-12T11:07:44Z
<p>I'm using VBA in Excel 2003 to apply validation to apply validation to a given range of cells from a named list. The user can then select from a dropdown list of values.</p>
<p>Edit: Here's how I'm setting the validation, given a named range called 'MyLookupList'</p>
<pre><code> With validatedRange.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, _
Operator:=xlBetween, Formula1:="=MyLookupList"
.ErrorMessage = "Invalid value. Select one from the dropdown list."
.InCellDropdown = True
End With
</code></pre>
<p>All that works fine, but the problem is that when validation is applied from a named list, it is case-insensitive. I.e. if a dropdown choice is "John Smith", then the user can type in "john smith" or "john SmiTh" into the validated cell and Excel will still treat it as a valid entry.</p>
<p>I know that manually creating a list via Tools-->Validation... will make the lookup validation case sensitive, but for my case this is just not feasible - I have to populate the named lists and assign validation programmatically.</p>
<p>Does anyone know of a way to ensure that Excel validation based on named lists is case-sensitive?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/321719/forcing-a-tab-to-the-next-control-in-an-extended-net-control/321755#3217550Answer by AR for Forcing a tab to the next control in an extended .net controlAR2008-11-26T18:54:38Z2008-11-26T18:54:38Z<p>If you're extending a normal Winforms Textbox, you can set the <strong>AcceptsTab</strong> property to True or False, depending on your needs. If it's true, then a tab character will be inserted into your textbox. If it's false, then hitting the Tab key will move focus to the next control in the Tab Order</p>
http://stackoverflow.com/questions/316009/c-best-way-to-get-folder-depth-for-a-given-path1C# Best way to get folder depth for a given path?AR2008-11-25T00:40:53Z2008-11-25T05:38:22Z
<p>I'm working on something that requires traversing through the file system and for any given path, I need to know how 'deep' I am in the folder structure. Here's what I'm currently using:</p>
<pre><code> int folderDepth = 0;
string tmpPath = startPath;
while (Directory.GetParent(tmpPath) != null) {
folderDepth++;
tmpPath = Directory.GetParent(tmpPath).FullName;
}
return folderDepth;
</code></pre>
<p>This works but I suspect there's a better/faster way? Much obliged for any feedback.</p>
http://stackoverflow.com/questions/308985/vb-net-syntax-highlighting-in-a-rich-text-box/310565#3105651Answer by AR for vb.net Syntax Highlighting in a Rich Text BoxAR2008-11-21T23:44:13Z2008-11-21T23:44:13Z<p>This doesn't really answer your question, but if you're writing your own editor you may be better off using some existing open source work that's been done for .NET. I'd recommend:</p>
<p>Roger Alsing's <a href="http://code.google.com/p/alsing/wiki/SyntaxBox" rel="nofollow">SyntaxBox</a></p>
http://stackoverflow.com/questions/303417/what-are-the-best-practices-in-writing-a-sql-stored-procedure/303473#3034735Answer by AR for What are the best practices in writing a sql stored procedureAR2008-11-19T21:41:52Z2008-11-19T21:41:52Z<p>This is a very general question, but here are a couple of pieces of advice:</p>
<ul>
<li>Name your stored procedures consistently. Many use a prefix to identify that it's a stored procedure, but don't use 'sp_' as the prefix as that's designated for the Master databae (in SQL Server anyway)</li>
<li>Set NOCOUNT on, as this reduces the number of possible return values</li>
<li>Set-based queries often perform better than cursors. <a href="http://stackoverflow.com/questions/287445/why-do-people-hate-sql-cursors-so-much">This question</a> gets into this in much more detail.</li>
<li>If you're DECLARE'ing variables for your stored procedure, use good naming conventions just as you would/should in any other kind of programming.</li>
<li>Call SPs using their fully-qualified name to eliminate any confusion about which SP should be called, and to help boost SQL Server performance; this makes it easier to find the SP in question.</li>
</ul>
<p>There's much more, of course. Here's are a link with more:
<a href="http://www.databasejournal.com/features/mssql/article.php/1565961/SQL-Server-Stored-Procedures-Optimization-Tips.htm" rel="nofollow">SQL Server Stored Procedures Optimization Tips</a></p>
http://stackoverflow.com/questions/297328/how-to-use-reflection-to-create-a-reflection-machine/297375#2973751Answer by AR for How to use reflection to create a "reflection machine"AR2008-11-17T23:41:27Z2008-11-17T23:41:27Z<p>It sound as if Corneliu Tusnea's <a href="http://www.acorns.com.au/Projects/Hawkeye/" rel="nofollow">Hawkeye</a> might be close to what you're looking for runtime interrogation of objects/properties/etc. He calls it the .NET Runtime Object Editor. I'm not sure if the homepage I linked to above or the <a href="http://www.codeplex.com/hawkeye" rel="nofollow">CodePlex project</a> is the best place to start.</p>
<p>It's a bit out of date now, I think, but there's an <a href="http://www.codeproject.com/KB/cs/RuntimeObjectEditor.aspx" rel="nofollow">earlier version of it on CodeProject</a> where you can see the source code for how and what he did.</p>
http://stackoverflow.com/questions/107385/favorite-option-for-source-control-under-70/107396#1073962Answer by AR for Favorite option for source control under $70?AR2008-09-20T06:36:11Z2008-11-05T19:57:51Z<p><a href="http://subversion.tigris.org/" rel="nofollow">Subversion (SVN)</a> is a <em>very</em> widely used, free option with many supporting tools and a huge user community. Source control repositories can be local or remote and accessible via the web (with or without SSL).</p>
<p>Windows client: <a href="http://tortoisesvn.tigris.org/" rel="nofollow">Tortoise SVN</a> - Integrates with Windows Explorer Shell (Free!)</p>
<p>Visual Studio Integration: <a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN</a> - Been around for years and actively developed (Free!)</p>
<p>Easy Server setup: <a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN</a> (Free, but not open source)<br />
Other Server setup: <a href="http://www.sliksvn.com/en/download" rel="nofollow">SlikSVN</a> (As per mgb's comment. Also free)</p>
http://stackoverflow.com/questions/259569/net-text-editor-that-accepts-html-and-input-output-with-spellchecking/259965#2599651Answer by AR for .NET text editor that accepts HTML and input/output with spellcheckingAR2008-11-03T21:10:04Z2008-11-03T21:10:04Z<p>Here are a couple of options for for an open source .NET-based text editor that handles syntax highlighting</p>
<ul>
<li>The ICSharpCode.TextEditor component of the <a href="http://www.icsharpcode.net/OpenSource/SD/Download/" rel="nofollow">SharpDevelop</a> C# IDE</li>
<li><a href="http://www.codeplex.com/dotnetfireball" rel="nofollow">DotNet Fireball</a></li>
</ul>
<p>It should be relatively easy to set these up for HTML, or find existing syntax definitions for HTML.</p>
<p>I'm not too sure about embedding spellcheck into it, but this article may be of interest:</p>
<p><a href="http://www.codeproject.com/KB/recipes/spellcheckparser.aspx" rel="nofollow">SpellCheck.net spell checking parsing using C#</a></p>
http://stackoverflow.com/questions/234864/i-need-something-to-enter-text-into-a-text-box-from-an-excel-spreadsheet/240877#2408770Answer by AR for I need something to enter text into a text box from an excel spreadsheetAR2008-10-27T18:04:26Z2008-10-27T18:04:26Z<p>If you cannot alter the target software at all, then it looks like <a href="http://stackoverflow.com/questions/234864/i-need-something-to-enter-text-into-a-text-box-from-an-excel-spreadsheet#234986">CalvinTreg's suggestion</a> of using a GUI-based script is the way to go.</p>
<p>I don't know AutoIt, but if your choice of scripting engine is able to access ODBC connections, then you could use the Excel file as a data source and query the appropriate parts of the spreadsheet. Then your script can loop through the query and enter/click next in the target app each iteration. It would save having to open the Excel file at all.</p>
http://stackoverflow.com/questions/211611/copy-files-to-clipboard-in-c/213294#2132941Answer by AR for Copy files to clipboard in C#AR2008-10-17T18:28:12Z2008-10-17T18:28:12Z<p>If you are only copying and pasting within your application, you can map the cut/copy operation of your treeview to a method that just clones your selected node. Ie:</p>
<pre><code>TreeNode selectedNode;
TreeNode copiedNode;
selectedNode = yourTreeview.SelectedNode;
if (selectedNode != null)
{
copiedNode = selectedNode.Clone;
}
// Then you can do whatever you like with copiedNode elsewhere in your app.
</code></pre>
<p>If you are wanting to be able to paste to other applications, then you'll have to use the clipboard. You can get a bit fancier than just plain text by learning more about the <strong>IDataObject</strong> interface. I can't remember the source but here's something I had in my own notes:</p>
<blockquote>
<p>When implemented in a class, the
IDataObject methods allow the user to
store data in multiple formats in an
instance of the class. Storing data in
more than one format increases the
chance that a target application,
whose format requirements you might
not know, can retrieve the stored
data. To store data in an instance of
IDataObject, call the SetData method
and specify the data format in the
format parameter. Set the autoConvert
parameter to false if you do not want
stored data to be converted to another
format when it is retrieved. Invoke
SetData multiple times on one instance
of IDataObject to store data in more
than one format.</p>
</blockquote>
<p>Once you've populated an object that implements <strong>IDataObject</strong> (e.g. something called <strong>yourTreeNodeDataObject</strong>), then you can call:</p>
<pre><code>Clipboard.SetDataObjecT(yourTreeNodeDataObject);
</code></pre>
http://stackoverflow.com/questions/206867/what-is-the-best-way-to-update-form-controls-from-a-worker-thread/206884#2068846Answer by AR for What is the best way to update form controls from a worker thread?AR2008-10-15T23:24:09Z2008-10-16T00:08:47Z<p>There's a general rule of thumb that says don't update the UI from any thread other than the UI thread itself. Using the features of the BackgroundWorker is a good idea, but you don't want to and something is happening on a different thread, you should do an "Invoke" or BeginInvoke to force the delegate to execute the method on the UI thread.</p>
<p>Edit: Jon B made this good point in the comments:</p>
<blockquote>
<p>Keep in mind that Invoke() is
synchronous and BeginInvoke() is
asynchronous. If you use Invoke(), you
have to be careful not to cause a
deadlock. I would recommend
BeginInvoke() unless you really need
the call to be synchronous.</p>
</blockquote>
<p>Some simple example code:</p>
<pre><code>// Updates the textbox text.
private void UpdateText(string text)
{
// Set the textbox text.
m_TextBox.Text = text;
}
public delegate void UpdateTextCallback(string text);
// Then from your thread you can call this...
m_TextBox.Invoke(new UpdateTextCallback(this.UpdateText),
new object[]{"Text generated on non-UI thread."});
</code></pre>
<p>The code above is from a FAQ about it <a href="http://blogs.msdn.com/csharpfaq/archive/2004/03/17/91685.aspx" rel="nofollow">here</a> and a longer more involved one <a href="http://weblogs.asp.net/justin_rogers/articles/126345.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/205534/database-for-enormous-amounts-of-data/205545#2055452Answer by AR for Database for ENORMOUS amounts of data?AR2008-10-15T17:01:26Z2008-10-15T17:01:26Z<p>Properly configured <a href="http://www.oracle.com/index.html" rel="nofollow">Oracle</a> or Microsoft's <a href="http://www.microsoft.com/sqlserver/2008/en/us/default.aspx" rel="nofollow">SQL Server</a> should be able to handle anything you throw at it.</p>
http://stackoverflow.com/questions/47537/c-console/203163#2031630Answer by AR for C# Console?AR2008-10-14T23:02:06Z2008-10-14T23:02:06Z<p>If you don't <em>have</em> to use the console, and just want a place to test some ad hoc C# snippets, then <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> is a good option. I find it very cool/easy to use.</p>
http://stackoverflow.com/questions/202002/how-do-i-open-a-file-in-c-and-change-its-properties/202880#2028805Answer by AR for How do I open a file in C# and change its properties?AR2008-10-14T21:14:17Z2008-10-14T21:14:17Z<p>Microsoft provides a very useful little assembly called DSOFile. With a reference to it in your project, you can modify Office document properties. It won't necessarily let you open the actual Office file's properties dialog, but you could certainly simulate it.</p>
<p>According to Microsoft:</p>
<blockquote>
<p>The Dsofile.dll files lets you edit
Office document properties when you do
not have Office installed</p>
</blockquote>
<p>More details and a download link can be found at <a href="http://support.microsoft.com/kb/224351" rel="nofollow">http://support.microsoft.com/kb/224351</a></p>
<p>Here's a snippet some (very old) VB code I used ages ago. Sorry I haven't converted to C# and be aware that it's part of a class so there are references to instance variables. Still, it should be pretty easy to understand and covert to your own needs:</p>
<pre><code>Private Sub ProcessOfficeDocument(ByVal fileName As String)
Dim docDSO As New DSOFile.OleDocumentPropertiesClass
Dim docTitle, docModified, docAuthor, docKeywords As String
Try
docDSO.Open(fileName, True)
Dim docSummary As DSOFile.SummaryProperties = docDSO.SummaryProperties
docTitle = docSummary.Title
docAuthor = docSummary.Author
docKeywords = docSummary.Keywords
docModified = CStr(docSummary.DateLastSaved)
If (Not String.IsNullOrEmpty(docTitle)) Then
_Title = docTitle
End If
If (Not String.IsNullOrEmpty(docAuthor)) Then
_Author = docAuthor
End If
If (Not String.IsNullOrEmpty(docModified)) Then
_DateModified = DateTime.Parse(docModified)
End If
Catch ex As Exception
'Do whatever you need to do here...'
Finally
If (Not docDSO Is Nothing) Then
docDSO.Close()
End If
End Try
End Sub
</code></pre>
http://stackoverflow.com/questions/193092/c-how-to-add-excel-worksheet-programatically-office-xp-2003/193323#1933236Answer by AR for C# how to add Excel Worksheet programatically Office XP / 2003AR2008-10-10T23:19:47Z2008-10-10T23:19:47Z<p>If you don't already, you must have add a COM reference in your project to the "Microsoft Excel 11.0 Object Library" - or whatever version is appropriate.</p>
<p>This code works for me...</p>
<pre><code> private void AddWorksheetToExcelWorkbook(string fullFilename,string worksheetName)
{
Microsoft.Office.Interop.Excel.Application xlApp = null;
Workbook xlWorkbook = null;
Sheets xlSheets = null;
Worksheet xlNewSheet = null;
try {
xlApp = new Microsoft.Office.Interop.Excel.Application();
if (xlApp == null)
return;
// Uncomment the line below if you want to see what's happening in Excel
// xlApp.Visible = true;
xlWorkbook = xlApp.Workbooks.Open(fullFilename, 0, false, 5, "", "",
false, XlPlatform.xlWindows, "",
true, false, 0, true, false, false);
xlSheets = xlWorkbook.Sheets as Sheets;
// The first argument below inserts the new worksheet as the first one
xlNewSheet = (Worksheet)xlSheets.Add(xlSheets[1], Type.Missing, Type.Missing, Type.Missing);
xlNewSheet.Name = worksheetName;
xlWorkbook.Save();
xlWorkbook.Close(Type.Missing,Type.Missing,Type.Missing);
xlApp.Quit();
}
finally {
Marshal.ReleaseComObject(xlNewSheet);
Marshal.ReleaseComObject(xlSheets);
Marshal.ReleaseComObject(xlWorkbook);
Marshal.ReleaseComObject(xlApp);
xlApp = null;
}
}
</code></pre>
<p>Note that you want to be very careful about <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c">properly cleaning up and releasing your COM object references</a>. Included in that StackOverflow question is a useful rule of thumb: "Never use 2 dots with COM objects". In your example code above you're going to have real trouble with that. <em>My demo code above does NOT properly clean up the Excel app, but it's a start!</em></p>
<p>Some other links I found useful when looking into this question:</p>
<ul>
<li><a href="http://www.codeproject.com/KB/office/csharp_excel.aspx" rel="nofollow">Opening and Navigating Excel with C#</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms173186(VS.80).aspx" rel="nofollow">How to: Use COM Interop to Create an Excel Spreadsheet (C# Programming Guide)</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/6fczc37s(VS.80).aspx" rel="nofollow">How to: Add New Worksheets to Workbooks</a></li>
</ul>
<p>According to MSDN </p>
<blockquote>
<p>To use COM interop, you must have
administrator or Power User security
permissions.</p>
</blockquote>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/193008/rube-goldberg-software-design/193028#1930280Answer by AR for Rube Goldberg software designAR2008-10-10T21:10:00Z2008-10-10T21:10:00Z<p>Might be better to look for answers to this question over at <a href="http://thedailywtf.com/Default.aspx" rel="nofollow">The Daily WTF</a> :)</p>
http://stackoverflow.com/questions/132403/which-language-should-i-pick-up-vb-net-or-c/137272#1372721Answer by AR for Which language should I pick up: VB.Net or C#AR2008-09-26T01:32:54Z2008-09-26T01:32:54Z<p>One thing to consider is the available <strong>community support</strong>.</p>
<p>The arguments either way all make sense. However, issue I don't see mentioned here is the level of community support. In my <em>very subjective</em> personal experience, I would say that there is probably at least twice as much advice/examples/blogging/etc for C# than there is for VB.NET.</p>
<p>I started with VB.NET, but found myself forced to start picking up the C# syntax, etc, because so much of the sample code I saw was in C#. Eventually, I moved (evolved?) to 100% C# for writing .NET-based code. I couldn't/wouldn't go back though VB.NET does still have some nice conveniences that I miss.</p>
http://stackoverflow.com/questions/125710/how-can-i-programatically-manipulate-any-windows-applications-common-dialog-box5How can I programatically manipulate any Windows application's common dialog box? (.NET)AR2008-09-24T06:33:57Z2008-09-24T14:11:09Z
<p>My ultimate goal here is to write a utility that lets me quickly set the folder on <em>any</em> dialog box, choosing from a preset list of 'favorites'. As I'm just a hobbyist, not a pro, I'd prefer to use .NET as that's what I know best. I do realize that some of this stuff might require something more than what I could do in C#.</p>
<p>I have seen some applications that are able to extend the common dialog box (specifically for Save As.. and File Open) either by adding buttons to the toolbar (eg: <a href="http://www.win-utilities.com/dba/index.html" rel="nofollow">Dialog Box Assistant</a>) or by putting extra buttons in the title bar beside the minimize, maximize, and/or close buttons. Either would be good option though I don't have the foggiest idea where to begin.</p>
<p>One approach I've tried is to 'drag' the folder name from an app I wrote to the file name textbox on the dialog box, highlighting it using a mouse hook technique I picked up from Corneliu Tusnea's <a href="http://readify.net/tech-zone/tech-tools/hawkeye-the-net-runtime-object-editor/Default.aspx" rel="nofollow">Hawkeye Runtime Object Editor</a>, and then prepending the path name by pinvoking SendMessage with WM_SETTEXT. It (sort of) works but feels a bit klunky.</p>
<p>Any advice on technique or implementation for this would be much appreciated. Or if there's an existing utility that already does this, please let me know!</p>
<p><strong>Update</strong>: When all is said and done, I think I'll probably got with an existing utility. However, I would like to know if there <em>is</em> a way to do this programmatically.</p>
http://stackoverflow.com/questions/117438/getting-started-using-linq-what-do-i-need/117534#1175340Answer by AR for Getting started using Linq, what do I need?AR2008-09-22T20:47:21Z2008-09-22T20:47:21Z<p>LINQ requires .NET v3.5</p>
<p>An excellent tool for getting to know and practice LINQ is <a href="http://www.linqpad.net/" rel="nofollow">Joseph Albahari's LINQPad</a></p>
http://stackoverflow.com/questions/116402/sql-server-2000-function-for-record-created-datetime/116433#1164331Answer by AR for SQL Server 2000 Function for record created datetimeAR2008-09-22T18:02:16Z2008-09-22T20:13:14Z<p>I'm not aware of a way you can get this information for existing records. However, going forward you can create an audit table that stores the TableName and RecordCreateDate (or something similar.</p>
<p>Then, for the relevant tables you can make an insert trigger:</p>
<pre><code>CREATE TRIGGER trigger_RecordInsertDate
ON YourTableName
AFTER INSERT
AS
BEGIN
-- T-SQL code for inserting a record and timestamp
-- to the audit table goes here
END
</code></pre>
http://stackoverflow.com/questions/5003/do-people-actually-get-anything-done-using-a-laptop-on-a-plane/106300#1063000Answer by AR for Do people actually get anything done using a laptop on a plane?AR2008-09-19T23:07:04Z2008-09-19T23:07:04Z<p>I've found my productivity depends entirely on if there are any good movies on the flight. ;)</p>
<p>Actually, flying <strong>business class</strong> makes a huge difference for being able to work while on the plane. You have much more room and most seats I've been on recently have had a place to plug in the laptop. If you can upgrade or get a special fare on business class, it doesn't have to be <em>too</em> much more expensive than coach, and you might even be able to justify the increased productivity to the bean counters!</p>
http://stackoverflow.com/questions/1288594/what-are-javascript-data-types/1288605#1288605Comment by AR on What are JavaScript Data Types? AR2009-08-17T15:59:03Z2009-08-17T15:59:03ZNo appropriate, actually. :) Sure it's a beginner question but the whole point is that -StackOverflow- become the go-to resource for dev questions.http://stackoverflow.com/questions/710899/robust-svn-export-and-copy-script/710952#710952Comment by AR on Robust SVN export and copy script?AR2009-04-02T18:27:05Z2009-04-02T18:27:05ZThanks for the idea, but I can't really get into installing/learning/using a whole new system. For what I need, a simple scheduled batch job should be sufficient.http://stackoverflow.com/questions/632385/how-can-i-best-use-vba-in-access-or-excel-to-test-an-odbc-connection/632449#632449Comment by AR on How can I best use VBA in Access or Excel to test an ODBC connection?AR2009-03-11T17:08:41Z2009-03-11T17:08:41ZThis is a good approach and I had initially accepted it as the answer. However, it still errors out if the "DSN HERE" is an invalid connection string. Methinks ADO needs a TryOpen method! :)http://stackoverflow.com/questions/632385/how-can-i-best-use-vba-in-access-or-excel-to-test-an-odbc-connection/632444#632444Comment by AR on How can I best use VBA in Access or Excel to test an ODBC connection?AR2009-03-10T21:57:06Z2009-03-10T21:57:06ZDSNs are pointing to an external SQL Server database. Sorry, should have specified - I'll update the question to reflect.http://stackoverflow.com/questions/585090/how-can-i-implement-conditional-inserting-in-oracleComment by AR on How can I implement conditional inserting in Oracle?AR2009-02-25T17:30:56Z2009-02-25T17:30:56ZOh noes! Teh funfuzz strike again! My goodness. What a tragedy, adding a little bit of humour to a question! Better edit it out. </sarcasm>http://stackoverflow.com/questions/146316/ideal-number-of-classes-per-namespace-branch/146323#146323Comment by AR on Ideal number of classes per namespace branchAR2009-01-29T18:33:10Z2009-01-29T18:33:10ZI'm trying really, really hard to envision a system with anything close to 10k classes (!?!?), especially all in one namespace.http://stackoverflow.com/questions/335805/how-can-i-synchronize-views-and-stored-procedures-between-sql-server-databases/456196#456196Comment by AR on How can I synchronize views and stored procedures between SQL Server databases?AR2009-01-28T23:33:30Z2009-01-28T23:33:30ZThis doesn't exactly answer the question directly, but it does point me to getting the information I need. Thanks! :)http://stackoverflow.com/questions/360158/case-sensitive-validation-in-excel-from-named-list/361283#361283Comment by AR on Case sensitive validation in Excel from Named ListAR2008-12-12T10:27:39Z2008-12-12T10:27:39ZLooks interesting, thanks. Will give it a go.http://stackoverflow.com/questions/360158/case-sensitive-validation-in-excel-from-named-list/360750#360750Comment by AR on Case sensitive validation in Excel from Named ListAR2008-12-12T10:26:58Z2008-12-12T10:26:58ZHehe, yeah - I have lists 100s of entries long. But a good approach for small stuff.http://stackoverflow.com/questions/360158/case-sensitive-validation-in-excel-from-named-list/360750#360750Comment by AR on Case sensitive validation in Excel from Named ListAR2008-12-11T21:30:44Z2008-12-11T21:30:44ZThis should work for small validation requirements, but probably not for the sheer amount of validation I have to do in this workbook. I'll give it a shot and let you know. Thanks!http://stackoverflow.com/questions/360158/case-sensitive-validation-in-excel-from-named-listComment by AR on Case sensitive validation in Excel from Named ListAR2008-12-11T18:30:52Z2008-12-11T18:30:52ZI use VBA to assign the validation based on a named range - see the edit in the question above. The validation itself works fine, except that it's not case-sensitive.http://stackoverflow.com/questions/335805/how-can-i-synchronize-views-and-stored-procedures-between-sql-server-databases/335819#335819Comment by AR on How can I synchronize views and stored procedures between SQL Server databases?AR2008-12-03T00:03:06Z2008-12-03T00:03:06ZWe do already have the SPs, etc in source control. What I'm hoping for is something like replication directly from one DB to another. Could you elaborate on "Transactional Replication" more please?http://stackoverflow.com/questions/334850/c-how-to-replace-microsofts-smart-quotes-with-straight-quotation-marks/334985#334985Comment by AR on C# How to replace Microsoft's Smart Quotes with straight quotation marks??AR2008-12-03T00:00:26Z2008-12-03T00:00:26ZErm, I don't think this question has anything to do with CSV files... :)http://stackoverflow.com/questions/316009/c-best-way-to-get-folder-depth-for-a-given-path/316016#316016Comment by AR on C# Best way to get folder depth for a given path?AR2008-11-25T18:49:55Z2008-11-25T18:49:55ZThanks McWafflestix (great name!). I had considered this, but how to handle cases where the backslash isn't the path separator? Would that even be an issue?http://stackoverflow.com/questions/305223/jon-skeet-facts/313445#313445Comment by AR on Jon Skeet Facts?AR2008-11-25T18:44:55Z2008-11-25T18:44:55ZA classic paradox!!