User jyoung - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:40:57Zhttp://stackoverflow.com/feeds/user/14841http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1640154/determining-when-net-is-about-to-be-loaded-in-unmanaged-c/1666565#16665650Answer by jyoung for Determining when .NET is about to be loaded in (unmanaged) C++jyoung2009-11-03T10:43:35Z2009-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#16140780Answer by jyoung for Mouse jiggling / message processing loopjyoung2009-10-23T15:06:04Z2009-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 & 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#13523660Answer by jyoung for Precise OpacityMaskjyoung2009-08-29T21:05:15Z2009-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><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">
<Border Padding="20" Background="DarkGray" Width="240" Height="240"> <!-- user container -->
<Grid> <!-- the control -->
<Border Background="LightBlue" HorizontalAlignment="Stretch"> <!-- control mask-->
<Canvas>
<Rectangle Canvas.Left="50" Canvas.Top="50" Width="50" Height="50"
Stroke="Red" StrokeThickness="2"
Fill="White"
/>
<Canvas.OpacityMask>
<DrawingBrush Stretch="None" AlignmentX="Left" AlignmentY="Top" TileMode="None">
<DrawingBrush.Drawing>
<DrawingGroup>
<GeometryDrawing Brush="#30000000">
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="0,0,200,200" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
<GeometryDrawing Brush="Black">
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="50,50,50,50" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingBrush.Drawing>
</DrawingBrush>
</Canvas.OpacityMask>
</Canvas>
</Border>
<Canvas> <!-- control image-->
<Line X1="-10" Y1="150" X2="120" Y2="150" Stroke="Red" StrokeThickness="2"/>
</Canvas>
</Grid>
</Border>
</Window>
</code></pre>
http://stackoverflow.com/questions/1101147/code-demonstrating-the-importance-of-a-constrained-execution-region/1349519#13495191Answer by jyoung for Code demonstrating the importance of a Constrained Execution Regionjyoung2009-08-28T21:39:04Z2009-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#13420400Answer by jyoung for how to cancel background worker after specified time in c#jyoung2009-08-27T15:59:10Z2009-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 => CancelAsync(), null, TimeSpan.FromMinutes( 1 ), TimeSpan.Zero ) )
using( var abortTimeout = new System.Threading.Timer( o => thread.Abort(), null, TimeSpan.FromMinutes( 2 ), TimeSpan.Zero ) ) {
for( int i = 0; i <= 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-violations1Should FxCop 'Specify IFormat Provider' catch Int32.TryParse violations?jyoung2009-08-24T23:03:25Z2009-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#12665220Answer by jyoung for How to design a state machine in face of non-blocking I/O?jyoung2009-08-12T14:26:54Z2009-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#12337190Answer by jyoung for In WPF, how do I give my custom control a default style to be used in Design Mode?jyoung2009-08-05T14:43:35Z2009-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-drive0Can I fix the VS Debugger trying to connect to unconnected mapped drive.jyoung2008-10-28T13:06:59Z2009-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-synchronizingob1In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject?jyoung2008-10-31T15:11:02Z2009-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-640How can I get a 64 bit USB driver to load in Vista 64.jyoung2008-11-19T16:33:12Z2009-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 & 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-datatype1Designer rejecting DataTemplate.DataType jyoung2009-05-16T20:43:56Z2009-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><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">
<UserControl.Resources>
<DataTemplate DataType="{x:Type local:MyClassInternal}"/> <!--OK-->
<ObjectDataProvider x:Key="ClassPublicKey" ObjectType="{x:Type local:MyClassPublic}"/> <!--OK-->
<!-- Type reference cannot find public type named 'MyClassPublic' -->
<DataTemplate DataType="{x:Type local:MyClassPublic}"/> <!--FAILS-->
</UserControl.Resources>
<TextBlock>Hello World</TextBlock>
</UserControl>
</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-top0In a horizontal listbox how do I align items to the top?jyoung2009-06-24T21:34:02Z2009-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><Window.Resources>
<DataTemplate DataType="{x:Type l:MyType}">
<Grid VerticalAlignment="Top">
<TextBlock VerticalAlignment="Top" Text="{Binding MyValue}" Background="Yellow"/>
</Grid>
</DataTemplate>
</Window.Resources>
<Grid>
<ListBox Name="listBox" ItemsSource="{Binding}" VerticalAlignment="Top" >
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<ListBoxItem Content="{Binding}" VerticalAlignment="Top" VerticalContentAlignment="Top"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</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#10216200Answer by jyoung for How does STL algorithm work independent of Iterator type?jyoung2009-06-20T13:26:25Z2009-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-show3Why use a owner window in MessageBox.Show?jyoung2008-10-12T15:15:24Z2009-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#8843881Answer by jyoung for Designer rejecting DataTemplate.DataType jyoung2009-05-19T18:41:22Z2009-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-ienumerablet2Is there a statement to prepend an element T to a IEnumerable<T>.jyoung2009-04-29T14:13:23Z2009-04-29T14:52:26Z
<p>For example:</p>
<pre><code>string element = 'a';
IEnumerable<string> list = new List<string>{ 'b', 'c', 'd' };
IEnumerable<string> singleList = ???; //singleList yields 'a', 'b', 'c', 'd'
</code></pre>
http://stackoverflow.com/questions/774731/serialport-cf-2-0-prevent-losing-data/774936#7749361Answer by jyoung for SerialPort + CF 2.0 prevent losing datajyoung2009-04-21T22:30:06Z2009-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-1Answer by jyoung for Why ExecuteCodeWithGuaranteedCleanup doesn't work?jyoung2009-04-14T17:32:05Z2009-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-item1What is the purpose of ObservableCollection raising a PropertyChange of "Item[]"?jyoung2009-04-07T23:01:04Z2009-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-strokethickness0Is there WPF XAML for Uniform fit but constant StrokeThicknessjyoung2009-03-24T15:26:28Z2009-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><Viewbox Stretch="Uniform" MinHeight="10" MinWidth="10" >
<Ellipse Height="10" Width="10" Fill="Red" StrokeThickness="1" Stroke="Yellow"/>
</Viewbox>
</code></pre>
http://stackoverflow.com/questions/666017/problem-with-messagebox-show-in-catch/666236#6662360Answer by jyoung for Problem with MessageBox.Show in catchjyoung2009-03-20T13:53:17Z2009-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-call0Is midiOutPrepareHeader a quick call?jyoung2009-03-18T20:40:30Z2009-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-control0Is there ItemsPanelTemplate that will make the Items uniformly fill the control ?jyoung2009-02-27T15:53:18Z2009-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#5460580Answer by jyoung for How to design a simple C++ object factory?jyoung2009-02-13T14:11:25Z2009-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-called1How can I determine what finalizers are being called?jyoung2009-01-29T14:39:28Z2009-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-runtime1How do you check the windows version in Win32 at runtime?jyoung2009-01-19T15:02:52Z2009-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-dialogs4Can I position .net's (Forms) Message box or Common dialogs?jyoung2008-10-23T15:54:14Z2009-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#4282510Answer by jyoung for How to properly and completely close/reset a TcpClient connection?jyoung2009-01-09T14:35:40Z2009-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-1Answer by jyoung for How to translate a virtual memory address to a physical address?jyoung2008-12-14T20:28:38Z2008-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#1325261Comment by jyoung on Should FxCop 'Specify IFormat Provider' catch Int32.TryParse violations?jyoung2009-08-24T23:18:42Z2009-08-24T23:18:42ZThanks, I did not realize that
Int32.TryParse( "0.0", out temp ); //=> falsehttp://stackoverflow.com/questions/1265354/how-to-design-a-state-machine-in-face-of-non-blocking-i-o/1266522#1266522Comment by jyoung on How to design a state machine in face of non-blocking I/O?jyoung2009-08-13T06:41:24Z2009-08-13T06:41:24Z1) Note that in the QT network module the "waitfor..." 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 "client" 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#1041165Comment by jyoung on In a horizontal listbox how do I align items to the top?jyoung2009-06-24T21:50:03Z2009-06-24T21:50:03ZArrrrrg, so simple.
Thanks.http://stackoverflow.com/questions/872323/method-call-if-not-null-in-c/874046#874046Comment by jyoung on Method call if not null in C#jyoung2009-05-17T13:05:46Z2009-05-17T13:05:46ZThis 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#802553Comment by jyoung on Is there a statement to prepend an element T to a IEnumerable<T>.jyoung2009-04-29T14:51:30Z2009-04-29T14:51:30ZThere was a typo: use Concat, not Unionhttp://stackoverflow.com/questions/727921/what-is-the-purpose-of-observablecollection-raising-a-propertychange-of-item/727974#727974Comment by jyoung on What is the purpose of ObservableCollection raising a PropertyChange of "Item[]"?jyoung2009-04-07T23:35:32Z2009-04-07T23:35:32ZI am confused. You say that WPF uses 'PropertyChange of "Item[]"', but I should implement 'CollectionChanged'.http://stackoverflow.com/questions/677903/is-there-wpf-xaml-for-uniform-fit-but-constant-strokethickness/678063#678063Comment by jyoung on Is there WPF XAML for Uniform fit but constant StrokeThicknessjyoung2009-03-24T17:17:07Z2009-03-24T17:17:07ZIt's a circle now. Thanks.http://stackoverflow.com/questions/677903/is-there-wpf-xaml-for-uniform-fit-but-constant-strokethickness/678063#678063Comment by jyoung on Is there WPF XAML for Uniform fit but constant StrokeThicknessjyoung2009-03-24T16:09:31Z2009-03-24T16:09:31ZBut it is no longer a circle. :)http://stackoverflow.com/questions/660008/is-midioutprepareheader-a-quick-call/660061#660061Comment by jyoung on Is midiOutPrepareHeader a quick call?jyoung2009-03-18T22:10:37Z2009-03-18T22:10:37ZThe public symbols did help a lot. http://stackoverflow.com/questions/491834/how-can-i-determine-what-finalizers-are-being-called/491858#491858Comment by jyoung on How can I determine what finalizers are being called?jyoung2009-01-29T14:58:17Z2009-01-29T14:58:17ZThat 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-addressComment by jyoung on How to translate a virtual memory address to a physical address?jyoung2008-12-14T15:54:04Z2008-12-14T15:54:04ZI 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#346969Comment by jyoung on Can not round trip html format to clipboard.jyoung2008-12-06T23:38:34Z2008-12-06T23:38:34ZThanks 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#243245Comment by jyoung on Can I fix the VS Debugger trying to connect to unconnected mapped drive.jyoung2008-10-28T13:28:47Z2008-10-28T13:28:47ZSee the new question edits for my answer.http://stackoverflow.com/questions/230299/can-i-position-nets-forms-message-box-or-common-dialogs/230496#230496Comment by jyoung on Can I position .net's (Forms) Message box or Common dialogs?jyoung2008-10-23T18:06:33Z2008-10-23T18:06:33ZThis also works.
http://stackoverflow.com/questions/195635/how-do-i-pass-in-an-owner-window-to-messagebox-show-on-a-different-thread/195673#195673Comment by jyoung on How do I pass in an owner window to MessageBox.Show on a different thread?jyoung2008-10-12T21:37:19Z2008-10-12T21:37:19ZThanks 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.