User Thom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T22:00:18Zhttp://stackoverflow.com/feeds/user/24618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1783642/forcing-winforms-autoresize-to-happen0Forcing WinForms AutoResize to happenThom2009-11-23T14:59:40Z2009-11-23T15:39:32Z
<p>I have the following structure in a Windows Form:</p>
<pre><code>Form (AutoResize = true, AutoSizeMode = GrowAndShrink)
FlowLayout (AutoResize = true, AutoSizeMode = GrowAndShrink)
GroupBox
GroupBox
GroupBox
StatusStrip
</code></pre>
<p>My expectation is that changing the visibility of the GroupBoxes should cause the Window to snap to a new size to reclaim empty space, or accommodate new controls. However, this doesn't happen automatically. If I minimise to the tray and then restore the form (i.e. toggle Visible, ShowInTaskbar, WindowState = Normal/Minimized), then when it reappears, it will have updated correctly. Another thing that triggers it is an update to content in a StatusStrip at the bottom of the page (showing a label, changing a progress bar etc). I've tried various voodoo-inspired combinations of Invalidate/Update/OnResize etc, but I feel I'm missing something a bit more fundamental and hope somebody can see the obvious flaw in what I'm describing.</p>
<p>All my updates to widgets on the form are inside InvokeRequired/Invoke, if that's relevant.</p>
http://stackoverflow.com/questions/1783563/is-it-safe-to-store-user-object-in-a-cookie/1783739#17837390Answer by Thom for Is it safe to store user object in a cookie?Thom2009-11-23T15:14:04Z2009-11-23T15:14:04Z<p>You can trust information in the cookie if you use something like <a href="http://en.wikipedia.org/wiki/Hmac" rel="nofollow">Hmac</a>. Users could still <em>see</em> the data, but you would know if they had tampered with it (for example, changing their username to someone's else's in an attempt to see another user's data). If you don't want them to see the data, you could also symettrically encrypt the data you're sending. Obviously there's a CPU overhead to all of this, and a bandwidth overhead the more stuff you cram in there, but it's entirely legitimate to do what you're asking.</p>
http://stackoverflow.com/questions/1545796/exposing-a-function-from-java-to-rhino2Exposing a function from Java to RhinoThom2009-10-09T20:04:04Z2009-10-09T20:57:40Z
<p>It's easy to make objects available to Rhino from Java using <code>ScriptableObject.putProperty</code>, but is there a way to expose a top-level function? That is, can I make it so scripts in Rhino can call <code>foo()</code> and have that call out to Java code?</p>
http://stackoverflow.com/questions/1545332/controlling-other-windows-from-c-app/1545855#15458551Answer by Thom for Controlling other windows from C# appThom2009-10-09T20:20:28Z2009-10-09T20:20:28Z<p>If you want a more natural API to do this, you could do worse than White. It's mainly aimed at functional testing (and based on the Windows Accessibility APIs Jim mentioned), but should serve for your purposes. Have a look at <a href="http://white.codeplex.com/Wiki/View.aspx?title=Working%20with%20window" rel="nofollow">this page about working with windows</a>. You'd probably write something like:</p>
<pre><code>var application = Application.Attach(processID);
var window = application.GetWindow(windowName);
window.DisplayState = DisplayState.Minimized;
</code></pre>
http://stackoverflow.com/questions/1439900/how-to-check-if-c-class-has-security-attribute-used/1443581#14435810Answer by Thom for How to check if C# class has security attribute usedThom2009-09-18T10:00:59Z2009-09-18T10:00:59Z<p>I don't have an answer, but if it gives people more information to reproduce the issue:</p>
<pre><code>[TestFixture]
public class SecurityExperiments
{
[Test]
public void ShouldGetCustomSecurityAttributes()
{
Assert.That(typeof (Applied).GetCustomAttributes(true),
Has.Some.InstanceOf<PluginSection>());
}
public class PluginSection : CodeAccessSecurityAttribute
{
public PluginSection(SecurityAction action)
: base(action)
{
}
public override IPermission CreatePermission()
{
// Removed for demo purposes
return null;
}
}
[PluginSection(SecurityAction.Demand)]
class Applied { }
}
</code></pre>
<p>Causes (for my test project, at least):</p>
<pre><code>System.TypeLoadException: Could not load type 'PluginSection' from assembly 'StackOverflow, Version=1.0.0.0, Culture=neutral'.
at System.Reflection.PseudoCustomAttribute._GetSecurityAttributes(Void* module, Int32 token, Object[]& securityAttributes)
at System.Reflection.PseudoCustomAttribute.GetCustomAttributes(RuntimeType type, Type caType, Boolean includeSecCa, ref Int32 count)
at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeType type, RuntimeType caType, Boolean inherit)
at System.RuntimeType.GetCustomAttributes(Boolean inherit)
at StackOverflow.SecurityExperiments.ShouldGetCustomSecurityAttributes() in SecurityExperiments.cs: line 13
</code></pre>
http://stackoverflow.com/questions/1007203/uiautomation-with-toolstripstatuslabel0UIAutomation with ToolStripStatusLabelThom2009-06-17T13:58:30Z2009-08-18T03:09:05Z
<p>I have a WinForms app, and I can't seem to access the text of a <code>ToolStripStatusLabel</code> through UIAutomation. Microsoft <a href="http://msdn.microsoft.com/en-us/library/ms744822%28VS.85%29.aspx" rel="nofollow">implies</a> that the support for <code>StatusStrip</code>s (and presumably items within them) is limited, but this seems like a basic enough use case that it should work.</p>
<p>The control shows up with <code>ControlType.Edit</code> in UISpy, and appears to just be read-only text box, however its value is always the same as its name, not its text.</p>
<p>The properties in UISpy are as follows:</p>
<pre><code>AutomationElement
General Accessibility
AccessKey: ""
AcceleratorKey: ""
IsKeyboardFocusable: "False"
LabeledBy: "(null)"
HelpText: ""
State
IsEnabled: "True"
HasKeyboardFocus: "False"
Identification
ClassName: ""
ControlType: "ControlType.Edit"
Culture: "(null)"
AutomationId: "StatusBar.Pane0"
LocalizedControlType: "edit"
Name: "My Label"
ProcessId: "3972 (*****)"
RuntimeId: "42 134002 0"
IsPassword: "False"
IsControlElement: "True"
IsContentElement: "True"
Visibility
BoundingRectangle: "(9, 273, 79, 17)"
ClickablePoint: "48,281"
IsOffscreen: "False"
ControlPatterns
GridItem
Row: "0"
Column: "0"
RowSpan: "1"
ColumnSpan: "1"
ContainingGrid: ""status bar" "statusStrip""
Value
Value: "My Label"
IsReadOnly: "True"
</code></pre>
<p>Basically, I'm hoping for some way to go <code>myLabel.Text = "something"</code> and be able to get that value out somehow through UIAutomation.</p>
http://stackoverflow.com/questions/1193800/autorun-a-cd-from-process-start0Autorun a CD from Process.StartThom2009-07-28T12:33:21Z2009-07-30T11:28:34Z
<p>What is the closest way to emulate autorunning a CD (or other media, I guess) using <code>Process.Start</code> and <code>ProcessStartInfo</code>?</p>
<p>I've tried obvious things like:</p>
<pre><code>// Just opens the folder
Process.Start("F:");
// Ditto
Process.Start(new ProcessStartInfo("F:") {UseShellExecute = true});
// Throws System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
Process.Start(new ProcessStartInfo("F:") {UseShellExecute = true, Verb = "autorun"});
</code></pre>
<p>I can obviously parse the <code>autorun.inf</code> file to work out the executable involved, but I'm just wondering if there's a simpler way to do it.</p>
http://stackoverflow.com/questions/961673/method-missing-difficulties-in-c-4-0-dynamic-vs-realproxy0Method-missing difficulties in C# 4.0: dynamic vs RealProxyThom2009-06-07T10:38:40Z2009-07-01T20:43:17Z
<p>Does anyone know of a way to intercept <code>dynamic</code> method calls (particularly those that are going to raise <code>RuntimeBinderException</code>s) with a <code>RealProxy</code>? I was hoping to catch the exception and implement 'method missing' on top of that, but it appears to be thrown before the interceptor gets a look-in.</p>
<p>My test just looks like:</p>
<pre><code>dynamic hello = MethodMissingInterceptor<DynamicObject>.Create();
Assert.AreEqual("World", hello.World());
</code></pre>
<p>Where <code>World</code> isn't actually implemented on <code>DynamicObject</code>. The interceptor is pretty straightforward - I was hoping to check <code>IMethodReturnMessage.Exception</code> for <code>RuntimeBinderException</code> and forward on to something like:</p>
<pre><code>public IMessage MethodMissing(IMethodCallMessage call)
{
return new ReturnMessage(call.MethodBase.Name, new object[0], 0, call.LogicalCallContext, call);
}
</code></pre>
<p>Unfortunately, all I see in my interceptor are some calls to <code>GetType</code>, and not the non-existant <code>World</code> method.</p>
<p>Failing that - does anyone know if there's a <code>DynamicProxy</code> version running happily on .NET 4.0 yet that might have tackled the problem?</p>
http://stackoverflow.com/questions/1007203/uiautomation-with-toolstripstatuslabel/1048071#10480710Answer by Thom for UIAutomation with ToolStripStatusLabelThom2009-06-26T08:51:30Z2009-06-26T08:51:30Z<p>I've had to work around this by having two separate labels with different text, and showing and hiding the appropriate one. This is enough for my purposes (testing with White), but I'm very surprised that UIAutomation doesn't surface the text value - it basically means all text in status bars in WinForms applications is inaccessible to screen readers.</p>
http://stackoverflow.com/questions/164147/character-offset-in-an-internet-explorer-textrange3Character offset in an Internet Explorer TextRangeThom2008-10-02T19:34:12Z2009-04-26T01:30:56Z
<p>As far as I can tell there's no simple way of retrieving a character offset from a TextRange object in Internet Explorer. The W3C Range object has a node, and the offset into the text within that node. IE seems to just have pixel offsets. There are methods to create, extend and compare ranges, so it would be possible to write an algorithm to calculate the character offset, but I feel I must be missing something.</p>
<p>So, what's the easiest way to calculate the character offset of the start of an Internet Explorer TextRange?</p>
http://stackoverflow.com/questions/682084/win32perfformatteddataremoteaccessrasport-wmi-class-on-windows-xp0Win32_PerfFormattedData_RemoteAccess_RasPort WMI class on Windows XPThom2009-03-25T15:21:16Z2009-04-01T14:59:18Z
<p>I'm getting 'Invalid class name' exceptions when trying to monitor changes to the <code>Win32_PerfFormattedData_RemoteAccess_RasPort</code> class on Windows XP. I'm using the code
<a href="http://stackoverflow.com/questions/565734/capturing-vpn-usage-statistics">listed here</a>.</p>
<p>Is this class supported on XP? The documentation claims it is, although it's supplied by a different provider. If not, what's a good alternative?</p>
http://stackoverflow.com/questions/565734/capturing-vpn-usage-statistics3Capturing VPN usage statisticsThom2009-02-19T15:09:38Z2009-03-20T16:51:53Z
<p>We're monitoring usage statistics of a network interface using NetworkInterface.GetIPv4Statistics() in .NET 2.0. This isn't reporting correct statistics for connections over which VPN traffic is being tunneled. Instead - in the case of the Cisco VPN client - the usage is just attributed to a new network interface that just looks like an Ethernet connection.</p>
<p>Windows itself (Vista, at least) adds the VPN statistics to the actual physical interface correctly, so viewing the 'Status' dialog for the original connection shows the correct byte counts. However, the results of the call in .NET do not merge the traffic together.</p>
<p>Is there a way to associate the VPN connection back to the network connection over which it's being tunneled? Failing that, does anyone know which API is being used by the status dialog to retrieve correct statistics?</p>
<p>At the moment we're having to manually detect connections that look like they're VPNs and add their usage to whatever other connection is active, and this doesn't seem like a robust solution.</p>
http://stackoverflow.com/questions/565734/capturing-vpn-usage-statistics/667002#6670020Answer by Thom for Capturing VPN usage statisticsThom2009-03-20T16:51:53Z2009-03-20T16:51:53Z<p>As Rob suggests, the answer lies within WMI. <a href="http://msdn.microsoft.com/en-us/library/aa394283%28VS.85%29.aspx" rel="nofollow"><code>Win32_PerfFormattedData_RemoteAccess_RasPort</code></a> seems to be exactly what Windows uses itself - the numbers are the same, byte for byte, whether the VPN is up or not.</p>
<p>I tested with:</p>
<pre><code>static class Program
{
static void Main()
{
var query = new WqlEventQuery("__InstanceModificationEvent", TimeSpan.FromSeconds(1),
"TargetInstance ISA 'Win32_PerfFormattedData_RemoteAccess_RasPort' AND TargetInstance.BytesReceived > 0");
var watcher = new ManagementEventWatcher(query);
watcher.EventArrived += EventArrived;
watcher.Start();
Console.ReadLine();
}
static void EventArrived(object sender, EventArrivedEventArgs e)
{
var mo = e.NewEvent["TargetInstance"] as ManagementBaseObject;
Console.WriteLine("{0:#,0}: {1:#,0} bytes sent, {2:#,0} bytes received", mo["Name"], mo["BytesTransmitted"], mo["BytesReceived"]);
}
}
</code></pre>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/491654#4916546Answer by Thom for Problem using SQLite :memory: with NHibernateThom2009-01-29T13:52:20Z2009-01-29T13:52:20Z<p>If you add <code>Pooling=True;Max Pool Size=1</code> to your connection string, you'll get the same connection (and therefore database) each time.</p>
http://stackoverflow.com/questions/318596/actionscript-3-repl/335576#3355761Answer by Thom for Actionscript 3 REPLThom2008-12-02T21:43:45Z2008-12-02T21:43:45Z<p><a href="http://eval.hurlant.com/demo/" rel="nofollow">Google harder</a>. ;)</p>
http://stackoverflow.com/questions/335531/if-statement-inside-a-variable/335547#3355476Answer by Thom for if statement inside a variableThom2008-12-02T21:36:50Z2008-12-02T21:36:50Z<p><code>var myVar += (myVar2 != false ? "Link 2" : "");</code></p>
<p>Ternary conditional operator etc.</p>
http://stackoverflow.com/questions/325908/can-this-mapping-be-done-with-fluent-nhibernate/335484#3354842Answer by Thom for Can this mapping be done with (Fluent) NHibernate?Thom2008-12-02T21:17:40Z2008-12-02T21:17:40Z<p>If you forget about the multiple foreign key columns, you can make this an <a href="http://www.hibernate.org/hib_docs/nhibernate/html/mapping.html#mapping-types-anymapping" rel="nofollow"><any> mapping</a>.</p>
http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing/164723#1647230Answer by Thom for Does This ASP.NET Consultant Know What He's Doing?Thom2008-10-02T21:39:17Z2008-10-02T21:39:17Z<p>The session thing is possible. It's a bug, beyond doubt, but it could be that the write arrives at whatever custom session state provider you're using after the next read. The session state provider API accommodates locking to prevent this sort of thing, but if the implementor has just ignored all that, your consultant could be telling the truth.</p>
<p>The second issue is also kinda valid. It's not quite idiomatic - it's a slightly reversed version of things like int.TryParse, which are there to avoid performance issues caused by throwing lots of exceptions. But unless you're calling that code an awful lot, it's unlikely it'll make a noticeable difference (compared to say, one less database query per page etc). It's certainly not something you should do by default.</p>
http://stackoverflow.com/questions/164105/testing-onbeforeunload-events-from-selenium/164664#1646640Answer by Thom for Testing onbeforeunload events from SeleniumThom2008-10-02T21:19:35Z2008-10-02T21:19:35Z<p>You could write a user extension (or just some JavaScript in a storeEval etc) that tests that window.onbeforeunload is set, and then replaces it with null before continuing on from the page. Ugly, but ought to get you off the page.</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164179#1641790Answer by Thom for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Thom2008-10-02T19:41:58Z2008-10-02T19:41:58Z<p>What's so interesting about those guidelines is that they are clearly an argument for having extension properties as well as extension methods. Shame.</p>
http://stackoverflow.com/questions/1783563/is-it-safe-to-store-user-object-in-a-cookie/1783576#1783576Comment by Thom on Is it safe to store user object in a cookie?Thom2009-11-24T14:22:52Z2009-11-24T14:22:52Z@R.Bemrose: and that comes at the cost of hitting your session store each request - I suspect in PHP's default setup that means reading and writing a file, so you've got additional disk IO to worry about. All I'm saying is storing stuff in a cookie is a valid thing to do if it floats your boat, and any decisions you make about performance should be based on things you've measured and not assumptions you've made. :)http://stackoverflow.com/questions/1783642/forcing-winforms-autoresize-to-happen/1783935#1783935Comment by Thom on Forcing WinForms AutoResize to happenThom2009-11-24T14:06:41Z2009-11-24T14:06:41ZPerformLayout() does the trick! Thank you. :)http://stackoverflow.com/questions/1783563/is-it-safe-to-store-user-object-in-a-cookie/1783576#1783576Comment by Thom on Is it safe to store user object in a cookie?Thom2009-11-23T20:43:46Z2009-11-23T20:43:46ZOr, it could have a positive effect on page loading times, as it allows you to eliminate a database round-trip. You'll only know by measuring. :)http://stackoverflow.com/questions/1783563/is-it-safe-to-store-user-object-in-a-cookie/1783579#1783579Comment by Thom on Is it safe to store user object in a cookie?Thom2009-11-23T15:17:34Z2009-11-23T15:17:34ZI didn't downvote it, but it's worth pointing out that if it helps you eliminate a round-trip to the database, storing regularly accessed data in a cookie could have a positive impact on performance. As with all such issues - measure, measure, measure! :)http://stackoverflow.com/questions/565734/capturing-vpn-usage-statistics/667002#667002Comment by Thom on Capturing VPN usage statisticsThom2009-11-23T15:01:16Z2009-11-23T15:01:16ZThis turns out not to be widely supported. We ended up using a third-party RAS library.http://stackoverflow.com/questions/1285917/how-to-disable-javascript-when-using-seleniumComment by Thom on How to disable Javascript when using Selenium?Thom2009-11-04T12:12:31Z2009-11-04T12:12:31ZI wrote that article - unfortunately, that method only works inside the Selenium IDE extension in Firefox. Trying to disable JavaScript from the Selenium JavaScript runner (which I assume your NUnit tests use under the hood) would result in a security exception, so I'm afraid this method isn't of use to you. mfn's suggestions below are what I'd generally consider these days.http://stackoverflow.com/questions/1545796/exposing-a-function-from-java-to-rhino/1545886#1545886Comment by Thom on Exposing a function from Java to RhinoThom2009-10-09T21:14:46Z2009-10-09T21:14:46ZSuperb, that looks perfect. Thanks!http://stackoverflow.com/questions/1545730/jquery-scrolling-issue-when-submiting-a-formComment by Thom on JQuery scrolling issue when submiting a formThom2009-10-09T20:41:11Z2009-10-09T20:41:11ZJust to be clear - is the desired behaviour that the form scrolls back to the top of the page when submitted?http://stackoverflow.com/questions/1545796/exposing-a-function-from-java-to-rhino/1545886#1545886Comment by Thom on Exposing a function from Java to RhinoThom2009-10-09T20:32:35Z2009-10-09T20:32:35ZSorry if I wasn't clear. While I can expose an object, which allows me to call foo.bar(), I'd ideally like to just call bar(). So, by 'top-level function' I mean a function that's a property of the Rhino Scope that's currently executing, if that makes more sense.http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532254#1532254Comment by Thom on Why do I need an IoC container as opposed to straightforward DI code?Thom2009-10-08T09:34:43Z2009-10-08T09:34:43ZJamie - the real work is generally done by something like DynamicProxy that lets you easily intercept calls to (virtual or interface) members on your objects. This has little to do with IoC - in fact, in the example above, we're talking about an entity anyway, so you'd never be resolving that from your container. You'd have to muck about with your ORM, which is entirely separate. I don't want to sound anti-IoC - I'm using Castle and a ton of custom facilities in my current project, but the above example is a poor one (which doesn't work as written, or as described).http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532254#1532254Comment by Thom on Why do I need an IoC container as opposed to straightforward DI code?Thom2009-10-07T17:09:50Z2009-10-07T17:09:50ZOops, you forgot to make all the properties virtual, and it didn't work. Is the time you needed to spend debugging this stealing from your client too? (Apologies if you're not using DynamicProxy. :P)http://stackoverflow.com/questions/1439900/how-to-check-if-c-class-has-security-attribute-used/1439918#1439918Comment by Thom on How to check if C# class has security attribute usedThom2009-09-17T16:56:28Z2009-09-17T16:56:28ZInteresting that GetCustomAttributes throws a TypeLoadException though. Presumably you're not expected to have any extra data on a CAS attribute that you might want to access?http://stackoverflow.com/questions/1007203/uiautomation-with-toolstripstatuslabel/1291590#1291590Comment by Thom on UIAutomation with ToolStripStatusLabelThom2009-08-29T11:29:09Z2009-08-29T11:29:09ZAh, interesting. I'll try this next week! Any idea why it might be being exposed as an edit control? This is fine for me, but it seems like it would be misleading to a screen reader.http://stackoverflow.com/questions/1193800/autorun-a-cd-from-process-start/1193834#1193834Comment by Thom on Autorun a CD from Process.StartThom2009-07-30T09:26:25Z2009-07-30T09:26:25ZJust results in Notepad opening with the contents of the file, for me.http://stackoverflow.com/questions/682084/win32perfformatteddataremoteaccessrasport-wmi-class-on-windows-xp/705940#705940Comment by Thom on Win32_PerfFormattedData_RemoteAccess_RasPort WMI class on Windows XPThom2009-07-21T13:52:26Z2009-07-21T13:52:26ZSo how do I query it with the classes available in the System.Management namespace in .NET?