.NET news » Search results

Search results for query "orm" (111):

Identifying NHibernate-Related Bottlenecks through Performance Monitoring

A distilled methodology for detecting and isolating NHibernate-related performance and scalability issues

Form Print Control

An extender control to make printing a form quick, easy and flexible
2007-02-23 03:49:00   Source: Form Print Control   Tags: Components

Custom Formatting Based Upon Data (C#)

The appearance of the GridView, DetailsView, and FormView controls can be customized through myriad style-related properties. Properties like CssClass, Font, BorderWidth, BorderStyle, BorderColor, Width, and Height, among others, dictate the general appearance of the rendered control. Properties including HeaderStyle, RowStyle, AlternatingRowStyle, and others allow these same style settings to be applied to particular sections. Likewise, these style settings can be applied at the field level.

In many scenarios, though, the formatting requirements depend upon the value of the displayed data. For example, to draw attention to out of stock products, a report listing product information might set the background color to yellow for those products whose UnitsInStock and UnitsOnOrder fields are both equal to 0. To highlight the more expensive products, we may want to display the prices of those products costing more than $75 in a bold font.

Adjusting the format of the GridView, DetailsView, or FormView based upon the data bound to it can be accomplished in multiple ways. In this tutorial, we'll look at how to accomplish data bound formatting through the use of the DataBound and RowDataBound event handlers. In the next tutorial we'll explore an alternative approach...

2007-02-22 18:01:59   Source: Custom Formatting Based Upon Data (C#)   Tags: ASP.NET

Simple Performance Chart

The Simple Performance Chart is a UserControl that is designed and developed to display varying performance data like reads per second on a disk drive, the bandwidth for a server, or free CPU resources, in a visual, clean manner. It can be controlled by a built-in Timer, which makes synchronized display of values possible. The control offers several formatting options like border style, line colors and styles, widths, a background gradient, and so on.
2007-02-08 17:39:00   Source: Simple Performance Chart   Tags: Examples Performance

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

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

C# DateTime Information Extraction

The twenty-sixth part of the C# Fundamentals tutorial continues the examination of the DateTime data type provided by C# and the .NET Framework. In this instalment we will consider how information can be compared and extracted from values of this type.
2007-01-20 05:40:26   Source: C# DateTime Information Extraction   Tags: C#

Improving ASP.NET Application Performance and Scalability

Explore ways to reduce page load time, manage state efficiently, scale back on memory use, handle resources better, and improve data access in your ASP.NET applications.

Testing Custom Transform Streams

One of the first things that developers new to the Microsoft .NET Framework learn is how to read from and write to text files using methods from the FileStream class of the System.IO namespace. However, the .NET I/O stream model also provides developers with a powerful way to create custom stream classes. In this month's column, I'll explain key techniques you can use to test such custom stream classes-and specifically those that deal with transforming data read from or written to another stream.
2007-01-14 18:00:00   Source: Testing Custom Transform Streams   Tags: C#

Exploring Secrets of Windows Form Validation

If you're tired of writing custom validation code for every input field in your applications—and of fixing the resulting validation errors—then you'll welcome the generic validation engine described in this article, which can automate many validation scenarios.
2007-01-12 13:26:58   Source: Exploring Secrets of Windows Form Validation   Tags: GUI