User Nazadus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:23:18Z http://stackoverflow.com/feeds/user/18217 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/774871/why-did-you-learn-c/1113495#1113495 0 Answer by Nazadus for Why did you learn C? Nazadus 2009-07-11T11:04:13Z 2009-10-07T21:38:01Z <p>I'm assuming you mean straight C, not C++?</p> <p>In all honesty.. my dad made me'ish. I was coding in BASIC when he went "ok, time to learn something better... here's a book and the F1 key... oh, by the way, I uninstalled BASIC... good luck" and walked away on to a plane (seriously, he flew out a lot then).</p> <p>I initially <em>hated</em> it and refused to use it... until I needed to get some stupid things done... lo and behold, it wasn't so bad. Funny thing now is, I work with people who code in C# and there have been times we needed to code in a non-managed environment (we were handed stuff from outsiders and didn't have a way around it). Had it not been for me knowing straight C, we likely would have been screwed.</p> <p>It's amazing how many people live and breathe with OOP and can't deal without it.</p> <p>oh, and if it matters.. my first baby was encryption... seriously starting with ROT+X (not just ROT13; still funny realizing that ROT is where I started... haha) and moved on from there. I liked hiding things... until several years later I realized I had nothing useful to hide.</p> http://stackoverflow.com/questions/1407509/how-do-you-let-others-trust-your-code-and-use-it/1407586#1407586 2 Answer by Nazadus for How do you let others trust your code and use it? Nazadus 2009-09-10T20:36:57Z 2009-09-10T20:36:57Z <ul> <li>Documentation explaining why you wrote it, when you started it, and it's intended function. Understanding where you're coming from will allow me to see future ideas as well as short coming you may not have seen.</li> <li>Technical documentation explaining the API and some examples on how to implement it. Ideally, keep your documentation in the format that follows the language. For example C# tends to use the XML syntax for defining items. This allows me to feel at home when I'm reading it.</li> <li>Clean code -- I can't stress this enough because far too many people write exceptionally ugly code. If you're code is ugly and/or unreadable, it may be easier for me to write it from scratch on my own. At the very least, make your code consistent. If I can't understand the code, I won't feel comfortable with it.</li> <li>Historical records explaining your changes. Seeing how the project has grown allows me to plan better. It also allows people to see how you learn from your mistakes and get a sense of your skill level. Compared to a forum, you can get a feel for how fast things get fixed and then placed in to a new release.</li> <li>Think long and hard on what kind of license you want there. Public domain? BSD? GPL? More restrictive?</li> <li>A note on whether or not you mind being contacted and if there are any restrictions in this. For example, would you mind updates? Me explaining security holes? Or perhaps you might use a forum or wiki?</li> <li>The ability for me to get your latest work and/or nightly builds. SVN or something. This is useful so I know if a bug I found is already fixed.</li> </ul> http://stackoverflow.com/questions/177678/sql-server-2005-connection-error-cannot-generate-sspi-context/1373562#1373562 0 Answer by Nazadus for SQL server 2005 Connection Error: Cannot generate SSPI context Nazadus 2009-09-03T13:59:40Z 2009-09-03T13:59:40Z <p>Short Answer: Have you recently change the user the service is running as? Was there a system crash?</p> <p>Long Answer: I know this is old, but I want to post my experience that I just had. We had spent hours Googling and found nothing that worked. Eventually we ran across a set of actions that could cause this:</p> <p>If you change the user that the Sql Server runs as (e.g. from Local System to a domain usr) and do certain updates and the server doesn't safely reboot -- you get this.</p> <p>So, we set things back to Local System and <em>bam</em> it worked. Swapped it to the domain user, no worky worky. Ok. Swapped it to Local System, rebooted, swapped it to domain user, rebooted, <em>bam</em> -- worky worky. All was good in our world. Later that morning it crapped out again... still working on that now but the priority is changing and I'm not sure we're going to continue work on this problem so I wanted to post something in case this happens to someone else.</p> <p>What caused ours was we did an update and, apparently, we learned that it's bad practice to let Sql Server run as Local System so we changed it to a domain user. We never rebooted, but restart the service. A month later, we do updates. We don't reboot. A month goes by and a power strip fries causing the server to have an unexpected shutdown. Yet another month later we find out problem because we rarely connect to this particular database (Interestingly, Sql Server 2008 worked fine... it was only 2005). Or... at least this is the best we've come across.</p> <p>Our admin guy doesn't like Vista and likes to blame everything on Vista (refuses to let us test Windows 7)... so he Googled "sspi vista" or something like (I know it had sspi and vista, but it might have had another one... in case you need to Google it was well) that and ran across an article that pretty explained our scenario after we had a meeting we all remember these pieces and placed this picture together.</p> http://stackoverflow.com/questions/1255635/how-do-i-add-to-a-specific-column-in-listview-item/1255767#1255767 0 Answer by Nazadus for How do I add to a specific column in Listview item? Nazadus 2009-08-10T16:06:30Z 2009-08-10T16:06:30Z <pre><code>ListViewItem item = new ListViewItem("foo"); item.SubItems.Add("foo2"); this.listView1.Items.Add(item); </code></pre> <p>ListViews don't support databinding and strongly typed naming. I would recommend considering using a DataGridView instead. Depending on what you need, it may save yourself some sanity points.</p> <p>Chernikov has it nicely implemented to make things a bit saner.</p> http://stackoverflow.com/questions/1234167/linq-not-properly-generating-view-by-not-allowing-nulls 0 Linq not properly generating view by not allowing nulls Nazadus 2009-08-05T15:58:51Z 2009-08-05T16:33:35Z <p>I have a view:</p> <pre><code>SELECT dbo.Theme.ThemeID, dbo.ThemeObject.XLocation, dbo.ThemeObject.YLocation, dbo.ThemeObject.ThemeElementTypeID AS ThemeObject_ThemeElementTypeID, dbo.ThemeImage.ThemeImageData FROM dbo.Theme INNER JOIN dbo.ThemeObject ON dbo.Theme.ThemeID = dbo.ThemeObject.ThemeID LEFT OUTER JOIN dbo.ThemeImage ON dbo.ThemeObject.ThemeObjectID = dbo.ThemeImage.ThemeObjectID WHERE (dbo.ThemeObject.IsDeleted = 0 OR dbo.ThemeObject.IsDeleted IS NULL) AND (dbo.ThemeImage.IsDeleted = 0 OR dbo.ThemeImage.IsDeleted IS NULL) AND (dbo.Theme.IsDeleted = 0) </code></pre> <p>My problem here is that not all ThemeObjects will have an image (thus the outer join). Linq doesn't recognize this and doesn't tell the generator to allow nulls in the column thus causing a crash if we don't manually set that column to allow nulls every time.</p> <p>This is the only view that seems to do this and I can't figure out why.</p> <p>Other than manually configuring the column in the designer after every recreation of the DAL (I sometimes delete all tables and views and re-drop them because of subtle changes that mysteriously don't find their way back in here when they occur... but getting that person to keep up with it is beyond my control) -- is there something I can adjust to either get it to generate it correctly or tell it to alter the output? Or some kind of override I'm not aware of that I can use?</p> http://stackoverflow.com/questions/1208127/creating-a-updater/1208234#1208234 1 Answer by Nazadus for Creating a updater Nazadus 2009-07-30T17:54:40Z 2009-07-30T17:54:40Z <p>You can wrap the application with a small loader program which will do a version check. If it's out of date, download the newer binaries and overwrite the old ones. If you want to maintain all version you might end up with:</p> <pre><code>c:\program files\mycompany\myapp\loader (the newer version will point to the latest directory) c:\program files\mycompany\myapp\v1.0 c:\program files\mycompany\myapp\v1.1 </code></pre> <p>If it's on a LAN, you might be able afford the bandwidth of just re-downloading the binaries on start up instead.</p> http://stackoverflow.com/questions/1165388/updating-an-application-without-closing-it/1165418#1165418 0 Answer by Nazadus for Updating an application without closing it Nazadus 2009-07-22T13:52:01Z 2009-07-22T13:52:01Z <p>I remember InTime having the ability to swap exe's live, however that had to be carefully coded. I know it's possible but as Jon Skeet said, you're likely better off not trying.</p> <p>Unless you're doing some kind of automation or something very serious... even then, you should consider a failover so you can shut one down / restart if needed.</p> http://stackoverflow.com/questions/1148746/visual-studio-stomping-on-linq-stored-procedures 0 Visual Studio stomping on Linq Stored Procedures Nazadus 2009-07-18T22:23:15Z 2009-07-18T22:43:08Z <p>I have several stored procedures which return a strongly typed result set. I've learned that Linq has its own method for handling that, which must be overwrote (or at least it seems that way).</p> <p>My problem is Visual Studio insists on forcibly recreating stored procedures sometimes. I want to disable this.</p> <p>Here is my manually modified file:</p> <pre><code> [Function(Name="dbo.spGetNote")] public ISingleResult&lt;Note&gt; spGetNote([Parameter(DbType="Int")] System.Nullable&lt;int&gt; noteId, [Parameter(DbType="Int")] System.Nullable&lt;int&gt; securityUserId) { IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), noteId, securityUserId); return ((ISingleResult&lt;Note&gt;)(result.ReturnValue)); } </code></pre> <p>Here is what it defaults it to:</p> <pre><code> [Function(Name="dbo.spGetNote")] public ISingleResult&lt;spGetNoteResult&gt; spGetNote([Parameter(DbType="Int")] System.Nullable&lt;int&gt; noteId, [Parameter(DbType="Int")] System.Nullable&lt;int&gt; securityUserId) { IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), noteId, securityUserId); return ((ISingleResult&lt;spGetNoteResult&gt;)(result.ReturnValue)); } </code></pre> <p>This is one of the smaller ones.</p> <p>There are some other areas it messes with, but those are fixable. It gets <em>real</em> old going back and adjusting this.</p> <p>What we've ended up doing is every stored procedure which returns its own strongly typed item is given it's own data context / class so that every time we update our DAL, it (Visual Studio) doesn't stomp on our custom changes.</p> <p>Is there something I can do to help alleviate this headache?</p> <p>What brought all this on is I'm going through cleaning up name spaces and I have found I can not change the namespace without Visual Studio ripping apart every single stored procedure in the project and I don't want to spend hours cleaning up that mess. Seemingly a global replace is not enough, as Visual Studio detects this and then says it can't find a conneciton string and <em>must</em> rebuild every single file involved.</p> http://stackoverflow.com/questions/1124753/for-vs-foreach-loop-in-c/1124936#1124936 4 Answer by Nazadus for For vs Foreach loop in C# Nazadus 2009-07-14T12:01:38Z 2009-07-14T14:17:49Z <p>An easy test to semi-validate. I did a small test, just to see. Here is the code:</p> <pre><code> static void Main(string[] args) { List&lt;int&gt; intList = new List&lt;int&gt;(); for (int i = 0; i &lt; 10000000; i++) { intList.Add(i); } DateTime timeStarted = DateTime.Now; for (int i = 0; i &lt; intList.Count; i++) { int foo = intList[i] * 2; if (foo % 2 == 0) { } } TimeSpan finished = DateTime.Now - timeStarted; Console.WriteLine(finished.TotalMilliseconds.ToString()); Console.Read(); } </code></pre> <p>And here is the foreach section:</p> <pre><code> foreach (int i in intList) { int foo = i * 2; if (foo % 2 == 0) { } } </code></pre> <p>When I replaced the for with a foreach -- the foreach was 20 milliseconds faster -- <em>consistently</em>. The for was 135-139ms while the foreach was 113-119ms. I swapped back and forth several times, making sure it wasn't some process that just kicked in.</p> <p>However, when I removed the foo and the if statement, the for was faster by 30 ms (foreach was 88ms and for was 59ms). They were both empty shells. I'm assuming the foreach actually passed a variable where as the for was just incrementing a variable. If I added</p> <pre><code>int foo = intList[i]; </code></pre> <p>Then the for become slow by about 30ms. I'm assuming this had to do with it creating foo and grabbing the variable in the array and assigning it to foo. If you just access intList[i] then you don't have that penalty.</p> <p>In all honesty.. I expected the foreach to be slightly slower in all circumstances, but not enough to matter in most applications.</p> <p>edit: here is the new code using Jons suggestions (134217728 is the biggest int you can have before System.OutOfMemory exception gets thrown):</p> <pre><code> static void Main(string[] args) { List&lt;int&gt; intList = new List&lt;int&gt;(); Console.WriteLine("Generating data."); for (int i = 0; i &lt; 134217728 ; i++) { intList.Add(i); } Console.Write("Calculating for loop:\t\t"); Stopwatch time = new Stopwatch(); time.Start(); for (int i = 0; i &lt; intList.Count; i++) { int foo = intList[i] * 2; if (foo % 2 == 0) { } } time.Stop(); Console.WriteLine(time.ElapsedMilliseconds.ToString() + "ms"); Console.Write("Calculating foreach loop:\t"); time.Reset(); time.Start(); foreach (int i in intList) { int foo = i * 2; if (foo % 2 == 0) { } } time.Stop(); Console.WriteLine(time.ElapsedMilliseconds.ToString() + "ms"); Console.Read(); } </code></pre> <p>And here are the results:</p> <p>Generating data. Calculating for loop: 2458ms Calculating foreach loop: 2005ms</p> <p>Swapping them around to see if it deals with the order of things yields the same results (nearly).</p> http://stackoverflow.com/questions/1121571/why-wont-my-progress-bar-work/1121712#1121712 2 Answer by Nazadus for Why won't my progress bar work? Nazadus 2009-07-13T19:57:57Z 2009-07-13T19:57:57Z <p>To add what Mark says, there are two ways to fix the problem. The hack way and the proper way.</p> <p>The proper way is to use threading, such as a BackgroundWorker. You will likely end up using control.BeginInvoke to handle updating the GUI thread.</p> <p>The hack way is to call Application.DoEvents in your loop. I call this the hack because it only partially works. For example, if you're doing a tight loop that has lots of little quick instructions then it will work fine'ish. If you're doing a loop in which your instructions take a while, this will not work (such as making a huge sql query to a database).</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc300429.aspx#S3" rel="nofollow" title="Here">Here</a> is a good link to learn about this particular example. I think WPF handles things only slightly different than regular WinForms.</p> http://stackoverflow.com/questions/1113405/password-character-not-working-on-system-windows-forms-textbox/1113411#1113411 0 Answer by Nazadus for Password Character not working on System.Windows.Forms.TextBox Nazadus 2009-07-11T10:23:16Z 2009-07-11T10:23:16Z <p>When using a maskedTextBox capture the key press and do something like:</p> <pre><code>if ( e.KeyChar == 13) { /* This is the enter key. Do stuff. */ } </code></pre> http://stackoverflow.com/questions/1106038/how-can-i-turn-these-linq-joins-into-left-outer-joins/1106114#1106114 0 Answer by Nazadus for How can I turn these LINQ joins into LEFT OUTER joins? Nazadus 2009-07-09T19:54:27Z 2009-07-09T19:54:27Z <p><a href="http://www.hookedonlinq.com/OuterJoinSample.ashx" rel="nofollow">Here</a> is a good example of how to do it. It's important to not forget about null values that these can bring back -- this bit me hard once.</p> http://stackoverflow.com/questions/1099559/how-do-you-convince-developers-to-pay-their-taxes/1099825#1099825 0 Answer by Nazadus for How do You convince developers to pay their "taxes"? Nazadus 2009-07-08T18:33:50Z 2009-07-08T18:33:50Z <p>As others have said it either needs to be in the requirements or your programming guidelines. What I consider a tax you may consider a feature and vice-versa. By making things subjective, it makes a programmers life really hard.</p> <p>When it comes down to a time crunch -- would you rather the developer fix potential bugs or "pay their taxes"? You may only have time for one and you should choose wisely and be able to defend your decision to your customer and your managers.</p> <p>If it already is part of either listedabove , then make it part of the testing process or perhaps have a checklist for each and every control/form/whatever. It may also be a good idea to have action items based on that programmers task where the last few items in their assignments (for each and every item assigned to them) are to make sure their taxes are paid. Time in the schedule should be specifically allotted for this so the programmer doesn't have to make a decision themselves (which will usually fallback to 'just works' as opposed to 'just be pretty but has more bugs'). This way time isn't an excuse.</p> http://stackoverflow.com/questions/1094778/volunteer-for-a-potential-employer/1094816#1094816 0 Answer by Nazadus for Volunteer for a potential employer? Nazadus 2009-07-07T20:55:50Z 2009-07-07T20:55:50Z <p>I wouldn't recommend it unless they can offer you some form of compensation (doesn't have to be money) such as paid-for books or something of the like.</p> <p>This also sets you up to being taken advantage of. From there on out you will likely not have the same bargaining chip. They either want you or they don't.</p> <p>If you want to volunteer with something to learn it, get involved with an open source project or start something yourself. Use <em>that</em> project to point to other managers and do a show-and-tell type thing. Alternatively, find a non-profit entity which has a greater chance at offering other types of perks.</p> http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1089363#1089363 65 Answer by Nazadus for What programming practice that you once liked have you since changed your mind about? Nazadus 2009-07-06T21:48:16Z 2009-07-06T21:48:16Z <p>Hungarian notation (both Forms and Systems). I used to prefix everything. strSomeString or txtFoo. Now I use someString and textBoxFoo. It's far more readable and easier for someone new to come along and pick up. As an added bonus, it's trivial to keep it consistant -- camelCase the control and append a useful/descriptive name. Forms Hungarian has the drawback of not always being consistent and Systems Hungarian doesn't really gain you much. Chunking all your variables together isn't really that useful -- especially with modern IDE's.</p> http://stackoverflow.com/questions/1088202/stored-procedure-and-xml/1088282#1088282 1 Answer by Nazadus for Stored Procedure and XML Nazadus 2009-07-06T17:38:32Z 2009-07-06T19:50:05Z <p>If you're doing some kind of looping I've found doing it like this is helpful:</p> <pre><code>XElement entityListElement = new XElement("values"); XElement entityElement = new XElement( "value", new XElement("value1", "15")); entityListElement.Add(entityElement); </code></pre> <p>And then pass in entityListElement.ToString().</p> <p>This also makes it (arguably) easier to make changes and has .NET do the XML generation for you.</p> http://stackoverflow.com/questions/1056233/what-best-describes-clean-code/1056260#1056260 3 Answer by Nazadus for What best describes clean code? Nazadus 2009-06-29T01:47:54Z 2009-06-29T14:00:33Z <p>For me -- it's how little I have to store in my head.</p> <p>A sanely named variable means I don't have to store extra information about it. Take, for example, a varaible named obj. In C# one might assume it's of type object however you may later find it's really some temporary holder for a List. You later find out that it's a list of points that plot where textBoxes should be placed. So now you have a couple bits of information that you must go out of your way to remember as opposed to naming it: testBoxLocationList or something like that.</p> <p>Another example, in C#, would be the using statement. If you use a StreamWriter and wrap that in a using, you now do not have to store in memory where it gets disposed and/or where the stream gets closed.</p> <p>Consistency is also key. Take, for example, forms Hungarian notation. a TextBox could be called 'txtBoxFoo', 'txtFoo', 'tFoo', 'textBFoo', etc. I've seen code where within the span of 2 hours the person used three of the above listed within a single class file. If you are consistent then others can "feel" your flow and then begin to make sense of your code easier.</p> <p>The reason some say it is like a poem because poems are supposed to be fluid and easy to read and follow in to one another, usually.</p> http://stackoverflow.com/questions/1056369/downloadfile-from-the-internet/1056373#1056373 0 Answer by Nazadus for DownloadFile from the Internet? Nazadus 2009-06-29T02:51:17Z 2009-06-29T02:51:17Z <p>Does the site require a login and it's really redirecting you?</p> <p>I've had one before that required me faking my browsing movements (and storing cookies and such) before it would allow me to download a file I needed.</p> http://stackoverflow.com/questions/1056324/calling-console-writelineex-message-to-prevent-warning-message/1056351#1056351 0 Answer by Nazadus for Calling Console.WriteLine(ex.Message) to prevent warning message Nazadus 2009-06-29T02:32:19Z 2009-06-29T02:32:19Z <p>In C# there is cost which is not insignificant when catching an exception. Test it for yourself, write something like this:</p> <ul> <li>Create a list of strings</li> <li>In this list, make 25% of them a number and the rest a single letter.</li> <li>Run a for loop going through each list and doing a int foo = (int)myList[0] but wrap it in try/catch.</li> </ul> <p>Bump up the rate to 50%, then 75%, then 100%. The 100% will be slightly slower, but not by much.</p> <p>In this particular example, the real world answer would be to use Int32.TryParse instead, but this shows you the penalty.</p> http://stackoverflow.com/questions/322033/recommendations-for-a-programmable-drivers-license-scanner/981271#981271 0 Answer by Nazadus for Recommendations for a programmable drivers license scanner? Nazadus 2009-06-11T14:01:39Z 2009-06-11T14:01:39Z <p>I wrote a parser in C#, and while it's "ok" it's still far from perfect.</p> <p>I can't seem to find it but a Wikipedia entry used to exist that has the patterns to look for (trust me, parsing this yourself is a pain without any help).</p> <p>Be aware that different states have different laws for what you can and can't use government issued ID's for. Texas has one.</p> <p>We use a dell card reader and it inputs it <em>exactly</em> as though it were being typed through a keyboard, followed by the enter key. This made programming /very/ easy because then you just send focus to the text box and wait for enter. The main keys which break it in to chunks is the carrot '^'. Break that and you'll have your basic chunks.</p> http://stackoverflow.com/questions/950294/how-can-i-get-rid-of-jerkiness-in-winforms-scrolling-animation/978229#978229 1 Answer by Nazadus for How can I get rid of jerkiness in WinForms scrolling animation? Nazadus 2009-06-10T21:23:28Z 2009-06-10T21:23:28Z <p>I had the same problem before and found it to be a video card issue. Are you sure your video card can handle it?</p> http://stackoverflow.com/questions/923184/sqlmetal-scripting-and-capitalization 0 SqlMetal scripting and capitalization Nazadus 2009-05-28T21:04:22Z 2009-06-04T11:19:52Z <p>When I run SqlMetal it generates all views and functions with a capital letter. Is their a way to make it generate it in whatever case is in the database?</p> <p>When I use the UI to build the DBML and CS file it handles this properly, however when I script it SqlMetal seems to make them upper case.</p> <p>This isn't a huge deal however it makes me wonder if their are other subtle changes I don't know about or if I'm simply doing something stupid.</p> <p>Here is what I'm doing, if it helps:</p> <pre><code>SqlMetal.exe /conn:"Data Source=server1\developer2008;Initial Catalog=Dingo;Integrated Security=true" /views /functions /sprocs /pluralize /language:csharp /namespace:"Foo_Api" /context:"DataClassesFooDataContext" /dbml:"foo.dbml" SqlMetal.exe /code:"foo.designer.cs" "foo.dbml" </code></pre> http://stackoverflow.com/questions/911175/linq-table-enumeration-with-column-enumeration 0 LINQ table enumeration with column enumeration Nazadus 2009-05-26T15:04:23Z 2009-05-26T16:14:57Z <p>How do you get a list of all the tables and use that list to enumerate the columns? I've found posts that describe one or the other, but not both.</p> <p>My net-result is I want to generate a static class which contains names of all the columns in each tables so I could, for example, do:</p> <pre><code>comboBoxFoo.DisplayMember = SomeNamespace.SomeTable.SomeDisplayColumnName; comboBoxFoo.ValueMember = SomeNamespace.SomeTable.SomeIDColumnName; comboBoxFoo.DataSource = dingo; </code></pre> <p>I'm currently using <a href="http://stackoverflow.com/questions/360990/how-would-i-get-the-column-names-from-a-model-linq/363746#363746">this</a> method which while it works, it means I have to manually create my tables in a list.</p> <p>I have a seperate command line project which generates the SomeNameSpace.SomeTable class manually and I add the generated class file in to the project.</p> <p>Ideally, if I could loop through via a foreach of tables and do something like this:</p> <pre><code>foreach(var table in someTableNumerationMethodForAGivenContext()) { var columnList = databaseContext.ColumnNames&lt;someTable&gt;(); foreach(var columnData in columnList) { DoJazz(columnData.Name); } } </code></pre> <p>Is there a better way to do this other than manually have to do the databaseContext.ColumnNames() ?</p> <p>Edit 1: We're using LinqToSQL. Moving to ADO.NET also an option on the table, but at the moment we have no pressing need to.</p> <p>Edit 2: I know L2S does databinding but what I'm after is getting a list of column names as strings from a table. L2S doesn't offer this or it's not apparent on my side. I'd like to do something like: SomeTable.SomeColumn.ToString() or something. SubSonic has this.</p> <p>Final: Thanks everyone. all are very good answers and lead me to the answer. You guys rock!</p> http://stackoverflow.com/questions/760664/interop-with-office-2003-and-2007 0 Interop with Office 2003 and 2007 Nazadus 2009-04-17T14:41:53Z 2009-05-15T14:26:33Z <p>I would like to have my application function with both version of Office (as well as Outlook within those). I understand I can't install them <em>full</em> in parallel (Outlook being the fight really).</p> <p>In specific, our application opens up Outlook, fills some information and loads up the contacts (so they can select who to send it to), and some other basics. If it matters, the OS varies from Windows SP, Server 2003, Server 2008, and Vista.</p> <p>We're considering going to Office 2007 (going to <em>have</em> to sooner or later whether we like it or not, so I'm preparing sooner rather than later) and if I install Office 2007 I find I can't use the older interop dll (app won't compile). I'm left to assume that if I use the 2007 interop that 2003 won't work -- which is what we're on now.</p> <p>Other apps do this but my Google foo fails me and my StackOverflow foo is about the same.</p> <p>Any thoughts on how to get Visual Studio to allow me to code for both?</p> <p>edit: I actually forgot about this question however I have the answer.</p> <p>The answer was the cause from something else. The Interop worked just fine however another bit of code referenced another version specific reference (of Excel, to be specific) instead of Interop. Having never worked with Interop before, I just assumed it didn't matter and they were one and the same. Turns out I was wrong. Once we removed all the referenced and re-added back normal Microsoft.Office.Interop references, it all Just Worked (TM).</p> http://stackoverflow.com/questions/760664/interop-with-office-2003-and-2007/869009#869009 1 Answer by Nazadus for Interop with Office 2003 and 2007 Nazadus 2009-05-15T14:26:33Z 2009-05-15T14:26:33Z <p>Err, so the question can close I'll add the answer here:</p> <p>The answer was the cause from something else. The Interop worked just fine however another bit of code referenced another version specific reference (of Excel, to be specific) instead of Interop. Having never worked with Interop before, I just assumed it didn't matter and they were one and the same. Turns out I was wrong. Once we removed all the referenced and re-added back normal Microsoft.Office.Interop references, it all Just Worked (TM).</p> http://stackoverflow.com/questions/763450/is-it-ok-to-be-able-to-paste-text-in-a-password-box/763560#763560 0 Answer by Nazadus for Is it OK to be able to paste text in a password box? Nazadus 2009-04-18T14:56:07Z 2009-04-18T14:56:07Z <p>Pasting can only be bad if it causes your database query to fail. Outside of that, everyone else has sane reasons for allowing it. Remote Desktop pisses me off when I can't paste a password because I use KeePass to manage complex passwords. What I'm left doing is leaving the password in plain text on the screen while I type it.</p> http://stackoverflow.com/questions/762545/which-subversion-server-type-is-best/762569#762569 2 Answer by Nazadus for Which subversion server type is best? Nazadus 2009-04-17T23:37:34Z 2009-04-17T23:37:34Z <p>I've always used XInetD and HTTP. HTTP also had WebDAV going on, so I could browse the source online if I wanted (or you can require a VPN if you wanted encryption and a dark-net type thing).</p> <p>It really depends on what restrictions (if any) you're under.</p> <p>Is it only going to be on a LAN? Will you need access outside of your LAN? If so, will you have a VPN? Do you have a static IP address and are you allowed to forward ports?</p> <p>If you aren't under any restriction, I would then suggest going with xinetd (if you have xientd installed, daemon if you don't) and then (if you need remote access) use http-based server if you need remote access (you can also encrypt using HTTPS if you don't want plain text un/pw sent across).</p> <p>Most other options are more effort with less benefit.</p> <p>It's an SVN Repo -- you can always pack your bags and change things if you don't like it.</p> http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/762086#762086 0 Answer by Nazadus for Do you say No to C# Regions? Nazadus 2009-04-17T20:28:22Z 2009-04-17T20:34:42Z <p>I use them to keep Stylecop happy and to make it easier to find code.</p> <p>I'm still trying to define a sane style for some things.. for example, should all public classes be in their own file? I dunno. I'm trying all sorts of things to find out what looks the cleanest.</p> <p>I should also note that I like to group certain things together at times. For example, I may have in my Methods region sections for overrides, utilities, etc. For event handlers I'll try to group like things together such as menu items or things that there may be a lot of similar code you may want to get out of your way. Otherwise, everything is assume alphabetical -- as often as people.</p> <p>Here is the code snippet I apply to all forms:</p> <pre><code>#region Constant Fields #endregion Constant Fields #region Fields #endregion Fields #region Constructors #endregion Constructors #region Deconstructors #endregion Deconstructors #region Delegates #endregion Delegates #region Events #endregion Events #region Interfaces #endregion Interfaces #region Properties #endregion Properties #region Indexers #endregion Indexers #region Methods /* * Order: (Static comes first, then instance in each section (e.g. public static, public instance, private static, private instance) * public, internal, protected-internal, protected, private */ #endregion Methods #region Structs #endregion Structs #region Classes #endregion Classes </code></pre> http://stackoverflow.com/questions/350454/c-interop-excel-process-not-exiting-after-adding-new-worksheet-to-existing-file/650727#650727 0 Answer by Nazadus for C# interop: excel process not exiting after adding new worksheet to existing file Nazadus 2009-03-16T14:44:49Z 2009-03-16T14:57:32Z <p>Andrew, here is the code I've found that works. I thought I post post it here for others who come across:</p> <pre><code>namespace WindowHandler { using System; using System.Text; using System.Collections; using System.Runtime.InteropServices; /// &lt;summary&gt; /// Window class for handling window stuff. /// This is really a hack and taken from Code Project and mutilated to this small thing. /// &lt;/summary&gt; public class Window { /// &lt;summary&gt; /// Win32 API import for getting the process Id. /// The out param is the param we are after. I have no idea what the return value is. /// &lt;/summary&gt; [DllImport("user32.dll")] private static extern IntPtr GetWindowThreadProcessId(IntPtr hWnd, out IntPtr ProcessId); /// &lt;summary&gt; /// Gets a Window's process Id. /// &lt;/summary&gt; /// &lt;param name="hWnd"&gt;Handle Id.&lt;/param&gt; /// &lt;returns&gt;ID of the process.&lt;/returns&gt; public static IntPtr GetWindowThreadProcessId(IntPtr hWnd) { IntPtr processId; IntPtr returnResult = GetWindowThreadProcessId(hWnd, out processId); return processId; } } } </code></pre> http://stackoverflow.com/questions/401919/is-hard-coding-literals-ever-acceptable/402106#402106 0 Answer by Nazadus for Is hard-coding literals ever acceptable? Nazadus 2008-12-31T02:16:42Z 2008-12-31T02:16:42Z <p>I once had a boss who refused to not hardcode something because in his mind it gave him full control over the software <em>and</em> the items related to the software. Problem was, when the hardware died that ran the software the server got renamed... meaning he had to find his code. That took a while. I simply found a hex editor and hacked around it instead of waiting.</p> http://stackoverflow.com/questions/1529093/can-i-reset-autoincrement-field-in-mysql/1529110#1529110 Comment by Nazadus on can I reset auto_increment field in mySql? Nazadus 2009-10-07T02:17:10Z 2009-10-07T02:17:10Z In addition, truncate will be <i>significantly</i> faster than a delete. http://stackoverflow.com/questions/1479234/crypto-hashes-and-password-questions-total-noob/1479246#1479246 Comment by Nazadus on Crypto, hashes and password questions, total noob? Nazadus 2009-09-25T19:56:58Z 2009-09-25T19:56:58Z Actually, there are hash dictionaries which store common passwords and such. So given the salt, a dictionary, and a poorly chosen password -- you can acquire that password. This is why it's good to use a salt and enforce password constraints (letters, numbers, etc). http://stackoverflow.com/questions/1407185/which-university-has-the-most-respected-computer-science-degree Comment by Nazadus on Which University has the most respected Computer Science degree? Nazadus 2009-09-10T20:39:06Z 2009-09-10T20:39:06Z How is a CS degree <i>not</i> about programming? http://stackoverflow.com/questions/1404402/who-runs-subsonicproject-com/1406895#1406895 Comment by Nazadus on who runs subsonicproject.com? Nazadus 2009-09-10T18:29:45Z 2009-09-10T18:29:45Z I'm glad you put a Wiki up, the video tut's sucked only because they weren't searchable. I was once looking for the video where you talked about a Visual Studio theme... never could find it again, I gave up. Same thing with other items. I'm also the guy who wrote the WinForms thing (last year?) and never could get communication from you about updating it or pretty much anything. http://stackoverflow.com/questions/453161/best-pratice-to-save-application-settings-in-windows-application/453173#453173 Comment by Nazadus on Best pratice to save application settings in Windows application Nazadus 2009-09-10T14:02:46Z 2009-09-10T14:02:46Z @thenonhacker: Or use Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) http://stackoverflow.com/questions/42200/managing-linq-to-sql-dbml-model-complexity/326391#326391 Comment by Nazadus on Managing LINQ to SQL .dbml model complexity Nazadus 2009-08-11T14:57:18Z 2009-08-11T14:57:18Z Blog seems down. http://stackoverflow.com/questions/1255635/how-do-i-add-to-a-specific-column-in-listview-item/1255733#1255733 Comment by Nazadus on How do I add to a specific column in Listview item? Nazadus 2009-08-10T16:07:19Z 2009-08-10T16:07:19Z Wow, very nice implementation. +1 http://stackoverflow.com/questions/223656/untar-ungz-gz-tar-how-do-you-remember-all-the-useful-options/223681#223681 Comment by Nazadus on Untar, ungz, gz, tar - how do you remember all the useful options? Nazadus 2009-08-08T15:03:15Z 2009-08-08T15:03:15Z Jeremy, the real problem is you may not always know the proper vocabulary. As such, it's easy to get confused and find similar options and have them not work. Then, you have to place (some) of them in proper order. This is non-trivial for someone migrating away from Windows. Even more-so if they didn't know scripting in Windows. http://stackoverflow.com/questions/1234167/linq-not-properly-generating-view-by-not-allowing-nulls Comment by Nazadus on Linq not properly generating view by not allowing nulls Nazadus 2009-08-05T21:23:27Z 2009-08-05T21:23:27Z That is the primary key for the ThemeObject table. We are consistant in the name scheme (a very big push on my party): &lt;tablename&gt;ID are always the primary keys. http://stackoverflow.com/questions/791761/xml-for-configuration-files-why/791777#791777 Comment by Nazadus on XML for configuration files, why? Nazadus 2009-08-03T16:58:17Z 2009-08-03T16:58:17Z avakar, you're idea works for simple settings but I would argue that XML is better because it's more expandable. Say, for example, you may have a list of objects with the same name (say, a list of directories) -- would you simply just call the same value many times over? append a number? What I'm getting at is that XML is a standard that can be followed easily. http://stackoverflow.com/questions/1209056/a-way-to-prevent-windows-update-from-restarting-the-computer Comment by Nazadus on A way to prevent Windows Update from restarting the computer? Nazadus 2009-07-30T20:44:46Z 2009-07-30T20:44:46Z This would be a good candidate question for the Beta Super User area. http://stackoverflow.com/questions/1208127/creating-a-updater/1208190#1208190 Comment by Nazadus on Creating a updater Nazadus 2009-07-30T17:55:26Z 2009-07-30T17:55:26Z roboUK mentioned that ClickOnce isn't an option. http://stackoverflow.com/questions/1190603/assigning-int-x-abc/1190621#1190621 Comment by Nazadus on Assigning int x = 'abc' ; Nazadus 2009-07-27T21:42:49Z 2009-07-27T21:42:49Z +1 for knowing if it was legal in ISO standards. http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/546383#546383 Comment by Nazadus on Biggest performance improvement you've had with the smallest change? Nazadus 2009-07-27T15:43:11Z 2009-07-27T15:43:11Z @Jacbon: SuspendLayout() will stop it from painting. ResumeLayout() will cause it to start again. On some controls, however, this doesn't help much. Telerik controls were <i>horrid</i> in certain WinForm circumstances like this. 45+ seconds to load a form when with normal .NET controls it loaded in 5 seconds. http://stackoverflow.com/questions/1161431/c-is-there-an-optional-keyword-or-alike-in-c/1161460#1161460 Comment by Nazadus on C#: Is there an "Optional" keyword or alike in C#? Nazadus 2009-07-21T20:24:04Z 2009-07-21T20:24:04Z You are missing a &quot; on the first FooBar(123&quot;).