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
    HOW TO: Sink Managed C# Events in Internet Explorer (Q313891)
    http://www.kbalertz.com/
    This article describes how to sink managed events from Component Object Model (COM) clients (unmanaged code) when you write .NET Windows controls. For example, you sink managed events from COM clients when you run script in Internet Explore
    HOW TO: Transfer Data to an Excel Workbook by Using Visual C# .NET
    http://www.kbalertz.com/
    (306023) - This step-by-step article describes several methods for transferring data to Excel 2002 from a Visual C# .NET program. This article also presents the advantages and disadvantages of each method so that you can select the solution that works best for...
    HOW TO: Upload a File to a Web Server in ASP.NET by Using Visual C# .NET
    http://www.kbalertz.com/
    (323246) - This step-by-step article describes how to upload a file to a Web server by using Visual C# .NET. In this article, you create a Microsoft ASP.NET file (WebForm1.aspx) and its related code-behind file (WebForm1.aspx.cs) to upload files to a directory...
    HOW TO: Use Forward and Back Buttons for the WebBrowser Control in Visual C# .NET
    http://www.kbalertz.com/
    (330280) - When you host the WebBrowser control and you want to implement Forward and Back buttons that are similar to those that Microsoft Internet Explorer implements, it is important to know when to enable and when to disable the buttons. The WebBrowser...
    HOW TO: Use the .NET Framework Properties and Events in Visual J# .NET
    http://www.kbalertz.com/
    (316680) - This step-by-step article discusses how to use the Microsoft .NET Framework properties and the .NET Framework predefined events in your Microsoft Visual J# .NET application. back to the top How to Gain Access to the .NET Framework Properties Through...
    HOW TO: Use the .NET Framework Properties and Events in Visual J# .NET
    Microsoft Support
    (316680) - This step-by-step article discusses how to use the Microsoft .NET Framework properties and the .NET Framework predefined events in your Microsoft Visual J# .NET application. back to the top How to Gain Access to the .NET Framework Properties Through...
    HOW TO: Use the ADO SHAPE Command with a DataReader in Visual Basic .NET (Q308045)
    Microsoft Support
    This article describes the ActiveX Data Objects (ADO) SHAPE command syntax that produces hierarchical recordsets and explains how to traverse hierarchical recordsets. Sample code is also provided.
    HOW TO: Use the Office Web Components with XML Data Generated by an XML Web Service Created Using ASP.NET
    http://www.kbalertz.com/
    (315695) - This step-by-step article describes how to use ASP.NET to build a simple XML Web service that retrieves data from the Microsoft Access sample Northwind database and returns the data as XML to a client when the client calls a method of the service. On...
    HOW TO: Use the Unmanaged HTML Help API from a Managed Visual C# .NET Application (Q317406)
    http://www.kbalertz.com/
    This article demonstrates how to use
    HOW TO: Use the WebBrowser Control NewWindow2 Event in Visual Basic .NET
    http://www.kbalertz.com/
    (311282) - This article describes how to use the NewWindow2 event, which is triggered by the Microsoft WebBrowser control that is included with Microsoft Internet Explorer 4.0 and later. You can use this event to specify that your browser program is to be used...
    HOW TO: Use the WebBrowser Control NewWindow2 Event in Visual C# .NET
    http://www.kbalertz.com/
    (815714) - This article describes how to use the NewWindow2 event that is triggered by the Microsoft WebBrowser control that is included with Microsoft Internet Explorer 4.0 and later. You can use this event to specify that your browser program is used whenever...
    HOW TO: Work with Code-Behind Class Files in an ASP.NET Application by Using Visual Basic .NET
    http://www.kbalertz.com/
    (312311) - This article demonstrates how to develop .aspx pages that use code-behind class files in Microsoft ASP.NET applications. The code samples in this article include the requirements for both code-behind class files that are precompiled and code-behind...
    HOW TO: Write to and Read from Microsoft Message Queue Server in Visual C# .NET
    http://www.kbalertz.com/
    (815811) - This article describes the following: How to create a message and send it to Microsoft Message Queue Server (also known as MSMQ) in a Windows application. How to read from a private queue and to deserialize the message contents for display. back to...
    HOW TO: Write to and Read from Microsoft Message Queue Server in Visual C# .NET
    Microsoft Support
    (815811) - This article describes the following: How to create a message and send it to Microsoft Message Queue Server (also known as MSMQ) in a Windows application. How to read from a private queue and to deserialize the message contents for display. back to...
    How-To Build a Dynamic Head User Control
    DotNetJunkies
    Suppose you're going to create a web application where all pages must have the same title. One could think of creating a User Control that renders this HTML fragment, so when the time to change the title comes you just do it in this User Control.
    How-To Build a Dynamic Head User Control
    DotNetJunkies
    In this How-To Xico Loko shows you how to build a user control to dynamically render the Head element of a Web Form.
    HOWTO: Automate Excel from Visual Basic .NET to Fill or to Obtain Data in a Range by Using Arrays
    http://www.kbalertz.com/
    (302094) - This article demonstrates how to automate Microsoft Excel and how to fill a multi-cell range with an array of values. This article also illustrates how to retrieve a multi-cell range as an array by using Automation.
    HOWTO: Automate Excel with Visual C# .NET to Fill or to Obtain Data in a Range by Using Arrays
    http://www.kbalertz.com/
    (302096) - This article demonstrates how to automate Excel from Visual C# .NET to fill and retrieve values in a multi-cell range by using arrays.
    HOWTO: Automate Microsoft Word to Perform a Mail Merge from Visual Basic .NET
    http://www.kbalertz.com/
    (301656) - This article demonstrates how to use Microsoft Word to create a mail-merged document by using Automation from Microsoft Visual Basic .NET.
    HOWTO: Combine Managed and Unmanaged Projects into a Single Visual Studio Solution
    The Code Project
    This article describes how to combine managed and unmanaged projects into a single Visual Studio .NET solution.
    HOWTO: Create an Excel Macro by Using Automation from Visual C# .NET
    http://www.kbalertz.com/
    (303872) - This step-by-step article describes how to automate Microsoft Excel by using Microsoft Visual C# .NET to create a workbook that contains a new macro that is associated with a CommandBar button.
    HTTP Handlers and HTTP Modules
    15 Seconds
    Using HTTP handlers and modules.
    HTTP Modules
    MSDN
    One of ASP.NET's most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. This month I'm going to take a look at HTTP modules in ASP.NET. You can use them to extend your ASP.NET applications by adding pre- and post-processing to each HTTP request coming into your application. For example, if you wanted custom authentication facilities for your application, the best technique would be to intercept the request when it comes in and process the request in a custom HTTP module.
    Icon Extractor in VB.NET
    The Code Project
    An Icon Extractor coded in VB.NET
    Image Capture
    The Code Project
    An article about image capture.
    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