Search Results

18
votes

How do I programmatically create a PDF in my .NET application?

I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entir …
4
votes

What control is this? (”Open” Button with Drop Down)

I think what you are looking for is called a toolStripSplitButton. It is only available in a toolStrip. But you can add a toolStripContainer anywhere on your form and then put the toolStrip and too …
1
vote

.NET: is there a Click-and-drag “Desktop-Like” control?

This depends on whether this is a windows application or a web browser based application. In either case you need to have some sort of container to manage the locations of controls. You can manage …