.NET news » Search results

Search results for query "Control" (238):

An MFC Chart Control with Enhanced User Interface

An MFC linear chart control with enhanced appearance.
2012-01-20 15:45:00   Source: An MFC Chart Control with Enhanced...   Tags: GUI

Build an ASP.NET Virtual Earth Map Server Control

Shows how to dynamically get the coordinates of the street address property and compute the exact Virtual Earth map tile, download and display in the control from memory. Supports aerial, road and hybrid images, image size, and zoom level.

Remote Control PCs

Two projects that work together to remote control PCs across a LAN
2010-11-03 10:25:00   Source: Remote Control PCs   Tags: Components

Modify and Use PopupControlExtender to Create Nested Popups

An improved PopupControlExtender control for the AJAX Control Toolkit and how to use it to create nested popup controls.
2011-04-20 10:56:00   Source: Modify and Use PopupControlExtender...   Tags: Ajax

Remote Desktop Control with Automated Skype

Skype automation allows a user to control desktop of another user with built-in screen sharing.
2011-02-23 16:38:00   Source: Remote Desktop Control with...   Tags: Components

A Simple WPF XML Document Viewer Control

This article introduces a simple XML document viewer control for WPF applications to display XML documents in a formatted way.

Working Around ASP.NET's HyperLink ImageUrl Bug

This article shines the light on a bug I came across in the ASP.NET HyperLink control implementation. In particular, when using URL rewriting the HyperLink control's ImageUrl property can be, in certain circumstances, incorrectly rewritten. The good news is that there is a simple workaround that's made possible by the flexible architecture of ASP.NET.
2008-01-29 18:00:00   Source: Working Around ASP.NET's HyperLink ImageUrl Bug   Tags: Bugs ASP.NET

Using Microsoft's Chart Controls In An ASP.NET Application: Using the Chart Controls with ASP.NET MVC

The Microsoft Chart controls are a series of classes in the System.Web.UI.DataVisualization.Charting namespace that allow web developers to ability to add charts to their ASP.NET applications. The most pertinent charting-related class is the Chart class, which contains information about the chart's appearance, series, charting areas, and so forth. In most of the demos and code samples we've explored thus far, we've used the Chart class as a Web control, adding the <asp:Chart> declarative markup to our ASP.NET page, setting a few properties and, occasionally, writing a few lines of code. When used as a Web control, the Chart class both creates the chart (as an image) and then renders an <img> element that points to the generated chart image.

Using the Chart Web control is a standard practice in a WebForms application, but it is not suggested when building an ASP.NET MVC application. (While it is possible to add Web controls - including the Chat Web control - to the views of an ASP.NET MVC application, it is generally frowned upon.) So, if we can't use the Chart Web control in an ASP.NET MVC application, how do we display a chart? In addition to being used as a Web control, the Chart class can also be used programmatically. It is quite possible to create a new Chart object, set some properties, plot the data points, and then generate the chart image. In fact, we looked at using this technique in an earlier installment, Programmatically Generating Chart Images, in which we saw (among other things) how to generate chart images programmatically and add them as attachments in an email message.

This article explores how to display charts in an ASP.NET MVC application.

2010-09-21 19:00:00   Source: Using Microsoft's Chart Controls In...   Tags: Other

A Simple Pie Chart Control - Improved 3-D Pie Chart

A follow up to the simple pie chart control article which will detail the new improvements
2010-06-30 17:41:00   Source: A Simple Pie Chart Control -...   Tags: Graphics

Windows Foundation 4: Authoring Custom Control Flow Activities in WF 4

Control flow options in Windows Workflow Foundation 4 are not limited to the activities shipped in the framework. You can write your own and use them in combination with the ones provided in the box, as Leon Welicki describes.