System.EventArgs Class
Information   Base Types   Related Resources

EventArgs is the base class for classes containing event data.

  • Namespace: System
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: mscorlib.dll

  • System.Object
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (890)Discussions (11139)MembersRotorChanges
    Articles

    Page: 1234567891011121314151617181920
    21222324252627282930313233343536
    BUG: The original data appears in the DataGrid control although you have removed the data from the DataSet object
    Microsoft Support
    (812919) - To make your data appear on a form, you bind a Microsoft Windows Forms DataGrid control to a DataTable object that is included in a DataSet object. After your data has appeared in the DataGrid control, you use the Tables.Clear method to remove the...
    BUG: The Popup Event Does Not Raise for the Menu Item of the Context Menu Control That Is Associated with the Notify Icon
    http://www.kbalertz.com/
    (814737) - When you right-click the Notify icon for a Microsoft .NET application, the Context Menu control associated with the Notify icon is displayed. If you point to the menu items, the submenu items are displayed. However, the menu items Popup event does not...
    Build a Stack for Formatting or Searching
    The Code Project
    This article describes how to build a stack for searching or formatting.
    Build a Universal DAL Component
    DotNetJunkies
    Think about the possibilities of a component in the data access layer (DAL) of your application that didn't care what .NET Data Provider you were using. It could work just as easily with the SQL Server Data Provider or the OleDb Data Provider, or any other potential .NET Data Providers that could surface in the future. A DAL component that you could use against an Access 2000 database in development, and against a SQL Server database in production. In this tutorial, Doug shows how to build a universal data
    Build Your ASP.NET Pages on a Richer Bedrock
    MSDN
    Build a base class to share functionality across all your ASP.NET 1.1 pages.
    Building a Basic Flash MX Page with ASP.NET and SQL Server
    DotNetJunkies
    This how-to article describes how to create a basic Flash MX login interface that utilizes ASP.NET and SQL Server 2000.
    Building a CD Player Using VB.NET Part 2
    DotNetJunkies
    In the first part of this article Steve showed how to use the Windows API function in VB.NET and to build a library of CD Audio methods. In part 2, Steve builds a CD player and shows how to build a button array that is attached to a group box.
    Building a CheckBoxList Validator Control - Part 2
    DotNetJunkies
    As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. <b>But</b> last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side valida
    Building a CheckBoxList Validator Control - Part 2
    DotNetJunkies
    As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. But last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side validation, but how to create a CheckBoxListRequiredFieldValidator control.
    Building a Custom Registration and Login Control
    MSDN
    Why wait for ASP.NET Whidbey to add Registration and Authentication controls? Build that functionality into ASP.NET 1.1 with this article.
    Building a custom web control: a textbox and validator in one!
    Wimdows.net
    In this article we will have a look at implementing a custom web control. This web control will inherit from the TextBox web control, and will automatically add a required field validator at run-time. This way, when we need a required field text box, we don't need to mess about with the required field validator, but instead we just define an instance of our custom web control.
    Building a DataNavigator Control
    MSDN
    The list of ASP.NET rich data-bound controls is a long one, but it's not all-encompassing. You won't find any Microsoft® .NET counterpart for the Data control—a scrollable and updateable binding context that data-bound controls could rely on to refresh their user interface. The original Data control allowed for simple movements—first, next, previous, and last. It worked on top of a Recordset object and exposed the UpdateRecord method to save changes according to the capabilities of the currently selected type of cursor. While not the perfect programming tool, the Data control was especially good at building simple user interfaces for tables used internally for administrative purposes.
    Building a Directory Listing Application
    DotNetJunkies
    In this article, Ljubomir shows you how to allow the user the ability to specify a folder for use later in a program. He explains two ways of building a Directory Listing application that lists all folders from a specific drive and its subfolders.
    Building a Full-Featured Custom DataGrid Control
    DotNetJunkies
    In this article, we will examine and implement these very features and demonstrate how you can build your very own Datagrid control component, one that you will be able to customize, and more importantly reuse. Based on this ability, you will then end up with one powerful control that will have many implementations, from which you could learn about creating almost any other types of custom controls.
    Building a Generic Database Tool Using .NET and Three Tier Architecture
    DotNetJunkies
    In this article, Sun shows how easy it is to develop a n–tiered Web application to create a generic database tool using ASP.NET and the .NET Framework. The system is quite simple and is able to handle the management of any simple table in any database. It provides an excellent starting point for providing a generic database tool.
    Building a Master/Detail DataGrid
    DotNetJunkies
    "I have a question regarding DataGrid. Can I bind a column of a DataGrid to another DataGrid? I have a situation where I have to display a few details in the same DataGrid on click of a HyperLink column." This can certainly be done. You are describing a master/detail DataGrid. For example, a DataGrid of customers with a column in each row that has an embdedded DataGrid of all the orders placed by that customer.
    Building a Master/Detail DataGrid for Database Inserts
    DotNetJunkies
    We are going to build an example Web Form that you can extend in your application. We will have two tables - OrderMaster and OrderDetails. As the names suggest the former is a master table where as the later is detail table. We want to add one record in the master table and several others in the detail table. We will not display any existing rows on the screen to maintain a clean page.
    Building a Master/Detail DataGrid for Database Inserts
    DotNetJunkies
    In this article, Bipin explains how to build a Web Form where the requirement is inserting many rows of data against one row of master data. He builds an example Web Form that you can extend in your application with two tables - OrderMaster and OrderDetails.
    Building a Moderated Discussion Forum in C#
    C#Today
    In this article Juan Martinez tackles one of the most common features on a website: A discussion forum. Forums are a primary tool for building online communities and driving traffic to the website. We will step through the development of a moderated discussion forum from scratch. Analysis, design, implementation and deployment will be covered to furnish a working moderated forum in C#.
    Building a real-life web-experience : Don&acute;t trip over the threads.
    DotNetJunkies
    In my previous contribution I took a look at calling web-services. There I showed how to asynchronously invoke a web-service from a Windows form. Behind the scenes the project involved a lot of threading issues. The .NET framework is very good at handling these but there is one thing I overlooked. In this paper I will dive deeper into the matter and build build a more complicated service which serves jpeg pictures. A windows form consumer will make asynchronous invocations of the web-service to
    Building a Redirector to Binary Files
    DotNetJunkies
    In this How-To Doug Seven shows you how to build a Web Form to handle redirects to binary files, such as MP3's or images, when the path information is stored in an Access database.
    Building a simple templated control
    The Code Project
    A simple and straight forward example of building an ASP.NET templated control
    Building a Stack for Formatting or Searching
    The Code Project
    This article describes how to build a stack array.
    Building a Universal DAL Component
    DotNetJunkies
    Think about the possibilities of a component in the data access layer (DAL) of your application that didn't care what .NET Data Provider you were using. It could work just as easily with the SQL Server Data Provider or the OleDb Data Provider, or any other potential .NET Data Providers that could surface in the future. A DAL component that you could use against an Access 2000 database in development, and against a SQL Server database in production.
    Building a Variety of Custom Controls Based on the DataGrid Control
    MSDN
    The DataGrid Web control is by far the most powerful and versatile of all ASP .NET controls. Not only does it have many properties that you can set programmatically, but it lends itself to more advanced forms of customization. In this column, I'll build a few flavors of DataGrid-based Web controls. In doing so, I'll review the major design issues that characterize these controls and answer some of the questions most frequently raised by readers after they tackled the series of DataGrid columns in the March through June 2001 installments of Cutting Edge. In particular, you'll see how to add a custom toolbar to a DataGrid control to accomplish common tasks such as New and Unselect.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com