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
    Adding Tray Icons and Context Menus
    The Code Project
    Beginner's Tutorial on adding tray icons and setting context menus.
    ADO .NET for the ADO Programmer
    MSDN
    ADO .NET is the latest in a long line of database access technologies that began with the Open Database Connectivity (ODBC) application programming interface (API) several years ago. Along the way, a number of interesting things happened. For example, COM landed at the database territory and started a colonization process that culminated with OLE DB. Next, ActiveX® Data Objects (ADO)—roughly an automation version of OLE DB—has been elected to govern the Visual Basic® and ASP community of Windows®-based database developers.
    ADO.NET 101: SQL Connection
    The Code Project
    A tutorial on connecting to SQL 2000 Server
    Advanced Basics: Synchronizing Multiple Windows Forms
    MSDN
    Get changes to one form to show up on other forms.
    Advanced Checkbox Validation Across n-Pages for the DataGrid Control
    DotNetJunkies
    In this article, Oliver shows how to select up to two records from a datagrid that can then be compared to generate a PDF document on the fly.
    Advanced Data Mapping in .NET
    DotNetJunkies
    In this article, Tin demonstrates 3 automated mechanisms for data mapping: mapping from Database table columns to object properties, mapping from HTML form fields to object properties, mapping from ASP.NET Web controls to object properties.
    Advanced DataGridding: Paging, Sorting, Showing Grid Statistics and Hiding Redundant Controls
    DotNetJunkies
    This article takes a look at how to solve some of the most common problems developers encounter when trying to work with the DataGrid. These include DataGrid paging, sorting by columns, showing statistics about result, hiding the pager button and hiding the DataGrid itself when there are no results to display. This article walks you through a solution.
    Adventures in Visual Basic .NET: Broadcasting Messages to Multiple Clients
    MSDN
    Rocky Lhotka discusses optimistic concurrency and shows you how to create a messaging system that lets multiple users know when they are editing the same data at the same time.
    Allowing Users to Upload Multiple Files at Once
    DotNetJunkies
    This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. Specifically, this article will demonstrate how to set up a page that has 5 HtmlInputFile controls where a user can choose 5 images to upload. Only .jpg and .gif extensions will be accepted on the server and each one will be saved to a different directory::so any image that has the extension .jpg will be saved to the jpgs direcory and .gif will be saved to the gifs directory and everything else isn't saved at all.
    Allowing Users to Upload Multiple Files at Once
    DotNetJunkies
    This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server.
    An Event Pool
    The Code Project
    An event pool helps manage large amounts of events that otherwise clutter up your code and make maintenance difficult.
    An Event to Remember
    MSDN
    Last month, we talked about performance and boxing. One of the questions that came up from a reader was why the Perl version is so much faster than the C# version. One answer is that Perl is very good at what it does. One reader pointed out that I had forgotten to tell the Regex to compile the regular expression rather than interpret it on every match. In Beta 1, this is done by passing "c" as the second parameter to the Regex constructor (there's an enum to do the same thing in Beta 2). This cuts the overhead nearly in half, and reduces the elapsed time for the fastest version down to a little less than 7 seconds.
    An Exception to the Rule, Part 2
    MSDN
    In the previous column, we briefly mentioned Application_Error events and Page_Error events. These events are raised whenever we have an unhandled exception occur within our application. If a Page_Error event is present within an ASP .NET page, and an unhandled error occurs, the event is raised. Application_Error is slightly different. It is raised for all unhandled exceptions in our ASP .NET application and is implemented in global.asax or within an HTTP Module.
    An Extensive Examination of the DataGrid Web Control: Part 1
    ASP.NET - 4GuysFromRolla
    This article is the first in a multi-part series on using the DataGrid Web control that will span several weeks. The ASP.NET DataGrid Web control, which displays database information in an HTML table, is highly versitile. In its simplest form (examined in this article) the DataGrid displays a bare-bones HTML table, but it can be enhanced to output a richer UI, to allow for sorting based on the database columns, and to even allow paging of the database results! All of these interesting topics will be covered in future parts of this article series.
    An Extensive Examination of the DataGrid Web Control: Part 2
    ASP.NET - 4GuysFromRolla
    This article will examine how to perform custom formatting of the DataGrid.
    An Extensive Examination of the DataGrid Web Control: Part 3
    ASP.NET - 4GuysFromRolla
    This article is the third piece of a multi-part series on using the DataGrid Web control that will span several weeks. The ASP.NET DataGrid Web control, which displays database information in an HTML table, is highly versatile. The basics of the DataGrid were discussed in Part 1; information on specifying display properties of the DataGrid was discussed in Part 2. This article will examine how to associate custom events with the DataGrid.
    An introduction to a post-relational database for .NET : Matisse - Part 4
    The Code Project
    ADO.NET programming with a post-relational database
    An Introduction to Mobile Programming in C#
    C#Today
    With the expansion of the web away from traditional browsers, current technology has brought the internet into mobile devices. Microsoft has constantly improved its support to such devices, and the introduction of the .NET framework has taken this support a step further. With .NET we can program for a mobile device as a normal web page and the Common Language Runtime and .NET framework will take care of rendering the data in the appropriate format, i.e. as HTML for browsers, as WML for mobile phones, etc. In this article Niranjan Kumar introduces us to programming for Mobile devices using C# and ASP.NET pages. This is illustrated with a Stock List application that accesses a SQL Server database and lists available stocks on either a Mobile device or HTML browser.
    An Introduction to Programming Using Microsoft Visual C# 2005 Express Edition
    MSDN
    Using various example projects, readers will be exposed to several aspects of the C# programming language and key concepts of the .NET technologies.
    An Introductory Guide to Building and Deploying More Secure Sites with ASP.NET and IIS, Part 2
    MSDN
    Forms authentication is one of the most compelling and useful new features of ASP.NET. It enables developers to declaratively specify which files on their site can be accessed and by whom, and allows identification of a login page. When an unauthenticated user attempts to retrieve a page protected by forms authentication, ASP.NET automatically redirects them to the login page and asks them to identify themselves. Included here is an overview of forms authentication and what you need to know to put it to work. Also included is hard-to-find information on the security of cookie authentication and on combining forms authentication with role-based URL authorizations.
    An Overview Of Link Label In C#
    C# Help
    The LinkLabel control exhibits links to other objects, such as files or Web pages. Class LinkLabel is derived from class Label and therefore inherits all of class Label’s functionality. A LinkLabel looks as underlined text. When the mouse moves above the link, the pointer modify to a hand. This is alike to the behavior of a hyperlink in a Web page. The link can change color to indicate whether the link is new, visited or active.
    An Overview of Web Browser Express
    MSDN
    Easily build your own Web browser that supports tabs and an integrated link to a search engine by using the C# Express WebBrowser control.
    An RSS 2.0 Blog Reader Written In MyXaml
    The Code Project
    An RSS 2.0 Blog Reader Written in MyXaml
    An XML based dynamic runtime GUI generator
    The Code Project
    Generate controls, set property values, and wire up event handlers at runtime from an XML definition.
    Animate System Tray in C#
    C# Corner
    This application gives you a picture of how to use .NET's TrayIcon class. With the introduction of this class in .NET, no need to call Shell_NotifyIcon Win32 API and TrackPopMenu() and DestroyMenu() APIs. Designing of your icon, creating context menu, adding event handlers are all done during design time itself.
    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