Archive for June, 2009

Drag And Drop Files to a C# Application

June 11, 2009 | 5 Comments

The .NET Framework makes it easy to detect objects dragged and/or dropped into a Windows Forms application using one or more of the drag-and-drop events available. In these events you could check if the object is a file.

Read more…

Filed Under: WinForms

Displaying Dynamically Generated Images in ASP.NET

June 8, 2009 | 3 Comments

Sometimes you need to display an image that is not saved in a file. These could be dynamically generated or loaded from a file but were modified. To display them in an Image control you need to create another page that saves the image in its output stream.

Read more…

Filed Under: ASP.NET