What do I need to do to make a Windows Forms application to be able to run in the System Tray? Not an application that can be minimized to...
I have this code, how can I allow it to accept all typical image formats? PNG, JPEG, JPG, GIF? Here’s what I have so far: public void EncryptFile() {...
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 Answers 7
I want to get the first day and last day of the month where a given date lies in. The date comes from a value in a UI field....
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 working on. Are there best practices...
Can Application.DoEvents() be used in C#? Is this function a way to allow the GUI to catch up with the rest of the app, in much the same way...
How can I display the Wait/Busy Cursor (usually the hourglass) to the user to let them know the program is doing something? 10 Answers 10
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#. The application has a main form...
I want to create a program that converts files. I would like the user to be able to place the executable file in any directory, and when executing that...
I have a textbox with the .Multiline property set to true. At regular intervals, I am adding new lines of text to it. I would like the textbox to...