jyoung

713
Reputation
81 views

Registered User

Name jyoung
Member for 1 year
Seen yesterday
Website
Location
Age
Nov
20
awarded  Popular Question
Nov
4
awarded  Popular Question
Nov
3
answered Determining when .NET is about to be loaded in (unmanaged) C++
Oct
23
answered Mouse jiggling / message processing loop
Sep
18
awarded  Yearling
Aug
29
answered Precise OpacityMask
Aug
29
revised Code demonstrating the importance of a Constrained Execution Region
Added an explanation.
Aug
28
answered Code demonstrating the importance of a Constrained Execution Region
Aug
27
answered how to cancel background worker after specified time in c#
Aug
24
comment Should FxCop ‘Specify IFormat Provider’ catch Int32.TryParse violations?
Thanks, I did not realize that Int32.TryParse( "0.0", out temp ); //=> false
Aug
24
accepted Designer rejecting DataTemplate.DataType
Aug
24
accepted Can I test a floppy drive using WMI & System.Management namespace?
Aug
24
asked Should FxCop ‘Specify IFormat Provider’ catch Int32.TryParse violations?
Aug
13
comment How to design a state machine in face of non-blocking I/O?
1) 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.
Aug
12
answered How to design a state machine in face of non-blocking I/O?
Aug
5
answered In WPF, how do I give my custom control a default style to be used in Design Mode?
Jun
24
comment In a horizontal listbox how do I align items to the top?
Arrrrrg, so simple. Thanks.
Jun
24
asked In a horizontal listbox how do I align items to the top?
Jun
20
answered How does STL algorithm work independent of Iterator type?