How can I make a .NET Windows Forms application that only runs in the System Tray?
What do I need to do to make a Windows Forms application to be able to run in the System Tray? Not an … Read more
What do I need to do to make a Windows Forms application to be able to run in the System Tray? Not an … Read more
I have this code, how can I allow it to accept all typical image formats? PNG, JPEG, JPG, GIF? Here’s what I have … Read more
How do I turn off the user’s ability to resize a Windows Forms form? I’m having it resize itself on a click. 7 … Read more
I want to get the first day and last day of the month where a given date lies in. The date comes from … Read more
I’ve seen this done in Borland’s Turbo C++ environment, but I’m not sure how to go about it for a C# application I’m … Read more
Can Application.DoEvents() be used in C#? Is this function a way to allow the GUI to catch up with the rest of the … Read more
How can I display the Wait/Busy Cursor (usually the hourglass) to the user to let them know the program is doing something? 10 … Read more
I’m looking for a best way to implement common Windows keyboard shortcuts (for example Ctrl+F, Ctrl+N) in my Windows Forms application in C#. … Read more
I want to create a program that converts files. I would like the user to be able to place the executable file in … Read more
I have a textbox with the .Multiline property set to true. At regular intervals, I am adding new lines of text to it. … Read more