Build World-Ready Apps Using Complex Scripts In Windows Forms ControlsThis article discusses:The TextRenderer and Graphics classesUsing IDeviceContextPrinting with TextRendererMigrating from Graphics to TextRendererThis article uses the following technologies:Windows Forms, .NET Framework 2.0, GDI+Code download available at:TextRendering.exe(154 KB)Browse the Code Online Developing world-ready software is one of the requirements software companies must meet if they want [...]
Tag Archives: controls
Text Rendering: Build World-Ready Apps Using Complex Scripts In Windows Forms Controls
C++ Q&A: Performance Optimization, Controls versus Components
Performance Optimization, Controls versus ComponentsCode download available at: CQA0406.exe (181 KB) Browse the Code Online Q What’s the best and fastest way to allocate a large number of small class objects (for example, 10,000 small records)? MFC serialization, of course, streams the objects in and out and does everything necessary. However, lots of time is [...]
WPF: Customizing Controls For Windows Presentation Foundation
Customizing Controls For Windows Presentation FoundationThis article discusses:Composite controlsStyles and templatesCustom propertiesCustom controlsThis article uses the following technologies:Windows Presentation Foundation The breadth of the control model in Windows Presentation Foundation is quite staggering, but it is impossible to supply every control that you could ever need. That is where control authoring comes to the rescue. [...]
The Big Story: An Overview of the New Services, Controls, and Features in ASP.NET 2.0
[ Editor's Update - 1/20/2006: This article refers to a beta version of Visual Studio 2005. An updated version of the article, reflecting features found in the final release of Visual Studio 2005, can be found at Web Apps: An Overview Of The New Services, Controls, And Features In ASP.NET 2.0.] An Overview of the [...]
Toolbox: Microsoft Chart Controls, Visual Studio Automatic Code Snippets, And More
Microsoft Chart Controls, Visual Studio Automatic Code Snippets, And MoreAll prices confirmed at press time and are subject to change. The opinions expressed in this column are solely those of the author and do not necessarily reflect the opinions at Microsoft.A Chart Is Worth 1,000 WordsA well-designed chart offers a quick and clear synopsis of [...]
Toolbox: ASP.NET Controls, FTP, and More
ASP.NET Controls, FTP, and MoreMake Your ASP.NET App More AppealingSince most ASP.NET applications are merely data entry forms accessible over the Internet, developers usually have their time monopolized by important yet bland issues such as reporting, data-entry form design, and input validation. This focus is evident in third-party control suites, which typically have a grid [...]
Data Points: Report Controls in SQL Server 2005 Reporting Services
Report Controls in SQL Server 2005 Reporting ServicesCode download available at: DataPoints2006_07.exe (391 KB) Browse the Code Online Reporting has always been one of the dark arts of development. The tools typically seem to do just enough to get you to a certain point, then leave you to find workarounds to solve more complex issues. [...]
Finding/Getting Child repeater control position in parent repeater as.net c#
If you have repeater inside a repeater, in some situation you may need to find position of control( that’s inside child repeater) in parent repeater. Let’s take an example. Here is what I have.As you can see in sample code above, I have child repeater “rptChild” inside a parent repeater “rptParent”. Same user control is inside child [...]
Handling child control events in nested repeater asp.Net C#
In this article I will show you how can you handle control’s event that is inside of nested repeater control and pass informative message from user control to main page(f.e success/failure message). I had a user control that submit the data to database and this control was inside both parent and child repeater. Here is the aspx [...]