.NET news » Search results

Search results for query "Control" (238):

Windows with C++: The Thread Pool Environment

Our resident C++ guru continues his exploration of the thread pool, this month examining objects that control the environment in which callbacks execute.
2011-08-29 19:00:00   Source: Windows with C++: The Thread Pool Environment   Tags: Components

Eye-Blink Driven Verbal Communication

Application facilitating verbal communication (via speech synthesis) and external device control through eye-blink detection
2012-10-20 19:30:00   Source: Eye-Blink Driven Verbal Communication   Tags: Components

gLabel - Custom Label with Special Effects (VB.NET)

Label control with built-in effects like MouseOver, Shadow, Outer Glow, and Pulse Glow
2010-07-20 13:20:00   Source: gLabel - Custom Label with Special Effects (VB.NET)   Tags: VB.NET

Silverlight RIA Tasks 2: Dynamic View Models

Creating Multiple Dynamic Views using View Model Style and the Silverlight Tab Control
2010-07-18 08:22:00   Source: Silverlight RIA Tasks 2: Dynamic View Models   Tags: Components

Signature User Control: Graphics Programming in Smart Phones, PocketPCs, and PDAs

In this article we are going to see the use of graphics in Smart Phones and PDA applications.
2008-07-02 15:40:00   Source: Signature User Control: Graphics...   Tags: Mobile

UI Frontiers: A Color Scroll for XNA

Charles this month serves up an introduction to XNA programming for Windows Presentation Foundation and Silverlight coders as he shows you how to build a color scroll control for Windows Phone 7.
2011-01-03 18:00:00   Source: UI Frontiers: A Color Scroll for XNA   Tags: GUI

Accessing Embedded Resources through a URL using WebResource.axd

Many of the built-in ASP.NET server controls require additional, external resources in order to function properly. For example, when using any of the ASP.NET validation controls, the controls rely on a bevy of JavaScript functions to perform their client-side validation. While each validation control could emit such script directly into the page's content, a more efficient approach would be to package these JavaScript functions into an external JavaScript file and then include that file in the page using <script src="PathToExternalJavaScriptFile" type="text/javascript" >. This would reduce the total page size and would allow the browser to cache the external JavaScript file (rather than having to send the JavaScript code down to the browser on each and every page visit/postback).

Prior to ASP.NET 2.0, such external resources that needed to be accessible to the visitor's browser had to be implemented as actual files on the file system. If you've worked with ASP.NET 1.x's validation controls, your pages have included a reference to a JavaScript file /aspnet_client/system_web/version/WebUIValidation.js and there is an actual file with that name residing in the web application's root. Such external resources hamper deployment - if you deploy your application from the testing server to production, it's imperative that the production server have the same external resources (WebUIValidation.js, in this case), in the same locations in the file system.

To remedy this, ASP.NET 2.0 allows for external resources to be embedded within the control's assembly and then be accessed through a specified URL. With the external images, JavaScript files, CSS files embedded in the control's assembly, deployment is a breeze, as all of the resources are now contained within the assembly (the .dll file). There are no external resources whose file names and location on the file system must map up. Once embedded into the assembly, these resources can be accessed from an ASP.NET 2.0 web page through a special URL (WebResource.axd)..

2006-08-08 19:00:00   Source: Accessing Embedded Resources through a URL using...   Tags: ASP.NET

Paging, Selecting, Deleting, Editing and Sorting in the ASP.NET GridView Control with Keyboard Shortcuts

An ASP.NET 2.0 AJAX Extender to enhance the ASP.NET GridView to page, select, delete, edit and sort rows with keyboard shortcuts.

Using TemplateFields in the GridView Control (C#)

This tutorial examines how to use TemplateField to achieve a greater degree of customization with GridView. This tutorial looks also at another way to customize the formatting based on underlying data: by calling formatting methods from within a template.

Effective Paging with GridView Control in ASP.NET

Paging must be effective for large scaleable application. Without smart and effective paging and sorting for huge amount of data user request take more time and use more resource.