6
votes
3answers
1k views
HowTo Disable WebBrowser ‘Click Sound’ in your app only.
The 'click sound' in question is actually a system wide preference, so I only want it to be disabled when my application has focus and then re-enable when the application closes/loses focus.
…
6
votes
6answers
3k views
Request vista UAC elevation if path is protected?
For my C# app, I don't want to always prompt for elevation on application start, but if they choose an output path that is UAC protected then I need to request elevation.
So, how do I check …
4
votes
4answers
667 views
SelectNodes not working on stackoverflow feed
I'm trying to add support for stackoverflow feeds in my rss reader but SelectNodes and SelectSingleNode have no effect. This is probably something to do with ATOM …
2
votes
Accessing audio/video metadata with .NET
I use MediaInfo with my C# apps, gives you a lot of information about media files.
…
1
vote
Accessing audio/video metadata with .NET
These are the example class files for different languages found in the MediaInfo.dll zip
MediaInfoDLL.cs
MediaInfoDLL.def
MediaInfoDLL.h
MediaInfoDLL.java …
0
votes
HowTo Disable WebBrowser ‘Click Sound’ in your app only.
@matt,
Document.Write works perfectly for what I was doing, I don't know why no body posted that on any of the forums i came across while googling.
…
0
votes
Request vista UAC elevation if path is protected?
@Brian
Well UAC seems to protect random folders, I try to move things between folders on my secondary hard drive and it prompts me for permission. I really don't know what UAC is protecting …
0
votes
SelectNodes not working on stackoverflow feed
I just want to use..
XmlNodeList itemList = xmlDoc.DocumentElement.SelectNodes("entry");
but, what namespace do the entry tags fall under? I would …
0
votes
C#.Net: Why is my Process.Start() hanging?
I think cmd.exe hangs if the parameters are incorrect.
If the batch executes correctly then I would just shell execute it like this instead.
ProcessStartInfo psi = new Proce …
1
vote
C#.Net: Why is my Process.Start() hanging?
Why not just do all the work in C# instead of using batch files?
I was bored so i wrote this real quick, it's just an outline of how I would do it since I don't know what the command line s …
1
vote
Best way to reduce sequences in an array of strings
Here's C# app i wrote that solves this problem.
takes
aabccacdcd
outputs
abcacd
Probably looks pretty messy, took me a bit …
1
vote
How to efficiently filter a large LIstViewItemCollection?
AddRange is much faster than add
MyListView.AddRange(items)
…
