User Nathen Silver - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:07:41Zhttp://stackoverflow.com/feeds/user/6136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1947817/match-string-to-enumeration/1947929#19479290Answer by Nathen Silver for Match string to enumeration?Nathen Silver2009-12-22T17:29:38Z2009-12-22T17:29:38Z<p>If you are populating your ComboBox from the DaysOfWeek enum:</p>
<pre><code>this.comboBox1.DataSource = Enum.GetValues(typeof(DayOfWeek));
</code></pre>
<p>Then you can get the enum value from the SelectedItem property of the ComboBox:</p>
<pre><code>DayOfWeek selected = (DayOfWeek)this.comboBox1.SelectedItem;
</code></pre>
http://stackoverflow.com/questions/1947645/net-c-switch-statement-string-compare-versus-enum-compare/1947702#19477020Answer by Nathen Silver for .NET C# switch statement string compare versus enum compareNathen Silver2009-12-22T16:58:49Z2009-12-22T16:58:49Z<p>Not sure if there is a performance difference when switching on a string value versus an enum.</p>
<p>One thing to consider is would you need the values used for the case statements elsewhere in your code. If so, then using an enum would make more sense as you have a singular definition of the values. Const strings could also be used.</p>
http://stackoverflow.com/questions/1594660/c-invalidoperationexception-and-cross-thread-operation/1594808#15948080Answer by Nathen Silver for C# InvalidOperationException AND Cross-thread operationNathen Silver2009-10-20T13:58:39Z2009-10-20T13:58:39Z<p>You can't access the host thread from the background worker's execution thread. You can use the ReportProgress method of the BackgroundWorker to send information to the host thread.</p>
<pre><code>private void button1_Click(object sender, EventArgs e)
{
try
{
var bw = new BackgroundWorker();
bw.DoWork += ExecuteOperations;
bw.ProgressChanged += bw_ProgressChanged;
bw.RunWorkerAsync();
}
catch (Exception ex)
{
tb_LogBox.AppendText(Environment.NewLine + " =@= " + ex.Message + " " + ex.Source);
}
}
private static void ExecuteOperations(object sender, DoWorkEventArgs e)
{
var FuncCall = new LogTimer();
string text = Environment.NewLine + FuncCall.DnT();
(sender as BackgroundWorker).ReportProgress(0, text);
}
private void bw_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
tb_LogBox.AppendText(e.UserState as string);
}
public class LogTimer
{
public string DnT()
{
const string datePat = @"d/MM/yyyy";
var dateTime = DateTime.Now;
return dateTime.ToString(datePat);
}
}
</code></pre>
http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss0Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T14:22:56Z2009-03-11T15:45:38Z
<p>I am receiving an Excel Worksheet file (ver 2.1) from one of our clients as part of a weekly date update. I am trying incorporate it into our automated update process, but I can't import the file in SSIS (or Sql Management Studio) as the oldest format I can process is Excel 3.0.</p>
<p>Is there an update that will add support for this older format? Or possibly a utility that I can have SSIS execute to convert the Excel worksheet into another format that SSIS can process?</p>
http://stackoverflow.com/questions/278902/using-statement-vs-try-finally/278920#2789200Answer by Nathen Silver for using statement vs try finallyNathen Silver2008-11-10T19:41:04Z2008-11-10T19:41:04Z<p>I think method 2 would be better.</p>
<ul>
<li>Simpler and more readable code in your properties.</li>
<li>Less error-prone since the locking code doesn't have to be re-written several times.</li>
</ul>
http://stackoverflow.com/questions/269390/how-to-validate-net-dialog-items-when-using-automatic-dialogresult/269415#2694150Answer by Nathen Silver for How to validate .NET dialog items when using automatic DialogResult?Nathen Silver2008-11-06T16:52:46Z2008-11-06T16:52:46Z<p>What I have done for this is to not set the DialogResult on the OK button, but put some code behind the button.</p>
<pre><code>private void OkButton_Clicked(object sender, EventArgs e)
{
this.DialogResult = ValueComboBox.SelectedIndex >= 0
? DialogResult.Ok
: DialogResult.None;
}
</code></pre>
http://stackoverflow.com/questions/206400/start-program-on-a-second-monitor/206428#2064281Answer by Nathen Silver for Start program on a second monitor?Nathen Silver2008-10-15T20:52:01Z2008-10-15T20:52:01Z<p>Not really the answer your question implies, but couldn't you store the window settings (size, position, Maximized State) when ever the application is closed, and then apply them at startup?</p>
http://stackoverflow.com/questions/205722/what-are-the-key-use-cases-for-use-of-virtualization-in-software-development/205774#2057741Answer by Nathen Silver for What are the key use cases for use of virtualization in software development?Nathen Silver2008-10-15T18:02:31Z2008-10-15T18:02:31Z<p>Reasons I use virtual machines for development.</p>
<ul>
<li>Isolate different development environments.</li>
<li>Testing environments.</li>
<li>Easy recovery due to computer hardware failure/upgrade.</li>
<li>Ability to "roll-back" changes to your development environment if something corrupts it.</li>
</ul>
<p>Currently, I am using VirtualBox for my VM setup. I used to use VirtualPC, but I REALLY hated not having any type of "snapshot" feature (like VMware and VirtualBox have).</p>
http://stackoverflow.com/questions/205689/class-with-single-method-best-approach/205709#2057092Answer by Nathen Silver for Class with single method -- best approach?Nathen Silver2008-10-15T17:46:37Z2008-10-15T17:46:37Z<p>I would say the Static Method format would be the better option. And I would make the class static as well, that way you wouldn't have to worry about accidentally creating an instance of the class.</p>
http://stackoverflow.com/questions/192885/how-do-i-stop-visual-studio-from-resizing-my-controls/193116#1931160Answer by Nathen Silver for How do I stop Visual Studio from resizing my controls?Nathen Silver2008-10-10T21:37:52Z2008-10-10T21:37:52Z<p>Usually when I have this problem, I end up using Panels and Labels (blank text) with the Dock and Padding properties on the controls to get the same visual look. Whether this would be practical for your form would depend on how it is laid out.</p>
<p>Not the best solution because of all the extra controls, but it gets the job done.</p>
http://stackoverflow.com/questions/133965/find-crlf-in-notepad/134021#1340212Answer by Nathen Silver for Find CRLF in Notepad++Nathen Silver2008-09-25T15:31:33Z2008-09-25T15:31:33Z<p>On the Replace dialog, you want to set the search mode to "Extended". Normal or Regular Expression modes wont work.</p>
<p>Then just find "\r\n" (or just \n for unix files or just \r for mac format files), and set the replace to whatever you want.</p>
http://stackoverflow.com/questions/102209/what-was-your-first-attempt-at-a-project-as-a-newbie/102542#1025422Answer by Nathen Silver for What was your first attempt at a project, as a newbie?Nathen Silver2008-09-19T14:59:27Z2008-09-19T14:59:27Z<pre><code>10 PRINT "I rule!"
20 GOTO 10
</code></pre>
<p>Seriously though, my first attempt at a project was for an application launcher for DOS applications (back in Windows 3.1 days). It worked, but the "editor" for the launcher was horrible to use, and the launcher itself was bad because it stayed in memory (the 640K of conventional memory was precious back then).</p>
<p>I eventually re-wrote it with a MUCH better editor and launcher interface. And it terminated itself before launching an App, and restarted when the app closed.</p>
<p>I learned a lot from that program. I finally understood the concept of recursion (which I never quite understood form class assignments), and just as quickly learned that I shouldn't be using it where I was! I was using so much memory that I was causing a "stack overflow error"!</p>
<p>And the reason for my project choice was because some people I knew at the time spend about $80 for the same thing.</p>
<p>Oh, and it was written in Turbo Pascal.</p>
http://stackoverflow.com/questions/102278/active-flag-or-not/102349#1023490Answer by Nathen Silver for `active' flag or not?Nathen Silver2008-09-19T14:37:56Z2008-09-19T14:37:56Z<p>We use both methods for dealing with inactive records. The method we use is dependent upon the situation. For records that are essentially lookup values, we use the Active bit field. This allows us to deactivate entries so they wont be used, but also allows us to maintain data integrity with relations.</p>
<p>We use the "move to separation table" method where the data is no longer needed and the data is not part of a relation.</p>
http://stackoverflow.com/questions/1661845/working-directory-structure-for-svn-visual-studio-repository/1661919#1661919Comment by Nathen Silver on Working directory structure for SVN Visual Studio repositoryNathen Silver2009-11-02T16:08:15Z2009-11-02T16:08:15ZThis is the same structure that we use. I'll have to look into the svn:externals property as I am not familiar with it.http://stackoverflow.com/questions/1104457/auto-initializing-c-lists/1104496#1104496Comment by Nathen Silver on Auto-Initializing C# ListsNathen Silver2009-07-09T15:24:24Z2009-07-09T15:24:24ZThis is good because the 2nd example can be used in C# 2.0.http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss/634739#634739Comment by Nathen Silver on Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T16:55:40Z2009-03-11T16:55:40ZI don't any knowledge on what the customer is running. Hopefully they will be able to send me the data in a different format.http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss/634743#634743Comment by Nathen Silver on Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T15:33:49Z2009-03-11T15:33:49ZWould that require installing Office onto the database server machine then (this is where the SSIS would be executing)?http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss/634739#634739Comment by Nathen Silver on Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T15:31:59Z2009-03-11T15:31:59ZI don't have access to Excel 2007. I've set you a sample file for you to satisfy your curiosity.http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss/634739#634739Comment by Nathen Silver on Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T15:03:14Z2009-03-11T15:03:14ZExcel 2003 opens it without any problem, and will still save in the format as well.http://stackoverflow.com/questions/634718/is-there-a-way-to-import-an-excel-worksheed-file-ver-2-1-into-sql-2005-using-ss/634739#634739Comment by Nathen Silver on Is there a way to import an Excel worksheed file (ver 2.1) into SQL 2005 using SSIS?Nathen Silver2009-03-11T14:38:30Z2009-03-11T14:38:30ZI believe that 2.1 format is from the original version of Excel released for Windows back in 1987.http://stackoverflow.com/questions/278902/using-statement-vs-try-finally/278908#278908Comment by Nathen Silver on using statement vs try finallyNathen Silver2008-11-10T19:42:29Z2008-11-10T19:42:29ZThe using model ensures that the object will always be disposed.