User Arnshea - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:33:17Zhttp://stackoverflow.com/feeds/user/70186http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1089309/weak-events-in-net/1089334#10893341Answer by Arnshea for Weak events in .NET?Arnshea2009-07-06T21:38:13Z2009-07-06T21:38:13Z<p>Using the <a href="http://msdn.microsoft.com/en-us/library/b1yfkh5e.aspx" rel="nofollow">recommended Dispose() pattern</a>, where you consider events a managed resource to clean up, should handle this. Object A should unregister itself as a listener of events from object B when it's disposed...</p>
http://stackoverflow.com/questions/1089247/full-screen-window-sizing-in-screen-pixel-units-with-vs6-c-gui-editor-mfc/1089314#10893141Answer by Arnshea for Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC?Arnshea2009-07-06T21:32:17Z2009-07-06T21:32:17Z<p>Dialog Units are based on properties of the font used by the dialog. A horizontal dialog unit is equal to 1/4th the average width of the current font.</p>
<p>A vertical dialog unit is equal to 1/8th the average character height of the current font.</p>
<p>I'd recommend using <a href="http://support.microsoft.com/kb/145994" rel="nofollow">method 2</a> (MapDialogRect() for a 4 x 8 dialog) to figure out how many DLUs 800x600 corresponds to on your output display then make a reference form equal to that size. You can later use that reference form while you're designing.</p>
<p>p.s.-I'm glad Visual Studio no longer emphasizes dialog units since they were always a pain to deal with.</p>
http://stackoverflow.com/questions/1076308/mysterious-ghost-like-impossible-to-find-treenode-text/1076332#10763320Answer by Arnshea for Mysterious, ghost-like, impossible-to-find TreeNode textArnshea2009-07-02T19:48:12Z2009-07-02T19:48:12Z<p>You could filter the action if e.Node has a parent since root nodes won't have parent nodes.</p>
http://stackoverflow.com/questions/1075860/c-custom-xml-serialization/1075909#10759090Answer by Arnshea for C# Custom Xml SerializationArnshea2009-07-02T18:18:14Z2009-07-02T18:18:14Z<p>I'd use xpath to quickly figure out whether the input xml contains class A or class B. Then deserialize it based on that.</p>
http://stackoverflow.com/questions/1075410/what-are-good-bad-ways-of-providing-help-for-an-application/1075446#10754463Answer by Arnshea for What are good/bad ways of providing help for an application..?Arnshea2009-07-02T16:43:14Z2009-07-02T16:43:14Z<p>In my experience nobody but programmers reads the help. So when you have a technical and non-technical target audience you end up providing 2 ways of doing everything:</p>
<p>A Wizard with a few options.
A property editor with lots of options.</p>
<p>In either case, pictures are usually better than words for documentation. So a screenshot or 3 with big green arrows and circles calling out what does what will go a lot further than an indexing, exhaustive help file.</p>
http://stackoverflow.com/questions/1075329/when-have-you-been-put-on-a-new-project-that-was-far-more-challenging-than-anythi/1075355#10753552Answer by Arnshea for When have you been put on a new project that was far more challenging than anything you'd worked on before?Arnshea2009-07-02T16:25:57Z2009-07-02T16:25:57Z<p>There are a few AI techniques out there for learning/tuning/discovering parameter adjustments. They've all got their strengths and shortcomings. A short list:</p>
<ol>
<li>Genetic Algorithms</li>
<li>Fuzzy Logic</li>
<li>Nearest-Neighbor algorithms.</li>
<li>Support Vector Machines.</li>
</ol>
<p>There's also plain and simple least squares minimization.</p>
http://stackoverflow.com/questions/1075269/tsql-group-by-with-an-or/1075300#10753000Answer by Arnshea for TSQL Group By with an "OR" ?Arnshea2009-07-02T16:15:55Z2009-07-02T16:15:55Z<p>GROUP BY doesn't support OR - it's implicitly AND and must include every non-aggregator in the select list.</p>
http://stackoverflow.com/questions/1075267/call-a-windows-service-from-a-remote-computer/1075275#10752751Answer by Arnshea for Call A Windows Service from a remote computerArnshea2009-07-02T16:11:45Z2009-07-02T16:11:45Z<p>If the windows service publishes a remoting interface then it can be accessed via that remoting interface.</p>
<p>Otherwise it's the same as accessing any other process running on a remote machine except that there may be some tools (e.g., sc) with built in support for executing against a remote machine (barring firewall complications).</p>
<p>Any IPC mechanisms applies; sockets, web services, remoting, etc...</p>
http://stackoverflow.com/questions/1065828/possible-to-append-a-activex-control-to-a-page-using-javascript/1065863#10658630Answer by Arnshea for Possible to append a ActiveX control to a page using javascript?Arnshea2009-06-30T20:27:50Z2009-07-01T15:20:43Z<p>You can instantiate the control in a totally cross-platform-unfriendly manner using new ActiveXObject(ProgID). ProgID is a string of the form "appName.typeName". e.g., </p>
<pre><code>var excel;
excel = new ActiveXObject("Excel.Application");
...
</code></pre>
<p>The example will only work if excel is installed on your machine.</p>
http://stackoverflow.com/questions/1065849/xmlserializer-with-parameterless-constructor-with-no-public-properties-or-fields/1065877#10658770Answer by Arnshea for XmlSerializer with parameterless constructor with no public properties or fields... Is it possible?Arnshea2009-06-30T20:30:35Z2009-06-30T20:30:35Z<p>No. XML Serialization will only serialized public read/write fields and properties of objects.</p>
http://stackoverflow.com/questions/1065829/continuing-inserts-in-oracle-when-exception-is-raised/1065843#10658433Answer by Arnshea for Continuing Inserts in Oracle when exception is raisedArnshea2009-06-30T20:24:41Z2009-06-30T20:24:41Z<p>Using PLSQL you can perform each insert in its own transaction (COMMIT after each) and log or ignore errors with an exception handler that keeps going.</p>
http://stackoverflow.com/questions/1065709/value-assignment-for-reference-type-in-c/1065736#10657361Answer by Arnshea for Value assignment for reference type in C#Arnshea2009-06-30T20:03:15Z2009-06-30T20:03:15Z<p>One approach is to use a copy constructor. e.g.,</p>
<p>MyClass orig = ...;
MyClass copy = new MyClass(orig);</p>
<p>Where you copy the elements of MyClass. Depending on how many reference types the class contains this might involve recursive use of copy constructors.</p>
http://stackoverflow.com/questions/1065646/c-outputting-the-reference-of-an-object/1065653#10656534Answer by Arnshea for C# Outputting the reference of an ObjectArnshea2009-06-30T19:51:44Z2009-06-30T19:51:44Z<p>For a managed object you can't and for good reason. It can change location during any garbage collection.</p>
http://stackoverflow.com/questions/1046328/how-to-access-inherited-controls-in-the-winforms-designer/1046335#10463350Answer by Arnshea for How to access inherited controls in the winforms designerArnshea2009-06-25T21:24:43Z2009-06-25T21:24:43Z<p>You have to design the base controls on their own. Changes are reflected in the designer after you successfully rebuild the controls project. If you make the members public you can edit them but the changes won't persist.</p>
http://stackoverflow.com/questions/1016031/how-can-a-program-be-detected-as-running/1016057#10160572Answer by Arnshea for How can a program be detected as running?Arnshea2009-06-19T02:09:28Z2009-06-19T02:09:28Z<p>I feel a little dirty answering this but it's late and I'm waiting for a drive copy to finish so....</p>
<p>He could use a checksum to identify your executable/dll. This gets around the renaming tricks.</p>
<p>You can get around this by randomly modifying bits in the program on start (e.g., change a resource, play with the embedded version, etc...).</p>
<p>If I were him I'd also start looking for patterns of network traffic; e.g., if you're directing customers to competitors you're looking that information up from somewhere so kill the process and/or unload the library if a plugin accesses a site that's on the blacklist.</p>
<p>If you take the cat and mouse game far enough (e.g., shell hooks to re-create your executable/library if it gets deleted) you'll probably get flagged as a virus by antivirus software.</p>
http://stackoverflow.com/questions/1014886/outcome-of-a-small-c-program/1014930#10149300Answer by Arnshea for Outcome of a small C programArnshea2009-06-18T20:10:52Z2009-06-18T20:10:52Z<p>There's no newline being printed between the values so the parent's answer appears right after the child's answer.</p>
<p>Jared's correct about the cause of the values.</p>
http://stackoverflow.com/questions/1011056/how-proxy-gets-created-for-sao-when-client-and-server-share-same-interface-in-rem/1014874#10148740Answer by Arnshea for How Proxy gets created for SAO when client and server share same interface in RemotingArnshea2009-06-18T20:01:26Z2009-06-18T20:01:26Z<p>The proxy doesn't attempt to connect to the server until you make a call on the object. So even if the server isn't running you can use Activator.GetObject() to get a reference to a proxy on the object.</p>
<p>If you call a method on the proxy object while the server is not running you'll get a RemotingException.</p>
http://stackoverflow.com/questions/1010690/managing-multiple-configuration-files-in-visual-studio-for-a-c-project/1014855#10148550Answer by Arnshea for Managing multiple configuration files in Visual Studio for a C# projectArnshea2009-06-18T19:58:06Z2009-06-18T19:58:06Z<p>One way to handle this is to create 3 projects and put the environment in the name of the new projects. Then use a post-build event to copy the correct files based on the project name.</p>
<p>Inside the post build event you can tell the project name based on the $(ProjectName) macro. So you can do things like</p>
<pre><code>IF "$(ProjectName)"="devproject" (
copy ...
copy ...
)
</code></pre>
<p>It's best to make these projects defer most of the real work (compilation) to a single project so that you don't have to keep settings up to date across multiple projects.</p>
http://stackoverflow.com/questions/1011717/ignore-nant-warning/1014781#10147811Answer by Arnshea for Ignore NAnt warningArnshea2009-06-18T19:43:03Z2009-06-18T19:43:03Z<p>If you're using the exec task to execute devenv.exe change it to execute devenv.com, this should print warnings to stdout (I think it's stdout, might be stderr) but warnings shouldn't stop the build.</p>
<p>Also, make sure your visual studio project settings don't treat warnings like errors.</p>
http://stackoverflow.com/questions/1012695/interactive-chart-with-timeline-for-winforms-net/1014740#10147400Answer by Arnshea for Interactive chart with timeline for WinForms .NETArnshea2009-06-18T19:35:33Z2009-06-18T19:35:33Z<p>I onced used controls from a company called Steema that allowed you to interactively manipulate charts. The library was called TeeChart.</p>
<p>Come to think of it, some of the charting controls in National Instruments Measurement Studio libraries also allow you to interactively manipulate graphs.</p>
http://stackoverflow.com/questions/1013174/trace-filtering/1014728#10147281Answer by Arnshea for Trace FilteringArnshea2009-06-18T19:31:33Z2009-06-18T19:31:33Z<p>You can do some filtering using trace switches. Add a trace switch to your config file then set the level to 0, 1, 2, 3 or 4 (for, respectively off, error, warning, info, verbose). You would then use the WriteLineIf(traceSwitch.Error, ....) to only print if the traceswitch is configured for errors, WriteLineIF(traceSwitch.Warning, ...) to print if the trace switch is set to errors or warnings, etc...</p>
http://stackoverflow.com/questions/1014627/error-prj0019-a-tool-returned-an-error-code-from-copying-dll/1014714#10147141Answer by Arnshea for error PRJ0019: A tool returned an error code from "Copying DLL..."Arnshea2009-06-18T19:27:46Z2009-06-18T19:27:46Z<p>Turn up the build output with Tools -> Options -> Projects and Solutions -> Build and Run</p>
<p>Set MSBuild project build output verbosity to something higher than the default. I'd step it up one level at a time because the highest level is pathologically verbose.</p>
http://stackoverflow.com/questions/988745/what-is-the-run-context-for-a-form-opened-in-the-designer-for-a-winforms-applicat/989120#9891201Answer by Arnshea for What is the run-context for a form opened in the designer for a winforms applicationArnshea2009-06-12T21:23:34Z2009-06-12T21:35:14Z<p>Wrap the code that breaks the designer in the Load event in the following:</p>
<pre><code>if ( this.Site == null || !this.Site.DesignMode )
{
... // code that breaks the designer
}
</code></pre>
http://stackoverflow.com/questions/985335/placing-image-control-in-mdi-form/989156#9891560Answer by Arnshea for Placing Image control in MDI formArnshea2009-06-12T21:31:25Z2009-06-12T21:31:25Z<p>Once the outer form is an MdiParent, the mdiclient area will expand to fill all space not used by other containers. So you'll either need to put the image somewhere else (e.g., a panel docked to the left, separated by a Splitter from the mdi client area) or not put the image on child forms.</p>
http://stackoverflow.com/questions/988813/app-to-read-form-document-scantron-ish/989105#9891050Answer by Arnshea for App to read form document (scantron-ish)Arnshea2009-06-12T21:21:03Z2009-06-12T21:21:03Z<p>You want OCR software. There are a few free libraries out there for personal use (I believe google sponsors one). You may want to play around with the layout to make sure OCR clearly identifies the grid. </p>
<p>As long as you get text that allows you to line up the X to it's corresponding column (e.g., for column TV there would be at least 2 non-numerics in between the X and the date), you should be able to interpret the resulting text output.</p>
http://stackoverflow.com/questions/988913/visual-studio-recursive-copy-local/989049#9890490Answer by Arnshea for Visual studio recursive Copy localArnshea2009-06-12T21:07:01Z2009-06-12T21:07:01Z<p>If Lib.dll is an interop dll then its underlying dll won't be copied. Other than that I'd say there's probably operator error because you definitely don't need to manually reference dependent managed assemblies.</p>
http://stackoverflow.com/questions/978445/how-do-you-handle-a-thread-that-has-a-hung-call/978467#9784671Answer by Arnshea for How do you handle a thread that has a hung call?Arnshea2009-06-10T22:33:44Z2009-06-10T22:52:34Z<p>Managed threads can't directly stop native threads. So if the call is blocked in native code then the best you can do is have the managed thread check then terminate once it returns. If it never returns, maybe there's a version of the call with a timemout?</p>
<p>If not, killing the thread (through win32) is not usually a good idea...</p>
http://stackoverflow.com/questions/978339/can-you-add-a-folder-structure-to-iis7/978507#9785070Answer by Arnshea for Can you add a folder structure to IIS7?Arnshea2009-06-10T22:44:05Z2009-06-10T22:44:05Z<p>IIS used to ship with a set of scripts/programs that you could use to programmatically manage virtual directories (iisvdir).</p>
<p>Separating the code into virtual directories provides some measure of separation.</p>
http://stackoverflow.com/questions/978481/mixing-html-and-c/978490#9784900Answer by Arnshea for mixing html and C#Arnshea2009-06-10T22:40:56Z2009-06-10T22:40:56Z<p>If you use @string literals you can escape double quotes with 2 double quotes. Slightly more readable (but not much)...</p>
http://stackoverflow.com/questions/978469/log-combination-of-keyboard/978486#9784860Answer by Arnshea for Log combination of keyboard Arnshea2009-06-10T22:39:55Z2009-06-10T22:39:55Z<p>You can intercept keypresses in child controls by overriding Form.ProcessKeyPreview(). In that method, as long as the richtextbox has the focus, you can handle the keyboard message.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41514#41514Comment by Arnshea on Use of var keyword in C#Arnshea2009-07-16T20:53:58Z2009-07-16T20:53:58ZI'd hate to inherit 100k lines of source with no documentation and liberal use of var. Especially if you combine var with less-than-helpful variable names. I could see it being helpful when illustrating a point (or dealing with anonymous types) but in production code?http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1112241#1112241Comment by Arnshea on Why Do You Use Delphi?Arnshea2009-07-12T11:36:15Z2009-07-12T11:36:15ZYou can catch exceptions through Debug -> Exceptions; check any exception you want to cause a break.http://stackoverflow.com/questions/1089309/weak-events-in-net/1089334#1089334Comment by Arnshea on Weak events in .NET?Arnshea2009-07-07T00:24:02Z2009-07-07T00:24:02ZYou have to keep the reference and remove it from the invocation lists manually.http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/253456#253456Comment by Arnshea on Underused features of Windows batch filesArnshea2009-07-03T00:03:10Z2009-07-03T00:03:10ZYou can script it with reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 1 /fhttp://stackoverflow.com/questions/1075860/c-custom-xml-serialization/1075909#1075909Comment by Arnshea on C# Custom Xml SerializationArnshea2009-07-02T19:41:55Z2009-07-02T19:41:55Zheh, hey i'm a sql junkie too though I've stayed away from the more exotic features of xpath... :)http://stackoverflow.com/questions/1075329/when-have-you-been-put-on-a-new-project-that-was-far-more-challenging-than-anythi/1075355#1075355Comment by Arnshea on When have you been put on a new project that was far more challenging than anything you'd worked on before?Arnshea2009-07-02T16:48:58Z2009-07-02T16:48:58Zand oh yeah, i forgot, neural networks. kind of a weird ommission since those are the ones I used most in grad school. Maybe it's the brain blotting out painful memories.http://stackoverflow.com/questions/1075329/when-have-you-been-put-on-a-new-project-that-was-far-more-challenging-than-anythi/1075355#1075355Comment by Arnshea on When have you been put on a new project that was far more challenging than anything you'd worked on before?Arnshea2009-07-02T16:47:01Z2009-07-02T16:47:01Z@Kris Yeah it's easy to get lost in the math but for applying it you can usually all-but ignore the math. Most of the work is figuring out how to model your parameters. Then massaging your data into a form the library can use.http://stackoverflow.com/questions/1075269/tsql-group-by-with-an-or/1075300#1075300Comment by Arnshea on TSQL Group By with an "OR" ?Arnshea2009-07-02T16:39:19Z2009-07-02T16:39:19Z@Quassnoi, good point, he'd have to handle nulls, so use SQL Servers equivalent of NVL - e.g., UserOR(nvl(hphone, false), nvl(email, false)). Or exclude those in the where clause...http://stackoverflow.com/questions/1075329/when-have-you-been-put-on-a-new-project-that-was-far-more-challenging-than-anythi/1075355#1075355Comment by Arnshea on When have you been put on a new project that was far more challenging than anything you'd worked on before?Arnshea2009-07-02T16:28:03Z2009-07-02T16:28:03ZThey all sound a lot sexier than they are. If you try not to get too far into the weeds once you get the basic approach you can find open source or commercial libraries that you can pass your data to and get the recommended parameters.http://stackoverflow.com/questions/1075269/tsql-group-by-with-an-or/1075300#1075300Comment by Arnshea on TSQL Group By with an "OR" ?Arnshea2009-07-02T16:18:54Z2009-07-02T16:18:54Zbtw, it'd have to be in the select list and in the group by clause. And the function would have to be deterministic but OR is deterministic so....http://stackoverflow.com/questions/1075269/tsql-group-by-with-an-or/1075300#1075300Comment by Arnshea on TSQL Group By with an "OR" ?Arnshea2009-07-02T16:17:29Z2009-07-02T16:17:29ZYou might be able to hack something together with a user defined function, e.g., UserOR(hphone, email) then include that in the GROUP BYhttp://stackoverflow.com/questions/1075267/call-a-windows-service-from-a-remote-computer/1075275#1075275Comment by Arnshea on Call A Windows Service from a remote computerArnshea2009-07-02T16:13:10Z2009-07-02T16:13:10Zthe net services suite of commands also usually support remote targetshttp://stackoverflow.com/questions/1065709/value-assignment-for-reference-type-in-c/1065736#1065736Comment by Arnshea on Value assignment for reference type in C#Arnshea2009-07-01T02:54:45Z2009-07-01T02:54:45ZHave you considered the Observer/Observable pattern? Instead of multiple classes sharing a reference to A they could instead handle events from A (e.g., OnPropertyChanged). When you deserialized A you could copy it's invocation list to maintain the connection...http://stackoverflow.com/questions/1065646/c-outputting-the-reference-of-an-object/1065653#1065653Comment by Arnshea on C# Outputting the reference of an ObjectArnshea2009-07-01T02:31:33Z2009-07-01T02:31:33Zwoah, what he said!http://stackoverflow.com/questions/977796/in-c-math-round2-5-result-is-2-instead-of-3-are-you-kidding-me/977807#977807Comment by Arnshea on In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me?Arnshea2009-06-30T20:21:48Z2009-06-30T20:21:48ZI got burned by this a while ago and thought it was sheer lunacy too. Fortunately they added a way to specify the rounding that all of us learned in grade-school; MidPointRounding.