User overslacked - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T16:41:46Zhttp://stackoverflow.com/feeds/user/58158http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848617/is-it-possible-to-make-a-node-invisible-in-a-winforms-treeview/1849097#18490973Answer by overslacked for Is it possible to make a node invisible in a Winforms TreeView?overslacked2009-12-04T19:23:24Z2009-12-04T19:23:24Z<p>No; and if you think about it, wouldn't you expect all children to be hidden if the parent node was hidden?</p>
<p>What I would do is maintain the list outside of the view, and copy in items starting at a specified node.</p>
http://stackoverflow.com/questions/1835184/would-you-bring-up-morally-gray-projects-during-an-interview-e-g-porn-or-torre/1835214#18352140Answer by overslacked for Would you bring up morally gray projects during an interview? [e.g. porn or torrents]overslacked2009-12-02T19:22:53Z2009-12-02T19:22:53Z<p>I would avoid mentioning anything illegal, certainly.</p>
<p>I think you should be able to talk about job history in terms of skills learned (security, traffic/load balancing, etc) without talking about Joe's Porn & Virus Warez Shack specifically.</p>
http://stackoverflow.com/questions/1801427/what-language-and-possible-web-application-framework-should-i-use-to-develop-a/1801484#18014842Answer by overslacked for What language and (possible) web application framework should I use to develop a high traffic web application?overslacked2009-11-26T04:07:19Z2009-11-26T04:07:19Z<p>Although I honestly haven't used it much, when I read about what's being done with Python, it seems to have the kind of advantages you're looking for - robust extensibility, scalability, and a sense of cohesiveness that I find to be missing from other languages (PHP in particular).</p>
<p>I would consider Python/Django, if you haven't looked into it.</p>
http://stackoverflow.com/questions/1732155/question-about-the-garbage-collector-in-net-memory-leak/1732276#17322763Answer by overslacked for Question about the garbage collector in .NET (memory leak)overslacked2009-11-13T22:23:07Z2009-11-13T22:23:07Z<p>I'm adding this as an answer rather than a comment on the question, but this follows-up a question asked by the OP in a comment:
<a href="http://msdn.microsoft.com/en-us/library/yh598w02%28VS.80%29.aspx" rel="nofollow">using</a> statement on MSDN.
<a href="http://msdn.microsoft.com/en-us/library/system.idisposable.aspx" rel="nofollow">IDisposable</a> interface on MSDN.</p>
<p>Here is the crux of the issue: what you're used to as far as object destructors is gone. Everything you've been told about how to code correctly is screaming up from your subconscious, saying this can't be true, and if it is true, it's wrong and terrible. It's very different; it's hard to remember how much I really despised it at first (I was a proud C++ developer).</p>
<p>I personally promise you: it's going to be OK!</p>
<p>Here's another good thing to read:
<a href="http://msdn.microsoft.com/en-us/library/ms177197.aspx" rel="nofollow">Destructors and Finalizers in Visual C++</a>.</p>
http://stackoverflow.com/questions/1689200/where-do-i-find-the-schema-for-net-v2-0-50727-sp2-machine-config-file-on-xp/1689296#16892960Answer by overslacked for Where do I find the schema for .NET v2.0.50727 (SP2) machine.config file on XP?overslacked2009-11-06T18:04:00Z2009-11-06T18:04:00Z<p>MSDN is a good place to start:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/1fk1t1t0%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/1fk1t1t0(VS.80).aspx</a></p>
http://stackoverflow.com/questions/1521157/drawing-vertically-stacked-text-in-winforms/1521176#15211761Answer by overslacked for Drawing vertically stacked text in WinFormsoverslacked2009-10-05T16:49:37Z2009-10-05T16:49:37Z<p>If you're already using the right bounding box, I'd write a function that simply injected '\n's.</p>
http://stackoverflow.com/questions/1481619/printing-text-with-different-font-sizes-on-the-same-page/1481632#14816320Answer by overslacked for Printing text with different font sizes on the same pageoverslacked2009-09-26T16:54:40Z2009-09-26T16:54:40Z<p>Create a class with members for anything unique to the particular item, such as Text, Font Size, and Location.</p>
<p>Then create instances of this class and add them to a new List<YourClassType>;</p>
<p>Finally, iterate over the list and draw the items.</p>
http://stackoverflow.com/questions/1447601/is-resharpers-recommendation-to-make-my-private-method-static-a-good-recommendat/1447609#14476094Answer by overslacked for Is Resharper's recommendation to make my private method static a good recommendation?overslacked2009-09-19T03:04:39Z2009-09-19T03:04:39Z<p>I think so; seeing that a method is static is a clear indication that the method should <em>not</em> be interacting with any instance members.</p>
<p>Imagine debugging a non-static method and realizing the instance isn't being touched. Instant smell, and if there isn't a comment explaining what the function does, you could be distracted from the real problem.</p>
http://stackoverflow.com/questions/1434160/what-do-you-do-in-sql-server-to-create-or-alter/1434182#14341821Answer by overslacked for What do you do in SQL Server to CREATE OR ALTER?overslacked2009-09-16T16:50:38Z2009-09-16T16:50:38Z<p>I'll use either depending on context: my initial-build or major refactoring scripts will use check/drop/create, pure maintenance scripts use alter.</p>
http://stackoverflow.com/questions/1420027/looping-rows-in-sql-server/1420042#14200421Answer by overslacked for Looping Rows in SQL Serveroverslacked2009-09-14T06:54:56Z2009-09-14T06:54:56Z<p>Since this sounds like homework I'm going to tell you how to go about doing it instead of giving you code that does it:</p>
<p>In a WHILE loop, use SUBSTRING to get and print the character. To find the length of the string, use the LEN function.</p>
http://stackoverflow.com/questions/1369083/how-to-determine-which-classes-are-referenced-in-a-compiled-net-or-java-applicat/1369183#13691831Answer by overslacked for How to determine which classes are referenced in a compiled .Net or Java application?overslacked2009-09-02T17:50:31Z2009-09-02T17:50:31Z<p>For .NET: it looks like there's <a href="http://msdn.microsoft.com/en-us/magazine/cc163641.aspx" rel="nofollow">an article on MSDN</a> that should help you get started. For what it's worth, for .NET the magic Google words are ".net assembly references".</p>
http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/663006#66300616Answer by overslacked for Most useful free .NET libraries?overslacked2009-03-19T16:45:44Z2009-08-30T12:22:55Z<p>In-process database servers make my life easier.</p>
<p><a href="http://www.sqlite.org/" rel="nofollow">SQLite</a></p>
<p><a href="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx" rel="nofollow">SQL Server Compact Edition</a></p>
http://stackoverflow.com/questions/1285821/rendering-of-a-form-in-winforms-and-asp-net-dynamically/1285833#12858331Answer by overslacked for Rendering of a form in winforms and asp.net dynamicallyoverslacked2009-08-17T01:33:48Z2009-08-17T01:33:48Z<p>I've done exactly this a couple of times and my suggestion is to realize right away that you won't be able to single-source the interface. The Web and Forms namespaces are just too dissimilar.</p>
<p>However, you can go quite a long way if your data/business layers are abstract enough to handle being used from both interfaces. In fact if you don't already have a good layers in place this is the perfect time to work on it.</p>
<p>Another thing to think about - if it's possible to serialize your forms after they've been constructed (cache them as an xml file or whatever), you may see that it's much faster to do that than construct them each time. I got a lot of mileage out of that, caching "template" forms in ASP.NET sped things up nicely.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1272809/best-way-to-store-2-3-records-windows-application/1273065#12730652Answer by overslacked for best way to store 2/3 records [Windows Application]overslacked2009-08-13T16:22:39Z2009-08-13T16:22:39Z<p>I'd recommend creating a custom class to hold the data, and using a generic List to manage the collection. Serialize/deserialize that to/from XML and voila - storage <em>and</em> strongly typed data.</p>
http://stackoverflow.com/questions/1204599/noticeable-increase-in-programming-ability-or-understanding/1204685#12046852Answer by overslacked for Noticeable increase in programming ability or understandingoverslacked2009-07-30T05:54:16Z2009-07-30T05:54:16Z<p>The most memorable time it happened was in regards to polymorphism. I was trying to track down a problem and I just hadn't grasped the difference between overriding and hiding ancestor methods (I was very, very green) ... anyhow, the reason it's memorable is that I actually hooted a little cheer for realizing how everything was working (or not working, in this case) ... sadly this was in the middle of a meeting that I wasn't paying any attention to.</p>
http://stackoverflow.com/questions/1197011/what-rad-environment-or-tool-would-you-use-for-a-small-database-driven-app/1197056#11970560Answer by overslacked for What RAD environment or tool would you use for a small database-driven app?overslacked2009-07-28T22:15:34Z2009-07-28T22:15:34Z<p>I don't normally recommend Access, but you truly if have minimal interface requirements (some arithmetic), are familiar with it, and already have it installed, I'd use it.</p>
<p>Otherwise, I'd go with SQL Server Express with a .NET front end, because that's what I'm used to and most productive with. Although, if this could be put on the intranet, give ASP.NET or even WPF a look. This is the kind of thing they're really good for, once you know them.</p>
http://stackoverflow.com/questions/1185109/favorite-regex-tips-and-tricks/1185139#11851390Answer by overslacked for Favorite Regex tips and tricksoverslacked2009-07-26T18:01:27Z2009-07-26T18:01:27Z<p>This isn't a code tip exactly, but I love testing regular expressions with the <a href="http://www.ninjavspenguin.com/regexp.html" rel="nofollow">Javascript Regexp Tester and Cheat Sheet</a>. 5 test cases let me quickly set up edge cases and try different ideas without having to lose changes - very useful.</p>
http://stackoverflow.com/questions/1173973/passing-variables-into-another-form/1174022#11740221Answer by overslacked for passing variables into another formoverslacked2009-07-23T19:41:53Z2009-07-23T19:48:22Z<p>The easiest way is to probably add a new method, lets call it ShowWithDetails:</p>
<pre><code> public void ShowWithDetails(double Counter, double Narrow, double Broad)
{
CounterLabel.Text = Counter.ToString();
NarrowLabel.Text = Narrow.ToString();
BroadLabel.Text = Broad.ToString();
ShowDialog();
}
</code></pre>
http://stackoverflow.com/questions/1157090/net-criticalfinalizerobject-what-does-it-really-do/1157195#11571951Answer by overslacked for (.net) CriticalFinalizerObject - What does it really do?overslacked2009-07-21T03:43:53Z2009-07-21T03:43:53Z<p>If you <strong>really</strong> need code to run when when your program is Ctrl+Alt+Del'd, I don't think there's any other way than to have a separate program that monitors the first's state. If you really need that much architecture, I think you'd want to be using a service and some client apps, or a pair or services.</p>
<p>This is assuming, though, that you've already looked into the Application events. If you haven't, check out <a href="http://www.c-sharpcorner.com/UploadFile/mamta%5Fm/WindowsFormsLifecycle11182008235227PM/WindowsFormsLifecycle.aspx" rel="nofollow">this overview</a>.</p>
<p><strong>EDIT</strong> Better than that overview, probably, is the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.applicationexit.aspx" rel="nofollow">ApplicationExit event</a>.</p>
http://stackoverflow.com/questions/1156886/what-are-the-advantages-disadvantages-of-using-both-vb-net-and-c-in-the-workplac/1156928#11569284Answer by overslacked for What Are The Advantages/Disadvantages of Using Both VB.Net and C# In The Workplace?overslacked2009-07-21T01:52:16Z2009-07-21T02:33:04Z<p>This is personal experience mixed with workplace lore:</p>
<ol>
<li>VB.NET is capable of being little more nimble, compared to C#, because there isn't a standards committee (except for any that may exist at Microsoft).</li>
<li>Most of the Google-able code hackery out there is done in C#, and most of the best resource books provide code samples in C# only.</li>
<li>VB.NET is tainted with a history of VB being accessible to even the most incapable of developers. This is unfair, imho, because VB.NET is much more a "real" language. But the taint isn't going to be washed away any time soon, and "real" programmers still generally despise it.</li>
</ol>
<p>As for real life - I code in my own time in C# and VB.NET at work. I believe that because so much of the code one writes for .NET is calls against the framework objects, the differences are actually quite small. If you can declare variables in both languages you're 80% to being portable. If you understand the framework, the syntax of the languages is a small obstacle.</p>
<p><strong>EDIT</strong> to directly answer your question: We happily use both (though mainly VB.NET) and haven't ever had any problems. We use Visual Studio which allows us to pretty freely mix code files/assemblies. I would encourage you not to limit to a single language - I think some diversity is good for the brain.</p>
http://stackoverflow.com/questions/942243/asp-net-cache-circumstances-in-which-removekey-doesnt-work/1105108#11051080Answer by overslacked for ASP.NET Cache - circumstances in which Remove("key") doesn't work?overslacked2009-07-09T16:45:24Z2009-07-09T16:45:24Z<p>I would also check, if you haven't already, that the old data they're seeing hasn't been somehow cached in ViewState.</p>
http://stackoverflow.com/questions/1104918/c-stringbuilder-indexof/1104989#11049895Answer by overslacked for c# StringBuilder IndexOfoverslacked2009-07-09T16:26:47Z2009-07-09T16:26:47Z<p>Unless you have a really good reason to waste a bunch of time, just return (sb).ToString.IndexOf.</p>
http://stackoverflow.com/questions/1076184/drawing-the-slices-of-a-3d-pie-chart-in-the-right-order/1076200#10762000Answer by overslacked for Drawing the slices of a 3D pie chart in the right orderoverslacked2009-07-02T19:19:32Z2009-07-02T19:19:32Z<p>Assuming that whatever calls your function that draws the slice has its data in some kind of list, sort that list so that the closer items appear later and are drawn last.</p>
<p>Some code or other details would go a long way in helping give you a better answer, though.</p>
http://stackoverflow.com/questions/1039615/should-we-mask-passwords/1039653#103965331Answer by overslacked for Should We Mask Passwords?overslacked2009-06-24T17:01:36Z2009-06-24T17:01:36Z<p>I'm very surprised he doesn't mention anything about password masking lending a feeling (however incorrect) of security to a site. Just as we're apt to think food in a better package tastes better, most people will believe a password mask makes an application more secure.</p>
<p>I think that for practical reasons it's a good idea, but that it'd be a serious cognitive issue for a lot of users.</p>
http://stackoverflow.com/questions/947401/anything-wrong-with-releasing-software-in-debug-mode/947509#9475090Answer by overslacked for Anything wrong with releasing software in debug mode?overslacked2009-06-03T22:01:16Z2009-06-03T22:01:16Z<p>I think it's important to follow good standards, practices, and procedures. Just because the application is only used internally is not a good reason to let yourself be lazy. Although I have strong feelings about the "right way" of doing things, I believe the habits of writing good software outweigh the benefits, in the long run, of cheating by using a debug release. Add some exception handling, learn the pitfalls of the systems you're coding against - it'll make all the code you write better.</p>
http://stackoverflow.com/questions/943473/does-data-binding-work-on-invisible-control/943485#9434850Answer by overslacked for Does data binding work on invisible control?overslacked2009-06-03T07:23:44Z2009-06-03T07:23:44Z<p>This is not something I've come across directly. However, you might be experiencing a problem with the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingcontext.aspx" rel="nofollow">BindingContext</a>. Without more details it's hard to say, but if I were you I'd set a breakpoint and make sure the controls are all bound in the same context.</p>
http://stackoverflow.com/questions/940471/custom-shaped-text-box-edit-control-in-net/940719#9407190Answer by overslacked for Custom shaped text box/edit control in .net?overslacked2009-06-02T17:07:26Z2009-06-02T17:07:26Z<p>Because you've mentioned it's for a high-precision tool, I would completely avoid relying on built-in TextRenderer methods, as they have problems with accuracy and consistency.</p>
<p>As for shaping the edit control, do you mean changing its shape from a rectangle to a circle, or will the control still occupy a rectangular region? If the former, you can change the Region property or P/Invoke the SetWindowRgn family.</p>
http://stackoverflow.com/questions/937812/any-examples-of-production-applications-that-use-signature-trees/937943#9379430Answer by overslacked for Any examples of production applications that use signature trees?overslacked2009-06-02T04:51:46Z2009-06-02T04:51:46Z<p>I've heard of something similar described as being a "C-tree" - it was part of an object database and I imagined that its indexing methods were similar to what the paper in the link described. A company called InterSystems makes a database system called Caché that they describe as "post-relational" and is very hierarchical ... I don't know enough about the details of these different systems to be sure that they're all different names for the same functionality, but, they have some overlapping fundamental concepts.</p>
http://stackoverflow.com/questions/936711/most-efficient-way-to-ensure-uniqueness-of-treeview-property-as-user-enters-new-v/936754#9367540Answer by overslacked for Most efficient way to ensure uniqueness of treeView property as user enters new valuesoverslacked2009-06-01T20:57:21Z2009-06-01T20:57:21Z<p>I don't know what your elegance-to-maintainability ratio is, but for something this straightforward I'd consider a hashtable like Arnshea mentioned, or even something as simple as a SortedList. </p>
http://stackoverflow.com/questions/933379/cant-use-processwindowstyle-minimized-to-start-firefox-instance-minimized/933384#9333840Answer by overslacked for Can't use ProcessWindowStyle.Minimized to start Firefox instance minimized?overslacked2009-06-01T02:39:34Z2009-06-01T02:39:34Z<p>This is a link to an awfully old thread, but it might still be relevant for your issue: <a href="http://forums.mozillazine.org/viewtopic.php?f=38&t=338477&start=0&st=0&sk=t&sd=a" rel="nofollow">Start Firefox minimized to taskbar?</a>.</p>
http://stackoverflow.com/questions/1837809/c-net-form-show-is-very-slowComment by overslacked on C# .NET form.Show() is very slowoverslacked2009-12-03T05:37:25Z2009-12-03T05:37:25Z"I don't know why." It's because 800 is a huge number of controls to initialize!http://stackoverflow.com/questions/1836415/net-document-management-system-design-performance-questions/1836489#1836489Comment by overslacked on .NET document management system design - performance questionsoverslacked2009-12-02T23:38:23Z2009-12-02T23:38:23ZOops - that should read "object instance in XML" - not object class.http://stackoverflow.com/questions/1836415/net-document-management-system-design-performance-questions/1836489#1836489Comment by overslacked on .NET document management system design - performance questionsoverslacked2009-12-02T23:36:17Z2009-12-02T23:36:17ZSerializing tends to mean representing a constructed object in another format, such as storing an object class in XML. What you're doing is enveloping one file within another.http://stackoverflow.com/questions/1836016/sqlserverce-problem-with-parameterized-queries-from-netComment by overslacked on SQLServerCE Problem with parameterized queries from .NEToverslacked2009-12-02T21:59:19Z2009-12-02T21:59:19ZAre the @nom and @nome differences present in your production code? Or just in this example?http://stackoverflow.com/questions/1827964/using-multiple-platforms-in-a-single-projectComment by overslacked on Using multiple platforms in a single projectoverslacked2009-12-01T19:08:28Z2009-12-01T19:08:28ZJosh - you haven't talked about what you're specifically trying to accomplish, so we can't be specific about the problems you'll face, other than saying "this is very likely a very poor decision".http://stackoverflow.com/questions/1824066/abstracting-from-stateful-object-navigation-1-1-the-challengeComment by overslacked on Abstracting from Stateful object navigation (1-1) - the challengeoverslacked2009-12-01T05:02:49Z2009-12-01T05:02:49ZYou say above that you're challenging yourself; so, please show us what you've tried and we can try to put you onto the right paths if you've become stuck somewhere. Otherwise you're challenging the community.http://stackoverflow.com/questions/1823615/quick-and-dirty-reflection-based-xml-serializer/1824058#1824058Comment by overslacked on Quick and dirty reflection based XML Serializer overslacked2009-12-01T04:56:34Z2009-12-01T04:56:34ZI agree. If you're at all concerned with execution speed, using reflection seems like a poor path to take.http://stackoverflow.com/questions/1008040/cant-instantiate-com-component-in-c-error-80070002Comment by overslacked on Can't instantiate COM component in C# - error 80070002overslacked2009-11-24T21:16:52Z2009-11-24T21:16:52ZThanks very much for the update! I've been up and down a server we're having this same error on ... I'll take any details, no matter how abstract or useless seeming they are.http://stackoverflow.com/questions/1791860/custom-table-component-in-net/1791873#1791873Comment by overslacked on Custom table component in .netoverslacked2009-11-24T18:13:23Z2009-11-24T18:13:23ZAgreed Dathan, tags edited.http://stackoverflow.com/questions/1788367/best-way-to-ship-1gb-of-structured-textual-data-used-in-my-software/1788423#1788423Comment by overslacked on Best way to ship 1GB of structured textual data used in my software?overslacked2009-11-24T07:41:02Z2009-11-24T07:41:02Z+1. Yes it's a joke answer but come on, those anti-reverse-engineering laws are also jokes.http://stackoverflow.com/questions/1008040/cant-instantiate-com-component-in-c-error-80070002Comment by overslacked on Can't instantiate COM component in C# - error 80070002overslacked2009-11-24T04:45:30Z2009-11-24T04:45:30ZI wish you'd posted what the problem was, to help others who arrive here later....http://stackoverflow.com/questions/1760251/how-do-i-tell-net-to-how-much-memory-it-should-use-how-much-memory-it-shouldComment by overslacked on how do I tell .NET to how much memory it should use? & how much memory it should allocate for a process?overslacked2009-11-19T01:12:51Z2009-11-19T01:12:51ZCould you post the contents (or applicable section) of the Laws.Apply(Bitmap) method?http://stackoverflow.com/questions/1752040/vb-net-datatable-datagridview-search-sortComment by overslacked on vb.net dataTable/DataGridView search/sortoverslacked2009-11-17T21:50:56Z2009-11-17T21:50:56ZAre you using any kind of database server, or is this coming from an XML file, or...?http://stackoverflow.com/questions/1752040/vb-net-datatable-datagridview-search-sortComment by overslacked on vb.net dataTable/DataGridView search/sortoverslacked2009-11-17T21:44:10Z2009-11-17T21:44:10ZWhat is the maximum number of rows contained in the datatable?http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732293#1732293Comment by overslacked on What are some questions to ask when choosing between two equal programmers?overslacked2009-11-13T22:28:25Z2009-11-13T22:28:25ZPersonality goes a long way.