Author Archives: compitionpoint - Page 19
SaveFileDialog Control
The Save File Dialog control () allows you to save or write data to a specified file. The dialog allows you to browse your file system and pick a directory, then type…
OpenFileDialog Control
The Open File Dialog control () allows you to open and read file contents such as texts from text files. The dialog allows you to browse your file system and pick a…
FolderBrowserDialog Control
The Folder Browser Dialog control () allows you to browse for a directory in your system. The control uses a tree view to show all the folders. The Browser shows the Desktop…
FontDialog Control
The Font Dialog control () is a handy control for selecting different kinds of font and font-related properties. font dialog box Using the Font Dialog, you can change the font type, style,…
ColorDialog Control
The Color Dialog () is used when you want to pick different colors. For example, when you want to pick a color of the font or a background color for the form,…
Dialogs
Dialogs are windows that have a certain specific function such as saving or opening a file, choosing a color, or printing a document. The .NET framework offers the dialog controls which…
ToolStripContainer Control
The ToolStrip Container control ( Container) serves as a container for toolbars. With this control, you can arrange and change the positions of the toolbars inside this container. The ToolStrip Container is…
Creating Toolbars
A toolbar contains buttons and other components that serve as menu commands to the user. Like the menu, toolbars are also seen in numerous famous applications such as the Microsoft Office 2003…
Adding Menus to Your Form
Menu bars can be seen in almost every application out there. Menus are used to contain different commands that the user can use. You can add menu bars to a…
Using the TabIndex Property
You can cycle the focus of each control by pressing the tab key on the keyboard. Each control has a TabIndex property which indicates the order each control will get focus when…