User Nick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T00:58:49Zhttp://stackoverflow.com/feeds/user/22407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1555773/invalidoperationexception-when-xml-serializing-inherited-class0InvalidOperationException When XML Serializing Inherited ClassNick2009-10-12T17:09:33Z2009-12-02T15:33:02Z
<p>I am having an issue serializing a c# class to an XML file that has a base class... here is a simple example:</p>
<pre><code>namespace Domain
{
[Serializable]
public class ClassA
{
public virtual int MyProperty
{
get; set;
}
}
}
namespace Derived
{
public class ClassA : Domain.ClassA
{
public override int MyProperty
{
get { return 1; } set { /* Do Nothing */ }
}
}
}
</code></pre>
<p>When I attempt to serialize an instance of Derived.ClassA, I receive the following exception:</p>
<p>InvalidOperationException(Types 'Domain.ClassA' and 'Derived.ClassA' both use the XML type name 'ClassA', from the namespace ". Use XML attributes to specify a unique XML name and/or namespace for the type.)</p>
<p>The problem is that I want to create a single base class that simply defines the structure of the XML file, and then allow anyone else to derive from that class to insert business rules, but that the formatting will come through from the base.</p>
<p>Is this possible, and if so, how do I attribute the base class to allow this?</p>
http://stackoverflow.com/questions/1757929/com-exception-receiving-wmi-event-in-mmc-snapin0COM Exception Receiving WMI Event in MMC SnapinNick2009-11-18T18:05:08Z2009-11-19T17:04:02Z
<p>I am attempting to create an MMC snapin that among other things, will receive and display log events that are fired from my service. I have created the watcher and it fires correctly, but when I try to add nodes to my MmcListView, I am getting a COMException which says "COM object that has been separated from its underlying RCW cannot be used."</p>
<p>Here is the code in question:</p>
<pre><code>private void LogEvent_EventArrived(object sender, EventArrivedEventArgs e)
{
LogEvent logEvent = new LogEvent(e.NewEvent);
if (SnapIn.InvokeRequired)
{
object[] args = new object[] { logEvent };
SnapIn.Invoke(new ManagementAction(AddEvent), args);
}
else
AddEvent(logEvent);
}
</code></pre>
<p>The LogEvent class is a simple class which does the work of converting the ManagmentBaseObject properties to type safe properties which are easily coded against. The AddEvent method does the actual work of adding the LogEvent object to the ResultNodes list of the MmcListView.</p>
<p>The Exception I mentioned is actually called on the SECOND event being fired, and seems to happen on the call to InvokeRequired. I have no idea what is actually going on here. Any ideas?</p>
http://stackoverflow.com/questions/1757929/com-exception-receiving-wmi-event-in-mmc-snapin/1764894#17648940Answer by Nick for COM Exception Receiving WMI Event in MMC SnapinNick2009-11-19T17:04:02Z2009-11-19T17:04:02Z<p>OK, this was incredibly stupid... but the reality was that the method I was calling via Invoke was throwing an exception, and it wasn't bubbling up as expected to the caller, and instead was showing as the weird COM exception. Once I cleared up the exception in the method I was calling via delegate, everything worked fine.</p>
http://stackoverflow.com/questions/1188756/insert-space-between-pixels1Insert Space Between PixelsNick2009-07-27T15:13:58Z2009-07-27T15:51:25Z
<p>I need to be able to draw a bitmap that is at a specific resolution (~40 DPI), on screen using GDI, and also be able to replicate spacing between each pixel. The space is a fraction of the pixel size, but it is noticeable to the eye.</p>
<p>Is there anyway to setup the Graphics class or a Bitmap to have it insert "white space" between drawn pixels? Before I go after writing the complicated code to do it myself, I'd like to make sure there isn't some setting I'm missing somewhere.</p>
http://stackoverflow.com/questions/712411/small-caps-font-property0Small Caps Font Property?Nick2009-04-03T03:00:30Z2009-04-03T03:09:52Z
<p>I'm looking for a way to create a .NET Font object that formats the text like in Word when you check the "Small Caps" check box. I'm not seeing a Format Style on the Font object to do it, and I was wondering if
A. There is something that I'm missing or
B. There is a third party library out there (preferably free) that will do it instead.</p>
http://stackoverflow.com/questions/458253/unit-testing-refactoring-io/458283#4582830Answer by Nick for unit testing, refactoring, IONick2009-01-19T16:49:23Z2009-01-19T16:49:23Z<p>I would probably have the interface designed so that instead of taking a file path, I would pass in an IStream (or similar) pointer. That way you can use a Mock library for testing to pass in a mocked IStream that will satisfy the method, and provide a stronger test.</p>
http://stackoverflow.com/questions/375291/silverlight-scrollviewer-with-only-buttons0Silverlight Scrollviewer With Only ButtonsNick2008-12-17T17:13:59Z2008-12-18T01:07:43Z
<p>I am using a ScrollViewer as part of my Silverlight application. It has a horizontal orientation, and I would like it to appear such that only the scroll buttons appear, but not the scroll bar itself. Something like this crude ASCII rendering:</p>
<pre><code>------------------------------------------------------
| | | |
| < | Content Here | > |
| | | |
------------------------------------------------------
</code></pre>
<p>I know I could use the templating functionality, but all the samples I've seen only change the look of all the elements, and not their raw positioning, or whether they even appear. Is it possible to do this, and could someone provide an outline of what the template might look like?</p>
http://stackoverflow.com/questions/373570/how-to-check-for-image-in-cache-using-silverlight2How to Check for Image in Cache Using SilverlightNick2008-12-17T03:27:18Z2008-12-17T03:48:51Z
<p>I am creating a basic image browsing application using Silverlight. Depending on the user's connection speed, some images may take time to appear once they click on the thumb nail. I would like to show a progress bar while it is being downloaded. I have this part done.</p>
<p>However, if the image is already in the cache (viewing a previous image), I'd rather not have the progress bar flash up and then disappear. Is there a way to see if a particular file is in the cache before I display my progress bar?</p>
http://stackoverflow.com/questions/373570/how-to-check-for-image-in-cache-using-silverlight/373603#3736031Answer by Nick for How to Check for Image in Cache Using SilverlightNick2008-12-17T03:48:51Z2008-12-17T03:48:51Z<p>After thinking about it for a while, I did come up with one solution, though it wasn't what I was originally intending.</p>
<p>I am using the WebClient class to get my image file. I attach to the DownloadProgressChanged event. If the image has already been downloaded, then the ProgressPercentage is immediately 100.</p>
<p>So instead of making the ProgressBar visibile when I call OpenReadAsync and making it invisible when the Completed event is fired, I set the visibility in the DownloadProgressChanged event handler.</p>
http://stackoverflow.com/questions/341191/how-do-i-set-up-visual-studio-2008-to-program-in-perl/341736#3417360Answer by Nick for How do I set up Visual Studio 2008 to program in Perl?Nick2008-12-04T19:21:17Z2008-12-04T19:21:17Z<p>I heard rumors of there being a .NET implementation of Perl, called IronPerl, but except for that, I don't think there is any sort of plugin for Visual Studio. I would suggest just using one of the many tools out there that are designed for Perl.</p>
http://stackoverflow.com/questions/341059/which-is-the-better-method-allowing-the-thread-to-sleep-for-a-while-or-deleting/341724#3417240Answer by Nick for Which is the better method? Allowing the thread to sleep for a while or deleting it and recreating it later?Nick2008-12-04T19:15:58Z2008-12-04T19:15:58Z<p>It really depends on one thing as I can tell... state.</p>
<p>If the thread creates a lot of state (allocates memory) that is useful to have during the next iteration of the thread run, then I would keep it around. That way, your process can potentially optimize its run by only performing certain operations if certain things changed since the last running.</p>
<p>However, if the state that the process creates is significant compared with the amount of work to be done, and you are short on resources on the machine, then it may not be worth the cost of keeping the state around in between exectutions. If thats the case, then you should recreate the thread from scratch each time.</p>
http://stackoverflow.com/questions/218731/vb-net-comexception-error/218804#2188041Answer by Nick for VB.NET COMException ErrorNick2008-10-20T15:22:30Z2008-10-20T15:22:30Z<p>It sounds like the error is security related. It it magically happens on a new user after a certain period of time, I would look at your user policy definitions. Do passwords expire after a certain period of time? Do the new users have small temp directories that are filling up based on your application usage (therefore causing out of disk errors that are masked as COM exceptions)? What is this third party application? We're kind of short on details here. But those are some things to start looking at.</p>
http://stackoverflow.com/questions/218359/how-to-get-a-compare-items-in-a-generic-list/218435#2184350Answer by Nick for How to get a Compare items in a Generic ListNick2008-10-20T13:32:00Z2008-10-20T13:32:00Z<p>There is also IEquatable and if your object implements that interface, then it is automatically used by all the generic collections if its implemented. Though I never quite understood why it existed in the first place, since the docs say that if you implement IEquatable, then you should also override Equals to match. Also remember if you are going to override Equals, that you need to also override GetHashCode as well.</p>
http://stackoverflow.com/questions/212434/is-there-a-way-to-prevent-extra-elements-in-vba-dynamic-arrays/213157#2131570Answer by Nick for Is there a way to prevent extra elements in VBA dynamic arrays?Nick2008-10-17T17:54:42Z2008-10-17T17:54:42Z<p>Granted, its been a while since I've done classic VB6, and my VBA experience is even rustier... if memeory serves, the array syntax is different for VB in more than just the base being 1 instead of 0. The syntax also says that the "size" that you specify doesn't denote the total number of elements in the array, but rather the last index to be addressable.</p>
http://stackoverflow.com/questions/209754/whats-wrong-with-my-sitemap/210239#2102390Answer by Nick for What's wrong with my sitemap?Nick2008-10-16T20:46:22Z2008-10-16T20:46:22Z<p>This could have to do with your preferred domain setting. If your sitemap has www's in it, but you submitted the site without the www, then it could cause the confusion. What I did for my sites was to submit it with the wwww in the sitemap, and make sure I submitted to Google in Webmaster tools the same way.</p>
<p>Then you can go in and set the "Preferred Domain" in the Tools area for your site. From there, you can have Google only link to the non www version if you want.</p>
http://stackoverflow.com/questions/206425/has-a-system-that-incorporated-a-rule-engine-ever-been-truly-successful/206482#2064825Answer by Nick for Has a system that incorporated a rule engine ever been TRULY successful?Nick2008-10-15T21:04:08Z2008-10-15T21:13:40Z<p>I don't know if I'd say they're ever truly a boon, but I think they can certainly be valuable. I worked on a system for a few years in the insurance industry, where a rules engine was employed quite successfully to allow the business users to create rules that determined what policies were legal, depending on the state.</p>
<p>For instance, if you had to have a copay in certain states, or certain combinations of deductible and copay were not allowed, either because of product considerations, or because it was simply illegal due to state law.</p>
<p>The number of states that the company operated in, along with the constant change in rules (quarterly) would make this a dizzying coding practice. More importantly, it's not in the expertise of a programmer. It adds extra pointless communication where the end user is describing the rule to be put in effect to a programmer who is not an insurance industry expert like they are.</p>
<p>Designed correctly, a rules engine can still enable a workflow system that allows for good testing. In this case, the rules were stored in a database, and there were QA and PROD databases. So the BA's could test their rules in QA, and then promote them to PROD.</p>
<p>As with anything, its usually about the implementation, and not the actual technique.</p>
http://stackoverflow.com/questions/205689/class-with-single-method-best-approach/206517#2065170Answer by Nick for Class with single method -- best approach?Nick2008-10-15T21:12:19Z2008-10-15T21:12:19Z<p>I'd suggest that its hard to answer based on the information provided.</p>
<p>My gut is that if you are just going to have one method, and that you are going to throw the class away immediately, then make it a static class that takes all the parameters. </p>
<p>Of course, its hard to tell exactly why you need to create a single class just for this one method. Is it the typical "Utilities class" situation as most are assuming? Or are you implementing some sort of rule class, of which there might be more in the future.</p>
<p>For instance, have that class be plugable. Then you'd want to create an Interface for your one method, and then you'd want to have all the parameters passed into the interface, rather than into the constructor, but you wouldn't want it to be static.</p>
http://stackoverflow.com/questions/206323/how-to-execute-command-line-in-c-get-std-out-results/206353#2063531Answer by Nick for How To: Execute command line in C#, get STD OUT resultsNick2008-10-15T20:37:31Z2008-10-15T20:37:31Z<p>You can launch any command line program using the Process class, and set the StandardOutput property of the Process instance with a stream reader you create (either based on a string or a memory location). After the process completes, you can then do whatever diff you need to on that stream.</p>
http://stackoverflow.com/questions/190673/pre-commit-code-review/206099#2060990Answer by Nick for pre-commit code reviewNick2008-10-15T19:34:12Z2008-10-15T19:34:12Z<p>Team Foundation Server has the concept of "shelving code" which essentially creates a mini-branch that you can then pull down for review. At that point, you can then merge the shelved code into the main branch after approval. You can also set up the rights such that someone can <em>only</em> shelve code, and not check into the trunk. You would then grant rights to certain individuals to be able to do the merges, presumably after the proper review cycle.</p>
http://stackoverflow.com/questions/205474/which-certifications-are-worthwhile-and-useful-on-a-resume/205510#20551013Answer by Nick for Which certifications are worthwhile and useful on a resume?Nick2008-10-15T16:53:54Z2008-10-15T16:53:54Z<p>As a technical interviewer for a consulting company, I see resume's all the time. By the time I see a resume from a recruiter, certifications are meaningless. However, I do know they hold weight with the tech recruiters. I would say their only real value is in bubbling your resume a little higher in the stack, and making it more likely you'll get an interview. But that's it. Essentially it will only help get your foot in the door.</p>
<p>After that point, when I'm actually interviewing you, you better know your stuff. I'm going to ask technical questions that I'd expect someone with a particular certification to know (whether you're certified or not). I'm going to ask not just "what you did", but "how you did it". All of those things will be asked whether you have a certification or not, and your certification won't sway me if you answer poorly. In fact, instead of cutting you slack, it will just make me think lesser of the certificiation standards than I already do.</p>
http://stackoverflow.com/questions/192997/net-webservice-using-an-instance-of-a-parameter-type/193023#1930232Answer by Nick for .NET webservice using an instance of a parameter type?Nick2008-10-10T21:08:17Z2008-10-10T21:08:17Z<p>This is actually pretty common. What's happening is that the Web Service has defined in it the definitions of all the types used in the web service. When you add a reference to that web service, it auto-generates a proxy type in a sub namespace of your namespace. That is what is being returned by your web service when you call it.</p>
<p>However, you probably are also referencing the same library that the web service does seperately that contains the same type. That is the type that is expected when you Dim Driver. That's why there is a mismatch.</p>
http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191968#1919680Answer by Nick for Should C# include multiple inheritance?Nick2008-10-10T15:48:06Z2008-10-10T15:48:06Z<p>I've used multiple inheritence in C++ myself too, but you really have to know what you're doing in order to not get yourself in trouble, especially if you have two base classes which share a grandparent. Then you can get into issues with virtual inheritence, having to declare every constructor you're going to call down the chain (which makes binary reuse much harder)... it <em>can</em> be a mess.</p>
<p>More importantly, the way the CLI is currently built precludes MI from being implemented <em>easily</em>. I'm sure they could do it if they wanted, but I have other things I'd rather see in the CLI than multiple inheritence.</p>
<p>Things I'd like to see include some features of <a href="http://research.microsoft.com/SpecSharp/" rel="nofollow">Spec#</a>, like non-nullable reference types. I'd also like to see more object safety by being able to declare parameters as const, and the ability to declare a function const (meaning that you are guaranteeing that the internal state of an object won't be changed by the method and the compiler double checks you).</p>
<p>I think that between Single Inheritence, Multiple Interface Inheritence, Generics, and Extension Methods, you can do pretty much anything you need to. If anything could improve things for someone desiring MI, I think some sort of language construct which would would allow easier aggregation and composition is needed. That way you can have a shared interface, but then delegate your implementation to a private instance of the class you would normally inherit from. Right now, that takes a lot of boiler plate code to do. Having a more automated language feature for that would help significantly.</p>
http://stackoverflow.com/questions/188731/is-it-sensible-to-dynamically-generate-svg-images-on-websites-yet/188841#1888410Answer by Nick for Is it sensible to dynamically generate SVG images on websites yet?Nick2008-10-09T19:34:14Z2008-10-09T19:34:14Z<p><a href="http://www.adobe.com/svg/viewer/install/" rel="nofollow">Adobe also makes an SVG viewer plugin that you can link to on your site</a> for people to get full functionality of your site. Unfortunately, they are discontinuing support for the plugin, but by that time, it is expected that more browser support will be forthcoming (hopefully). Several years ago I worked for a company that wrote an entire web app using SVG, and we had great success with this plugin.</p>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187794#1877940Answer by Nick for How do I tell if a class property has a public set (.NET)?Nick2008-10-09T15:24:14Z2008-10-09T15:24:14Z<p>Well it's a little hard to tell since you have a "ReflectionHelper" class where we cannot see the source. However, my first guess is that you aren't properly setting the BindingFlags attribute when you call Type.GetProperty. You need to OR in the Public enumeration flag to ensure that only Public values are returned.</p>
http://stackoverflow.com/questions/187620/can-a-winforms-app-be-configured-to-run-as-x86-without-recompiling/187705#1877051Answer by Nick for Can a WinForms app be configured to run as "x86" without recompiling?Nick2008-10-09T15:08:51Z2008-10-09T15:08:51Z<p>No configuration ought to be needed if you wrote your managed code correctly. As long as the 64-bit machine has the proper frameworks installed, the JIT process will take care of any of the differences between 32 and 64 bit requirements.</p>
<p>The only thing you need to be concerned about in your own code is if you were doing any P/Invoke. In that case, any time you call an API function that utilizes a HANDLE or void* type, you need to ensure that you always use System.IntPtr, and not System.Int32. In the .NET world, the int data type is ALWAYS 32 bits, even on a 64 bit machine. Likewise a long is always 64 bits, no matter what architecture.</p>
<p>And IntPtr however is always the size of void*, and so properly JIT's to different sizes depending on the architecture of the machine you're running on.</p>
http://stackoverflow.com/questions/187326/using-soap-to-expose-crud-operations/187452#1874521Answer by Nick for Using SOAP to expose CRUD operationsNick2008-10-09T14:12:40Z2008-10-09T14:12:40Z<p>If all you want to do is CRUD over the web, I'd look at some different technologies for doing REST instead of using WS*. <a href="http://www.microsoft.com/sql/dataservices/default.mspx" rel="nofollow">SQL Data Services</a> (formerly Project Astoria) might actually be a good alternative.</p>
http://stackoverflow.com/questions/184310/do-you-ever-feel-confident-in-your-skills/184370#1843700Answer by Nick for Do you ever feel confident in your skills?Nick2008-10-08T19:07:37Z2008-10-08T19:07:37Z<p>I would suggest that feeling like a confident developer, and feeling the need to continue to learn and absorb new technlogies are not mutually exclusive.</p>
<p>You can certainly feel confident in your current abilities, while always expanding to new technologies and skills.</p>
<p>When will you know? I'm gonna let you in on a little secret. Being Confident is just like being in love. Nobody can tell you you're in love. You just know it. Through and through. Balls to bones. </p>
http://stackoverflow.com/questions/184272/what-exactly-does-the-word-patch-mean-when-refering-to-submitting-a-patch/184291#1842910Answer by Nick for What exactly does the word Patch mean when refering to 'submitting a patch'?Nick2008-10-08T18:52:56Z2008-10-08T18:52:56Z<p>A patch, ususally in the form of a .patch file, is a common flat file format for transmitting the differences between two sets of code files. So if you are working on an open source project, and make code changes to files, and want to submit that to the project owner to be checked in (usually because you don't have checkin rights), you would do so via a patch.</p>
<p>WinMerge has this functionality built in, as do many other tools like TortoiseSVN.</p>
http://stackoverflow.com/questions/183925/what-win32-api-can-be-used-to-find-the-process-that-has-a-given-file-open/183973#1839731Answer by Nick for What Win32 API can be used to find the process that has a given file open?Nick2008-10-08T17:50:11Z2008-10-08T17:50:11Z<p><a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx" rel="nofollow">The Handle program from SysInternals does this as well</a>, but I'm not sure how. I don't think there is a single documented API to do this. I think you have to iterate over the processes, enumerate each of the handles in the process, and then determine the filename associated with that handle.</p>
http://stackoverflow.com/questions/181147/winforms-load-localized-help-chm-files/183614#1836142Answer by Nick for WinForms: Load localized help (chm) filesNick2008-10-08T16:19:09Z2008-10-08T16:19:09Z<p>Off hand, I would suggest that instead of deploying your CHM file side by side with the satellite assembly, that you actually include the CHM as an embedded resource in the satellite assembly itself. Remember that an assembly can actually be contained across multiple files. What makes an assembly and assembly is the manifest.</p>
<p>By doing that, you can then request the resource for the current locale programatically, let the framework tell you the URL, and then supply that file location to the Help class.</p>
http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772344#1772344Comment by Nick on Why don't statements that don't do anything throw an exception (or warn the developer)?Nick2009-11-20T18:22:32Z2009-11-20T18:22:32ZThis is correctly, though theoretically they could add a warning with a particular warning level, and you could turn off warnings with that level.http://stackoverflow.com/questions/1555773/invalidoperationexception-when-xml-serializing-inherited-class/1556883#1556883Comment by Nick on InvalidOperationException When XML Serializing Inherited ClassNick2009-10-15T13:32:34Z2009-10-15T13:32:34ZThe solution that eventually worked was similar to this, but not quite as complicated. You are correct in that the .NET class names have to be different... unfortunately, .NET namespaces are not used for whatever reason. So the simplest was to have a ClassABase for the simple version, and attach the XmlRoot attribute to it of ClassA, and then have the derived class called ClassA. They both serialized identically then.
The overrides as part of the serializer where not needed.http://stackoverflow.com/questions/1555773/invalidoperationexception-when-xml-serializing-inherited-classComment by Nick on InvalidOperationException When XML Serializing Inherited ClassNick2009-10-13T16:03:44Z2009-10-13T16:03:44ZI agree... It's not that I don't want to accept answers. At the same time, I don't want to accept answers just to say I've accepted one. I think that defeats the purpose and changes the meaning of what "accepted" means.http://stackoverflow.com/questions/1555773/invalidoperationexception-when-xml-serializing-inherited-class/1556297#1556297Comment by Nick on InvalidOperationException When XML Serializing Inherited ClassNick2009-10-12T19:10:21Z2009-10-12T19:10:21ZTried that, but it didn't help. Anything else?http://stackoverflow.com/questions/1555773/invalidoperationexception-when-xml-serializing-inherited-classComment by Nick on InvalidOperationException When XML Serializing Inherited ClassNick2009-10-12T19:09:48Z2009-10-12T19:09:48ZThanks for the input. The problem is, I rarely ask questions, and when I do, they're generally very tough and I have yet to get an answer to a question I asked which helped me yet. So what am I to do?http://stackoverflow.com/questions/1188756/insert-space-between-pixels/1188970#1188970Comment by Nick on Insert Space Between PixelsNick2009-07-27T15:58:00Z2009-07-27T15:58:00ZHA HA... I don't have an aversion to writing it myself... so far in my project I've been doing a A LOT of GDI work... its just I hate writing code myself when a solution already exists. I was just hoping I missed something.http://stackoverflow.com/questions/1188756/insert-space-between-pixelsComment by Nick on Insert Space Between PixelsNick2009-07-27T15:50:33Z2009-07-27T15:50:33Z@EFraim - I'd like the spacing to be adjustable... so its really not important. It ought to be enough that its less than the size of a real pixel on the display.
@Bob Kaufman - As I mentioned in a comment below, I'm trying to emulate an old looking LCD display which has a low resolution, with spaces between the pixels, so doing a simple resize doesn't cut it, because the resulting pixels "butt up" against each other.http://stackoverflow.com/questions/1188756/insert-space-between-pixels/1188934#1188934Comment by Nick on Insert Space Between PixelsNick2009-07-27T15:47:54Z2009-07-27T15:47:54ZClose. I'm trying to emulate an LCD display that has a specific DPI and specific amount of physical space between its pixels. There is enough space between the pixels, that some text which looks bad in the "non spaced" bitmap (because the pixels looked bunched) actually looks OK on the actual display.http://stackoverflow.com/questions/375291/silverlight-scrollviewer-with-only-buttons/375794#375794Comment by Nick on Silverlight Scrollviewer With Only ButtonsNick2008-12-17T19:58:00Z2008-12-17T19:58:00ZThe problem with that method is that I don't see an event I could attach to, which would notify me when the viewport has changed in such a way that the buttons need to be made visible. So in effect, I'd have to make the buttons always visible, which I don't like.http://stackoverflow.com/questions/129628/what-is-declarative-programming/129674#129674Comment by Nick on What is declarative programming?Nick2008-10-10T13:36:35Z2008-10-10T13:36:35ZMinor quibble. WPF is a library, not really a language or a paradigm. I think you really meant to say XAML is an example of declarative language.http://stackoverflow.com/questions/130654/how-does-reputation-work-on-stackoverflow/130656#130656Comment by Nick on How does "Reputation" work on Stackoverflow?Nick2008-10-09T20:09:24Z2008-10-09T20:09:24ZI find it somewhat strange that you lose reputation for down voting a question or answer. Is it just to keep people from being too negative, by associating a cost with it? Otherwise, moving bad answers down is just as helpful sometimes as moving good ones up.http://stackoverflow.com/questions/188693/is-the-destructor-called-if-the-constructor-throws-an-exception/188714#188714Comment by Nick on Is the destructor called if the constructor throws an exception?Nick2008-10-09T20:05:06Z2008-10-09T20:05:06ZOf course, practically this entire site is premised on the idea that people would rather ask a question, then search on MSDN... where half the answers can be found. I think the better attitude is to be helpful to someone who is asking an honest answer, or not respond. That's the point of SO. -1http://stackoverflow.com/questions/187326/using-soap-to-expose-crud-operations/187452#187452Comment by Nick on Using SOAP to expose CRUD operationsNick2008-10-09T14:51:43Z2008-10-09T14:51:43ZSometimes it's not enough, especially in the area of reliable messaging. I'd argue about security, in that you can use the standard HTTP security model on top of REST if desired. If you're trying to be RESTful already, then usually that's enough. REST is an alternative, that this person might like.http://stackoverflow.com/questions/183788/c-c-compiler-warnings-do-you-clean-up-all-your-code-to-remove-them-or-leave/183805#183805Comment by Nick on C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?Nick2008-10-08T17:30:19Z2008-10-08T17:30:19Z+1 to this post in general. The only thing I would add is that with enough "harmless" compiler warnings, it creates a lot of "noise" that can hide more dangerous warnings.http://stackoverflow.com/questions/179742/how-to-associate-all-textbox-controls-on-a-form-with-the-same-event-handler/179824#179824Comment by Nick on How to associate all textbox controls on a form with the same event handlerNick2008-10-07T18:52:15Z2008-10-07T18:52:15ZIn VB.NET, the equivolent to += on an event is to use AddHandler