Search Results

3
votes
3answers
498 views

Capturing VPN usage statistics

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 be …
0
votes
1answer
103 views

Win32_PerfFormattedData_RemoteAccess_RasPort WMI class on Windows XP

I'm getting 'Invalid class name' exceptions when trying to monitor changes to the Win32_PerfFormattedData_RemoteAccess_RasPort class on Windows XP. I'm using the code …
0
votes
2answers
112 views

UIAutomation with ToolStripStatusLabel

I have a WinForms app, and I can't seem to access the text of a ToolStripStatusLabel through UIAutomation. Microsoft …
0
votes
1answer
59 views

Autorun a CD from Process.Start

What is the closest way to emulate autorunning a CD (or other media, I guess) using Process.Start and ProcessStartInfo? I've tried obvious things like: …
0
votes

Capturing VPN usage statistics

As Rob suggests, the answer lies within WMI. Win32_PerfFormattedData_RemoteAccess_RasPort …
0
votes

UIAutomation with ToolStripStatusLabel

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 surpris …
1
vote

Controlling other windows from C# app

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 y …