Search Results

6
votes
3answers
2k 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
702 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 …
0
votes
3answers
492 views

RedirectStandardOutput is buffering lines instead of being instantaneous?

Ok, I am trying to use Tail to monitor a log file, but I cannot get the same behavior programatically as when I manually run it through cmd prompt using the same parameters. When run throug …
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. …
4
votes

Should I *always* favour implictly typed local variables in C# 3.0?

I use it only when it's clearly obvious what var is. clear to me. XmlNodeList itemList = rssNode.SelectNodes("item"); var rssItems = new RssItem[itemList.Count]; …
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

Getting UI text from external app in C#

didn't see the values for wmgettext or wmgettextlength in that article, so just in case.. const int WM_GETTEXT = 0x0D; const int WM_GETTEXTLENGTH = 0x0E; …
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 …
0
votes

How can an app utilize multiple cores or CPUs in .Net or Java?

I have used this in a couple programs because my core 0 was kinda messed up. // Programmatically set process affinity var process = System.Diagnostics.Process.GetCurrentProcess(); …
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 …
0
votes

C# Force Form Focus

Doesn't ShowDialog() have different window behavior than just Show()? What if you tried: msgFrm.Show(); msgFrm.BringToFront(); msgFrm.Focus …
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 …
0
votes

How can I determine the length of a .wav file in C#?

I'm gonna have to say MediaInfo, I have been using it for over a year with a audio/video encoding application I'm working on. It giv …

1 2 next
15 30 50 per page