User jyoung - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:40:57Z http://stackoverflow.com/feeds/user/14841 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1640154/determining-when-net-is-about-to-be-loaded-in-unmanaged-c/1666565#1666565 0 Answer by jyoung for Determining when .NET is about to be loaded in (unmanaged) C++ jyoung 2009-11-03T10:43:35Z 2009-11-03T10:43:35Z <p>Instead of trying to hook into when the assembly is loaded, can you hook into when the AppDomain is loaded? Look into System.AppDomainManager to do this. </p> <p>After you loaded your subclassed System.AppDomainManager in the GAC, you just have to set some enviroment variables (APPDOMAIN_MANAGER_TYPE, APPDOMAIN_MANAGER_ASM) before you run your C++ program.</p> http://stackoverflow.com/questions/1599604/mouse-jiggling-message-processing-loop/1614078#1614078 0 Answer by jyoung for Mouse jiggling / message processing loop jyoung 2009-10-23T15:06:04Z 2009-10-23T15:06:04Z <p>One possibility is that you are seeing the effect of the OS doing thread priority boosting / retarding for certain GUI messages.</p> <p>I am assuming you have one ”GUI &amp; Other Stuff” thread, and multiple worker threads. When there is no GUI activity, the “Other Stuff” thread goes to a lower priority. When you wiggle the mouse or timeout, the “Other Stuff” thread goes to a higher priority.</p> <p>Changing the worker threads to a lower priority and then wiggling the mouse, would confirm or refute this.</p> http://stackoverflow.com/questions/1301195/precise-opacitymask/1352366#1352366 0 Answer by jyoung for Precise OpacityMask jyoung 2009-08-29T21:05:15Z 2009-08-29T21:05:15Z <p>Since you have parts that stick out from the control, one idea is to separate control image from the control mask.</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"&gt; &lt;Border Padding="20" Background="DarkGray" Width="240" Height="240"&gt; &lt;!-- user container --&gt; &lt;Grid&gt; &lt;!-- the control --&gt; &lt;Border Background="LightBlue" HorizontalAlignment="Stretch"&gt; &lt;!-- control mask--&gt; &lt;Canvas&gt; &lt;Rectangle Canvas.Left="50" Canvas.Top="50" Width="50" Height="50" Stroke="Red" StrokeThickness="2" Fill="White" /&gt; &lt;Canvas.OpacityMask&gt; &lt;DrawingBrush Stretch="None" AlignmentX="Left" AlignmentY="Top" TileMode="None"&gt; &lt;DrawingBrush.Drawing&gt; &lt;DrawingGroup&gt; &lt;GeometryDrawing Brush="#30000000"&gt; &lt;GeometryDrawing.Geometry&gt; &lt;RectangleGeometry Rect="0,0,200,200" /&gt; &lt;/GeometryDrawing.Geometry&gt; &lt;/GeometryDrawing&gt; &lt;GeometryDrawing Brush="Black"&gt; &lt;GeometryDrawing.Geometry&gt; &lt;RectangleGeometry Rect="50,50,50,50" /&gt; &lt;/GeometryDrawing.Geometry&gt; &lt;/GeometryDrawing&gt; &lt;/DrawingGroup&gt; &lt;/DrawingBrush.Drawing&gt; &lt;/DrawingBrush&gt; &lt;/Canvas.OpacityMask&gt; &lt;/Canvas&gt; &lt;/Border&gt; &lt;Canvas&gt; &lt;!-- control image--&gt; &lt;Line X1="-10" Y1="150" X2="120" Y2="150" Stroke="Red" StrokeThickness="2"/&gt; &lt;/Canvas&gt; &lt;/Grid&gt; &lt;/Border&gt; &lt;/Window&gt; </code></pre> http://stackoverflow.com/questions/1101147/code-demonstrating-the-importance-of-a-constrained-execution-region/1349519#1349519 1 Answer by jyoung for Code demonstrating the importance of a Constrained Execution Region jyoung 2009-08-28T21:39:04Z 2009-08-29T01:20:32Z <pre><code>using System; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; class Program { static bool cerWorked; static void Main( string[] args ) { try { cerWorked = true; MyFn(); } catch( OutOfMemoryException ) { Console.WriteLine( cerWorked ); } Console.ReadLine(); } unsafe struct Big { public fixed byte Bytes[int.MaxValue]; } //results depends on the existance of this attribute [ReliabilityContract( Consistency.WillNotCorruptState, Cer.Success )] unsafe static void StackOverflow() { Big big; big.Bytes[ int.MaxValue - 1 ] = 1; } static void MyFn() { RuntimeHelpers.PrepareConstrainedRegions(); try { cerWorked = false; } finally { StackOverflow(); } } } </code></pre> <p>When MyFn is jitted, it tries to create a ConstrainedRegion from the finally block.</p> <ul> <li><p>In the case without the ReliabilityContract, no proper ConstrainedRegion could be formed, so a regular code is emitted. The stack overflow exception is thrown on the call to Stackoverflow (after the try block is executed).</p></li> <li><p>In the case with the ReliabilityContract, a ConstrainedRegion could be formed and the stack requirements of methods in the finally block could be lifted into MyFn. The stack overflow exception is now thrown on the call to MyFn (before the try block is ever executed).</p></li> </ul> http://stackoverflow.com/questions/1341488/how-to-cancel-background-worker-after-specified-time-in-c/1342040#1342040 0 Answer by jyoung for how to cancel background worker after specified time in c# jyoung 2009-08-27T15:59:10Z 2009-08-27T15:59:10Z <p>BackgroundWorker does not have support either case. Here is the start of some code to support those cases.</p> <pre><code>class MyBackgroundWorker :BackgroundWorker { public MyBackgroundWorker() { WorkerReportsProgress = true; WorkerSupportsCancellation = true; } protected override void OnDoWork( DoWorkEventArgs e ) { var thread = Thread.CurrentThread; using( var cancelTimeout = new System.Threading.Timer( o =&gt; CancelAsync(), null, TimeSpan.FromMinutes( 1 ), TimeSpan.Zero ) ) using( var abortTimeout = new System.Threading.Timer( o =&gt; thread.Abort(), null, TimeSpan.FromMinutes( 2 ), TimeSpan.Zero ) ) { for( int i = 0; i &lt;= 100; i += 20 ) { ReportProgress( i ); if( CancellationPending ) { e.Cancel = true; return; } Thread.Sleep( 1000 ); //do work } e.Result = "My Result"; //report result base.OnDoWork( e ); } } } </code></pre> http://stackoverflow.com/questions/1325248/should-fxcop-specify-iformat-provider-catch-int32-tryparse-violations 1 Should FxCop 'Specify IFormat Provider' catch Int32.TryParse violations? jyoung 2009-08-24T23:03:25Z 2009-08-24T23:10:20Z <p>The FxCop Globalization Rule, 'Specify IFormat Provider', does not catch Int32.TryParse violations for me. Is this a bug, or am I doing something wrong?</p> http://stackoverflow.com/questions/1265354/how-to-design-a-state-machine-in-face-of-non-blocking-i-o/1266522#1266522 0 Answer by jyoung for How to design a state machine in face of non-blocking I/O? jyoung 2009-08-12T14:26:54Z 2009-08-12T14:26:54Z <p>Sounds like you just want to do a list of blocking I/O in the background.</p> <p>So have a thread execute:</p> <pre><code>while( !commands.empty() ) { command = command.pop_back(); switch( command ) { Connect: DoBlockingConnect(); break; ... } } NotifySenderDone(); </code></pre> http://stackoverflow.com/questions/1232584/in-wpf-how-do-i-give-my-custom-control-a-default-style-to-be-used-in-design-mode/1233719#1233719 0 Answer by jyoung for In WPF, how do I give my custom control a default style to be used in Design Mode? jyoung 2009-08-05T14:43:35Z 2009-08-05T14:43:35Z <p>Try moving the style to a standard place.</p> <ul> <li>Add / New Item / Custom Control(WPF) / "MyDummyControl"</li> <li>now place your style in "Themes/Generic.xaml" that was created</li> <li>remove "MyDummyControl" files and style</li> <li>remove your Theme.xaml, and MergedDictionaries</li> </ul> http://stackoverflow.com/questions/243209/can-i-fix-the-vs-debugger-trying-to-connect-to-unconnected-mapped-drive 0 Can I fix the VS Debugger trying to connect to unconnected mapped drive. jyoung 2008-10-28T13:06:59Z 2009-07-24T19:00:02Z <p>When I have an unconnected mapped drive, the VSTS 2008 SP1 IDE debugger takes about 10 seconds to regain control.</p> <p>Needless to say single stepping is painful. Is there some setting to make this go away? </p> <p>I am debugging a mixed( C# / C++ / Web services ) program.</p> <p>More details:</p> <p>The program does not use the mapped drive at all.</p> <p>I use the mapped drive only to connect to the server while I am at the office. It is mapped as \\192.168.0.3\sharename -> f: No DNS server involved.</p> <p>It's just a pain to map/remap just to debug, when I am at home.</p> http://stackoverflow.com/questions/253865/in-a-wpf-app-is-there-a-object-i-can-assign-to-filesystemwatcher-synchronizingob 1 In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject? jyoung 2008-10-31T15:11:02Z 2009-07-08T07:58:05Z <p>In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject?</p> <p>I can make my own, but if there is one available, I would like to use it.</p> http://stackoverflow.com/questions/302501/how-can-i-get-a-64-bit-usb-driver-to-load-in-vista-64 0 How can I get a 64 bit USB driver to load in Vista 64. jyoung 2008-11-19T16:33:12Z 2009-07-01T23:00:01Z <p>I am working in Vista 64 bit system.</p> <p>I have a 3rdPartyUsbDriver.sys and 3rdPartyUsbDriver.inf files.</p> <p>I have made the neccesary changes to the vendor &amp; product IDs in the inf file, to work with my custom hardware. This installs and works in 'Unsigned Driver Test mode' just fine.</p> <p>I now want to install this driver in 'Normal mode'. I do not care, if it pops up warnings that this driver is from a untrusted source.</p> <p>What is the easiest way to do this?</p> http://stackoverflow.com/questions/873270/designer-rejecting-datatemplate-datatype 1 Designer rejecting DataTemplate.DataType jyoung 2009-05-16T20:43:56Z 2009-06-28T12:00:00Z <p>I am try to fit some WPF into my current Windows Forms application. When I use this simple user control, the designer for that control does not reload.</p> <p>This only happens in this application. If I make a clean Windows Forms project, add these files, the designer works fine.</p> <p>I have tried a reload of Visual Studio, and cleans / rebuilds of the application.</p> <p>Any ideas? (These are for the items in a ListBox, so x:Key is not an option.)</p> <p>P.S. How do I get rid of all those trailing blank lines in my code listing?</p> <p>DETAILS:</p> <p>MyClasses.cs</p> <pre><code>namespace MyNamespace { internal class MyClassInternal {} public class MyClassPublic {} } </code></pre> <p>MyUserControl.xaml</p> <pre><code>&lt;UserControl x:Class="MyNamespace.MyUserControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:MyNamespace" Height="300" Width="300"&gt; &lt;UserControl.Resources&gt; &lt;DataTemplate DataType="{x:Type local:MyClassInternal}"/&gt; &lt;!--OK--&gt; &lt;ObjectDataProvider x:Key="ClassPublicKey" ObjectType="{x:Type local:MyClassPublic}"/&gt; &lt;!--OK--&gt; &lt;!-- Type reference cannot find public type named 'MyClassPublic' --&gt; &lt;DataTemplate DataType="{x:Type local:MyClassPublic}"/&gt; &lt;!--FAILS--&gt; &lt;/UserControl.Resources&gt; &lt;TextBlock&gt;Hello World&lt;/TextBlock&gt; &lt;/UserControl&gt; </code></pre> <p>MyUserControl.xaml.cs</p> <pre><code>using System.Windows.Controls; namespace MyNamespace { public partial class MyUserControl :UserControl { public MyUserControl() { InitializeComponent(); } } } </code></pre> http://stackoverflow.com/questions/1041129/in-a-horizontal-listbox-how-do-i-align-items-to-the-top 0 In a horizontal listbox how do I align items to the top? jyoung 2009-06-24T21:34:02Z 2009-06-24T21:45:14Z <p>In a horizontal listbox how do I align items to the top?</p> <p>I have ran out of ideas of where to stick a VerticalAlignment="Top".</p> <p></p> <pre><code>&lt;Window.Resources&gt; &lt;DataTemplate DataType="{x:Type l:MyType}"&gt; &lt;Grid VerticalAlignment="Top"&gt; &lt;TextBlock VerticalAlignment="Top" Text="{Binding MyValue}" Background="Yellow"/&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;ListBox Name="listBox" ItemsSource="{Binding}" VerticalAlignment="Top" &gt; &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel Orientation="Horizontal" VerticalAlignment="Top"/&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;ListBoxItem Content="{Binding}" VerticalAlignment="Top" VerticalContentAlignment="Top"/&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; &lt;/Grid&gt; </code></pre> <p></p> <pre><code>using System.Windows; namespace WpfApplication5 { public partial class Window1 :Window { public Window1() { InitializeComponent(); this.listBox.ItemsSource = new MyType[] { new MyType{ MyValue = "Tall\nItem" }, new MyType{ MyValue = "I want this aligned to the top" } }; } } public class MyType { public string MyValue { get; set; } } } </code></pre> http://stackoverflow.com/questions/1021521/how-does-stl-algorithm-work-independent-of-iterator-type/1021620#1021620 0 Answer by jyoung for How does STL algorithm work independent of Iterator type? jyoung 2009-06-20T13:26:25Z 2009-06-20T13:26:25Z <p>Not all STL container/iterator algorithms have this independence. The ones that do are call Generic Algorithms, but these are usually just called STL algorithms.</p> <p>With iterators only you can:</p> <ul> <li>inspect the sequence so you can do things like find, count, for_each,…</li> <li>change the value of the iterator references so you can do things like transform, copy, rotate, swap, replace, …</li> <li>reorder the values of the iterators, so you can do things like sort, merger, nth_element.</li> </ul> <p>Some non-generic algorithms can be broken up into 2 stages, a STL Generic part and a container dependent part. So in order to destroy all values that are greater than 7 in a vector we can do a remove_if ( the generic part which only sorts the elements) followed by a erase ( the non-generic part that destroys the value).</p> http://stackoverflow.com/questions/195593/why-use-a-owner-window-in-messagebox-show 3 Why use a owner window in MessageBox.Show? jyoung 2008-10-12T15:15:24Z 2009-06-01T07:05:53Z <p>MessageBox.Show has forms like MessageBox.Show( ownerWindow, .... ).</p> <p>What do I gain by assigning a owner window?</p> http://stackoverflow.com/questions/873270/designer-rejecting-datatemplate-datatype/884388#884388 1 Answer by jyoung for Designer rejecting DataTemplate.DataType jyoung 2009-05-19T18:41:22Z 2009-05-19T18:41:22Z <p>It was caused by having a space in the Assembly name.</p> http://stackoverflow.com/questions/802537/is-there-a-statement-to-prepend-an-element-t-to-a-ienumerablet 2 Is there a statement to prepend an element T to a IEnumerable<T>. jyoung 2009-04-29T14:13:23Z 2009-04-29T14:52:26Z <p>For example:</p> <pre><code>string element = 'a'; IEnumerable&lt;string&gt; list = new List&lt;string&gt;{ 'b', 'c', 'd' }; IEnumerable&lt;string&gt; singleList = ???; //singleList yields 'a', 'b', 'c', 'd' </code></pre> http://stackoverflow.com/questions/774731/serialport-cf-2-0-prevent-losing-data/774936#774936 1 Answer by jyoung for SerialPort + CF 2.0 prevent losing data jyoung 2009-04-21T22:30:06Z 2009-04-21T22:30:06Z <p>You do not handle the case of recieving multiple STX's, or ETX's in one DataReceived packet.</p> http://stackoverflow.com/questions/748573/why-executecodewithguaranteedcleanup-doesnt-work/748618#748618 -1 Answer by jyoung for Why ExecuteCodeWithGuaranteedCleanup doesn't work? jyoung 2009-04-14T17:32:05Z 2009-04-14T17:32:05Z <p>Starting with the .NET Framework version 2.0, a StackOverflowException object cannot be caught by a try-catch block and the corresponding process is terminated by default</p> http://stackoverflow.com/questions/727921/what-is-the-purpose-of-observablecollection-raising-a-propertychange-of-item 1 What is the purpose of ObservableCollection raising a PropertyChange of "Item[]"? jyoung 2009-04-07T23:01:04Z 2009-04-08T00:56:24Z <p>What is the purpose of ObservableCollection raising a PropertyChange of "Item[]"?</p> <p>Is this something I should be doing if I have a class that implements INotifyCollectionChanged?</p> <p>Do WPF controls use this PropertyChange of "Item[]" somehow?</p> http://stackoverflow.com/questions/677903/is-there-wpf-xaml-for-uniform-fit-but-constant-strokethickness 0 Is there WPF XAML for Uniform fit but constant StrokeThickness jyoung 2009-03-24T15:26:28Z 2009-03-24T16:53:20Z <p>I what to draw a circle that uniformly fits into its space, with a constant a stoke thickness. A ViewBox gets me the uniform fit, but not the constant stoke thickness.</p> <pre><code>&lt;Viewbox Stretch="Uniform" MinHeight="10" MinWidth="10" &gt; &lt;Ellipse Height="10" Width="10" Fill="Red" StrokeThickness="1" Stroke="Yellow"/&gt; &lt;/Viewbox&gt; </code></pre> http://stackoverflow.com/questions/666017/problem-with-messagebox-show-in-catch/666236#666236 0 Answer by jyoung for Problem with MessageBox.Show in catch jyoung 2009-03-20T13:53:17Z 2009-03-20T13:53:17Z <p>Fix the errors first.</p> <pre><code>Reports_Group_Chooser.SelectedIndex= 0; Reports_Group_Chooser.Items.RemoveAt(NewGroup); MessageBox.Show("The file for this group is missing. Cannot continue.","File Error",MessageBoxButtons.OK, MessageBoxIcon.Exclamation); </code></pre> http://stackoverflow.com/questions/660008/is-midioutprepareheader-a-quick-call 0 Is midiOutPrepareHeader a quick call? jyoung 2009-03-18T20:40:30Z 2009-03-18T20:54:57Z <p>Does midiOutPrepareHeader, midiInPrepareHeader just setup some data fields, or does it do something that is more time intensive?</p> <p>I am trying to decide whether to build and destroy the MIDIHDR's as needed, or to maintain a pool of them.</p> http://stackoverflow.com/questions/595321/is-there-itemspaneltemplate-that-will-make-the-items-uniformly-fill-the-control 0 Is there ItemsPanelTemplate that will make the Items uniformly fill the control ? jyoung 2009-02-27T15:53:18Z 2009-02-27T16:07:54Z <p>I have a ItemsControl and I will like the items to uniformly fill the the control. Using a StackPanel as the ItemsPanelTemplate only stretches in one direction.</p> http://stackoverflow.com/questions/333400/how-to-design-a-simple-c-object-factory/546058#546058 0 Answer by jyoung for How to design a simple C++ object factory? jyoung 2009-02-13T14:11:25Z 2009-02-13T14:11:25Z <p>This maybe heavier than you need, but it sounds like you are trying to make a frame work class that supports plugins.</p> <p>I would break it up into to 3 sections.</p> <p>1) The FrameWork class would own the plugins. This class is responsable for publishing interfaces supplied by the plugins.</p> <p>2) A PlugIn class would own the componets that do the work. This class is responsable for registering the exported interfaces, and binding the imported interfaces to the components.</p> <p>3) The third section, the componets are the suppliers and consumers of the interfaces.</p> <p>To make things extensible, getting things up and running might be broke up into stages.</p> <ol> <li>Create everything.</li> <li>Wire everything up.</li> <li>Start everything.</li> </ol> <p>To break things down.</p> <ol> <li>Stop everything.</li> <li>Destroy everything.</li> </ol> <pre> class IFrameWork { public: virtual ~IFrameWork() {} virtual void RegisterInterface( const char*, void* ) = 0; virtual void* GetInterface( const char* name ) = 0; }; class IPlugIn { public: virtual ~IPlugIn() {} virtual void BindInterfaces( IFrameWork* frameWork ) {}; virtual void Start() {}; virtual void Stop() {}; }; struct SamplePlugin :public IPlugIn { ILogger* logger; Component1 component1; WebServer webServer; public: SamplePlugin( IFrameWork* frameWork ) :logger( (ILogger*)frameWork->GetInterface( "ILogger" ) ), //assumes the 'System' plugin exposes this component1(), webServer( component1 ) { logger->Log( "MyPlugin Ctor()" ); frameWork->RegisterInterface( "ICustomerManager", dynamic_cast( &component1 ) ); frameWork->RegisterInterface( "IVendorManager", dynamic_cast( &component1 ) ); frameWork->RegisterInterface( "IAccountingManager", dynamic_cast( &webServer ) ); } virtual void BindInterfaces( IFrameWork* frameWork ) { logger->Log( "MyPlugin BindInterfaces()" ); IProductManager* productManager( static_cast( frameWork->GetInterface( "IProductManager" ) ) ); IShippingManager* shippingManager( static_cast( frameWork->GetInterface( "IShippingManager" ) ) ); component1.BindInterfaces( logger, productManager ); webServer.BindInterfaces( logger, productManager, shippingManager ); } virtual void Start() { logger->Log( "MyPlugin Start()" ); webServer.Start(); } virtual void Stop() { logger->Log( "MyPlugin Stop()" ); webServer.Stop(); } }; class FrameWork :public IFrameWork { vector plugIns; map interfaces; public: virtual void RegisterInterface( const char* name, void* itfc ) { interfaces[ name ] = itfc; } virtual void* GetInterface( const char* name ) { return interfaces[ name ]; } FrameWork() { //Only interfaces in 'SystemPlugin' can be used by all methods of the other plugins plugIns.push_back( new SystemPlugin( this ) ); plugIns.push_back( new SamplePlugin( this ) ); //add other plugIns here for_each( plugIns.begin(), plugIns.end(), bind2nd( mem_fun( &IPlugIn::BindInterfaces ), this ) ); for_each( plugIns.begin(), plugIns.end(), mem_fun( &IPlugIn::Start ) ); } ~FrameWork() { for_each( plugIns.rbegin(), plugIns.rend(), mem_fun( &IPlugIn::Stop ) ); for_each( plugIns.rbegin(), plugIns.rend(), Delete() ); } }; </pre> http://stackoverflow.com/questions/491834/how-can-i-determine-what-finalizers-are-being-called 1 How can I determine what finalizers are being called? jyoung 2009-01-29T14:39:28Z 2009-02-11T21:01:21Z <p>Since a finalizer being called usually indicates a missing Dispose() call, I would like determine what finalizers are being called.</p> http://stackoverflow.com/questions/457872/how-do-you-check-the-windows-version-in-win32-at-runtime 1 How do you check the windows version in Win32 at runtime? jyoung 2009-01-19T15:02:52Z 2009-01-20T15:32:16Z <p>How do you check the windows version in Win32 at runtime?</p> http://stackoverflow.com/questions/230299/can-i-position-nets-forms-message-box-or-common-dialogs 4 Can I position .net's (Forms) Message box or Common dialogs? jyoung 2008-10-23T15:54:14Z 2009-01-16T11:13:25Z <p>I am trying to get center of parent form, not center of screen behavior. Passing in the parent form seems to only control the ownership of the window. These classes are sealed, so I do not see how I can do any WinProc tricks. Rewriting the classes is not an appealing option. Any other ideas?</p> http://stackoverflow.com/questions/425235/how-to-properly-and-completely-close-reset-a-tcpclient-connection/428251#428251 0 Answer by jyoung for How to properly and completely close/reset a TcpClient connection? jyoung 2009-01-09T14:35:40Z 2009-01-09T14:35:40Z <p>Except for some internal logging, Close == Dispose.</p> <p>Dispose calls tcpClient.Client.Shutdown( SocketShutdown.Both ), but its eats any errors. Maybe if you call it directly, you can get some useful exception information.</p> http://stackoverflow.com/questions/366602/how-to-translate-a-virtual-memory-address-to-a-physical-address/366944#366944 -1 Answer by jyoung for How to translate a virtual memory address to a physical address? jyoung 2008-12-14T20:28:38Z 2008-12-14T20:28:38Z <p>Wait, there is more. For the privilege of runnning on your customer's Vista 64 bit, you get expend more time and money to get your kernal mode driver resigned my Microsoft,</p> http://stackoverflow.com/questions/1325248/should-fxcop-specify-iformat-provider-catch-int32-tryparse-violations/1325261#1325261 Comment by jyoung on Should FxCop 'Specify IFormat Provider' catch Int32.TryParse violations? jyoung 2009-08-24T23:18:42Z 2009-08-24T23:18:42Z Thanks, I did not realize that Int32.TryParse( &quot;0.0&quot;, out temp ); //=&gt; false http://stackoverflow.com/questions/1265354/how-to-design-a-state-machine-in-face-of-non-blocking-i-o/1266522#1266522 Comment by jyoung on How to design a state machine in face of non-blocking I/O? jyoung 2009-08-13T06:41:24Z 2009-08-13T06:41:24Z 1) Note that in the QT network module the &quot;waitfor...&quot; statements turn the non blocking IO into blocking IO. For example: socket.connectToHost(serverName, serverPort); socket.waitForConnected(); 2) Realize that your list of commands given have a simple 1-1 correspondance to to the blocking IO operations. This seems like you design intention was to keep the IO state machine simple and dumb, and the let the &quot;client&quot; for the IO state machine decide (via the command list) the I/O sequence. http://stackoverflow.com/questions/1041129/in-a-horizontal-listbox-how-do-i-align-items-to-the-top/1041165#1041165 Comment by jyoung on In a horizontal listbox how do I align items to the top? jyoung 2009-06-24T21:50:03Z 2009-06-24T21:50:03Z Arrrrrg, so simple. Thanks. http://stackoverflow.com/questions/872323/method-call-if-not-null-in-c/874046#874046 Comment by jyoung on Method call if not null in C# jyoung 2009-05-17T13:05:46Z 2009-05-17T13:05:46Z This is not the race condition that is refered to. The race condition is if (MyEvent != null) //MyEvent is not null now MyEvent.Invoke(); //MyEvent is null now, bad things happen So with this race condition, I can not write a async event handler that is guarantied to work. However with your 'race condition', I can write a async event handler that is guarantied to work. Of course the calls to subscriber and unsubscriber need to be synchronous, or lock code is required there. http://stackoverflow.com/questions/802537/is-there-a-statement-to-prepend-an-element-t-to-a-ienumerablet/802553#802553 Comment by jyoung on Is there a statement to prepend an element T to a IEnumerable<T>. jyoung 2009-04-29T14:51:30Z 2009-04-29T14:51:30Z There was a typo: use Concat, not Union http://stackoverflow.com/questions/727921/what-is-the-purpose-of-observablecollection-raising-a-propertychange-of-item/727974#727974 Comment by jyoung on What is the purpose of ObservableCollection raising a PropertyChange of "Item[]"? jyoung 2009-04-07T23:35:32Z 2009-04-07T23:35:32Z I am confused. You say that WPF uses 'PropertyChange of &quot;Item[]&quot;', but I should implement 'CollectionChanged'. http://stackoverflow.com/questions/677903/is-there-wpf-xaml-for-uniform-fit-but-constant-strokethickness/678063#678063 Comment by jyoung on Is there WPF XAML for Uniform fit but constant StrokeThickness jyoung 2009-03-24T17:17:07Z 2009-03-24T17:17:07Z It's a circle now. Thanks. http://stackoverflow.com/questions/677903/is-there-wpf-xaml-for-uniform-fit-but-constant-strokethickness/678063#678063 Comment by jyoung on Is there WPF XAML for Uniform fit but constant StrokeThickness jyoung 2009-03-24T16:09:31Z 2009-03-24T16:09:31Z But it is no longer a circle. :) http://stackoverflow.com/questions/660008/is-midioutprepareheader-a-quick-call/660061#660061 Comment by jyoung on Is midiOutPrepareHeader a quick call? jyoung 2009-03-18T22:10:37Z 2009-03-18T22:10:37Z The public symbols did help a lot. http://stackoverflow.com/questions/491834/how-can-i-determine-what-finalizers-are-being-called/491858#491858 Comment by jyoung on How can I determine what finalizers are being called? jyoung 2009-01-29T14:58:17Z 2009-01-29T14:58:17Z That is good for my classes. I would like that ability for framework classes also. http://stackoverflow.com/questions/366602/how-to-translate-a-virtual-memory-address-to-a-physical-address Comment by jyoung on How to translate a virtual memory address to a physical address? jyoung 2008-12-14T15:54:04Z 2008-12-14T15:54:04Z I am curious, what could an external device do with a physical memory address? http://stackoverflow.com/questions/346957/can-not-round-trip-html-format-to-clipboard/346969#346969 Comment by jyoung on Can not round trip html format to clipboard. jyoung 2008-12-06T23:38:34Z 2008-12-06T23:38:34Z Thanks for testing it. I had tried your reference's code also. I could not get that to work either. http://stackoverflow.com/questions/243209/can-i-fix-the-vs-debugger-trying-to-connect-to-unconnected-mapped-drive/243245#243245 Comment by jyoung on Can I fix the VS Debugger trying to connect to unconnected mapped drive. jyoung 2008-10-28T13:28:47Z 2008-10-28T13:28:47Z See the new question edits for my answer. http://stackoverflow.com/questions/230299/can-i-position-nets-forms-message-box-or-common-dialogs/230496#230496 Comment by jyoung on Can I position .net's (Forms) Message box or Common dialogs? jyoung 2008-10-23T18:06:33Z 2008-10-23T18:06:33Z This also works. http://stackoverflow.com/questions/195635/how-do-i-pass-in-an-owner-window-to-messagebox-show-on-a-different-thread/195673#195673 Comment by jyoung on How do I pass in an owner window to MessageBox.Show on a different thread? jyoung 2008-10-12T21:37:19Z 2008-10-12T21:37:19Z Thanks for the link, the important fact is taht window ownership is not transitive. So if you have form, spawning a form, spawning a MessageBox, you should pass in the original form as the owner of the MessageBox.