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.
…
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
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
How to efficiently filter a large LIstViewItemCollection?
AddRange is much faster than add
MyListView.AddRange(items)
…
