0
votes
Is this the proper use of a mutex?
@Jonathan: Even easier:
lock( this )
{
// thread-safe code here..
}
…
2
votes
Is this the proper use of a mutex?
@Jonathan: I don't have the book you're referring to, but I dug around and now understand the issues with using lock(this) {...}. I found an interesting discussion on the topic.
…
0
votes
Show a Form without stealing focus (in C#)
Create and start the notification Form in a separate thread and reset the focus back to your main form after the Form opens. Have the notification Form provide an OnFormOpened event that is fired f …
2
votes
c# store user settings in database
The VS designer keeps property settings in the ApplicationSettingsBase class. …
0
votes
How can I get the icon from the executable file only having an instance of it’s Process in C#
Use the ExtractIconEx (and …
9
votes
.NET - What’s the best way to implement a “catch all exceptions handler”
For Winform applications, in addition to AppDomain.CurrentDomain.UnhandledException I also use …
1
vote
Why is lock(this) {…} bad?
There's also some good discussion about this here: Is this the proper use of a mutex?
…
1
vote
How do I best obfuscate my C# product license verification code?
Rex is correct, internal sealed class won't hid …
7
votes
What is the impact of Thread.Sleep(1) in C#?
As stated, your loop will not hog the CPU.
But beware: Windows is not a real-time OS, so you will not get 1000 wakes per second from Thread.Sleep …
3
votes
1
vote
C# GUI handle problems on close
I agree with Samuel, but would also check IsDisposed:
void Handler()
{
if (ctrl.IsDisposed || !ctrl.IsHandleCreated) return;
if (ctrl.InvokeRequired)
Invoke(.. …
5
votes
UserControl as an interface, but visible in the Designer
If SomeCustomerNameUserControl is defined like this:
class SomeCustomerNameUserControl : UserControl, ICustomerName
{
}
You can still drop this contro …
1
vote
Login dialog for Windows client application
I think you're stuck creating your own dialog. It's not that hard to make it look official though.
…
0
votes
3
votes
C# - Restarting application conflicts with “program already running” error
Use a Mutex. e.g.: A Single Instance Application which Minimizes to the System Tray when Closed. This ex …
