.NET news » Search results

Search results for query "Control" (291):

Master/Detail Using a Selectable Master GridView with a Details DetailView
The fiinal tutorial on master/detail reports. We'll look at how to display a list of products in a GridView where each row has a Select button. Clicking the Select button will display that product's details in a DetailsView control on the same page.
2007-02-08 14:10:10   Source: Master/Detail Using a Selectable Master GridView with a...   Tags: ASP.NET
Master/Detail Filtering With a DropDownList

A common type of report is the master/detail report, in which the report begins by showing some set of "master" records. The user can then drill down into one of the master records, thereby viewing that master record's "details." Master/detail reports are an ideal choice for visualizing one-to-many relationships, such as a report showing all of the categories and then allowing a user to select a particular category and display its associated products. Additionally, master/detail reports are useful for displaying detailed information from particularly "wide" tables (ones that have a lot of columns). For example, the "master" level of a master/detail report might show just the product name and unit price of the products in the database, and drilling down into a particular product would show the additional product fields (category, supplier, quantity per unit, and so on).

There are many ways with which a master/detail report can be implemented. Over this and the next three tutorials we'll look at a variety of master/detail reports. In this tutorial we'll see how to display the master records in a DropDownList control and the details of the selected list item in a GridView. In particular, this tutorial's master/detail report will list category and product information.

2007-02-08 12:30:25   Source: Master/Detail Filtering With a DropDownList   Tags: ASP.NET
A fast and performing gauge
This article shows you how to write a performing control using .NET 2.0 and GDI+.
2007-02-08 04:12:00   Source: A fast and performing gauge   Tags: Graphics Components
The most complete C# Webbrowser wrapper control
A C# (.NET 2.0) control for hosting, and advanced customization of the original Webbrowser control and much more.
2007-02-06 08:02:00   Source: The most complete C# Webbrowser wrapper control   Tags: GUI Components
Owner-drawn trackbar (slider)
This article presents owner-drawn trackbar control. Component is written entirely from scratch (C#). All painting events are done by code. It's got cool, modern look. The best thing is, however, the capability of changing slider's thumb shape. It is done simply by providing appropriate graphics path.
2007-01-29 22:15:00   Source: Owner-drawn trackbar (slider)   Tags: GUI Components
Embed PDFs into a Web Page with a Custom Control
Embed PDFs into a Web Page with a Custom Control
2007-01-27 16:31:00   Source: Embed PDFs into a Web Page with a Custom Control   Tags: ASP.NET
C# Program Flow Control: The For Loop
The twenty-ninth part of the C# Fundamentals tutorial starts a multi-part examination of the program flow control commands available to the C# developer. This first article examines the for loop structure that allow the repeated execution of code.
2007-01-27 00:00:04   Source: C# Program Flow Control: The For Loop   Tags: C#
Simple bevel control
A simple control for visually grouping controls with edges / bevels
2007-01-26 09:46:00   Source: Simple bevel control   Tags: Components GUI
Customize and Extend Windows Forms Controls
Everybody who writes native Windows applications knows that the Windows Forms controls provided by Microsoft are a great time-saver for oft-used interface components such as text boxes and drop-down lists. But sometimes we need a reusable form control that does things Microsoft hasn't pre-built for us. Learn to extend existing Windows Forms controls with custom functions that will save you time.
2007-01-25 16:55:01   Source: Customize and Extend Windows Forms Controls   Tags: Examples
HTMLTextBox
Provides a user control that allows the user to edit HTML page.
2007-01-24 18:42:00   Source: HTMLTextBox   Tags: GUI Components