| A Remedy for DataGrid Vertigo |
| DotNetJunkies |
| The AlternatingItemStyle can be a wonderful thing. But in many cases I found that I would start to get
a feeling like vertigo if I scrolled the page up or down. So I thought back to my days in Manhattan in the financial
industry and remembered how I used to prepare reports to be viewed on screen. I alternated the
colors of the rows, but I did it every three or five rows (depending on the width of the report,
the content of the report, or my own aesthetic taste). |
|
| Can We Talk? (Part 2) |
| DotNetJunkies |
| In Part 2 we have three distinct goals: 1. Create a database to store our tasks and provide stored procedures to retrieve them. 2.Export our tasks as XML so they can be used by outside applications (such as our TaskChecker application). 3. Provide a new method in our Web Service that will allow us to mark our tasks as Received |
|
| Implementing dialog box in ASP .NET based web application |
| DotNetJunkies |
| The standard WinForm DataGrid control that is included with the .NET Framework does not inheritantly expose a method for printing its contents. Undoubtedly, there are several third party vendors that offer DataGrid components which include such support. However, this article will demonstrate that with relatively little code you can implement basic print functionality in a WinForm DataGrid. |
|
| The Power of Base Pages |
| DotNetJunkies |
| You can gain flexibility, maintainability, and power by subclassing System.Web.UI.Page. In this article, you'll learn how to create a class to serve as the base for all of your site Web forms, and then see it in action. |
|
| Windows Services Simplified in .NET - Part 1 |
| DotNetJunkies |
| Keyuan shows you how easy it is to create Windows services with the .NET Base Class Library in any .NET language. |
|
| Windows Services Simplified in .NET - Part 2 |
| DotNetJunkies |
| In Part 1, Keyuan discussed how to create service applications and how to install the service apps using the project installer class. In Part 2, he will cover how to create a Service Control Program (SCP), a separate executable, that provides an UI to communicate with and control the service app. |
|
| Working With Events Over Remoting |
| DotNetJunkies |
| Subscribing to events of objects instantiated via remoting can be a tricky business. However, it is possible to build solid event publish/subscribe applications while using remoting simply by applying a few extra strategies then might not seem immediately obvious. Throughout the document, I will refer to the process that exposes the object for remoting as "server" and the process that instantiates an instance (local proxy) of a remote object as "client". However, all of these processes m |
|