Multimobile Development: Building Applications for any Smartphone
System.EventArgs Class
Information   Base Types   Related Resources

EventArgs is the base class for classes containing event data.

  • Namespace: System
  • Assembly: mscorlib.dll

  • System.Object
  • View this type on MSDN
  • Search for this type on MSDN using MSDN's own search engine
  • Google for this type - all Web
  • Google for this type - MSDN only
    Articles (1087)Discussions (14414)MembersRotor
    Articles

    Page: 1234567891011121314151617181920
    2122232425262728293031323334353637383940
    41424344
    Creating Graphics On-the-Fly in ASP.NET
    DotNetJunkies
    Creating graphic for use in your web page is a snap in .NET. In this example I will be using VB.NET to create a graphic file for use in a page. Since this graphic will be hosted in an Image server control you will have full access to placement, sizing and other properties.
    Creating Graphics On-the-Fly in ASP.NET
    DotNetJunkies
    Creating graphics for use in a Web page is a snap in .NET. Since this graphic will be hosted in an Image server control you will have full access to placement, sizing and other properties.
    Creating HttpHandlers and HttpModules
    Bipin Joshi
    Http handlers are special applications that typically handle files with certain extension. For example when you request a file with extension .asp IIS routes it to ASP processor. But what if I want to handle files with my own extensions say .bipin? Http handlers allow us to do just that. Now, you might be thinking what is the use of a new file extension? Consider a case where you want to generate graphics on the fly. In such cases you will write an Http handler that will do your task. Note that Http handlers are typically called for the specific file extensions they are designed for. If you have worked with ISAPI extensions in past you will find this concept very familiar.
    Creating multilingual websites - Part 2
    The Code Project
    Creating multilingual websites - Part 2
    Creating Reports using Crystal Reports for Visual Studio .NET
    DotNetJunkies
    Ljubomir explains how you can use Crystal Reports with Visual Studio .NET to make professional-looking reports simply and easily.
    Creating Run-time Menus
    C# Corner
    The following example demonstrates how to add menu item and remove menu items at runtime.
    Creating Template Forms using Visual Inheritance
    The Code Project
    understanding visual inheritance in .net and creating generic Template forms using visual inheritance
    Creating Validation Images On-The-Fly with GDI+
    DotNetJunkies
    Developers can spend many hours with a graphics tool trying to design graphical buttons for a Web site. However, there is a technique that enables you to specify things like, font, size, color and create buttons/labels on-the-fly! In this article, Ben looks at an example where creating dynamic images can prove very useful and is in use by many sites already.
    Creating Web Application Themes in ASP.NET 2.0
    MSDN
    Learn to use cascading style sheets and images with themes in ASP.NET 2.0, and how you can dynamically load themes at run time.
    Creating Windows Form User Controls Part -1
    Master C#
    As we all know that the .NET Platform provides us with a Rich Windows Form API to create Windows Applications. Not only this model rich, but its also very extensible! Developers can quickly create their own controls and extend the API as they want! In this article we will see how to create our own Windows Form User Control to help us create a new 'LabledTextBox' control.
    Creating Your First C# Windows Application
    The Code Project
    C# appears to be the new language of choice around the development community, or at least the most talked about new language. Microsoft has introduced a language that will (hopefully) bring together both Visual Basic developers and Visual C++ developers alike. It is important to remember that this application is only to show you some of the most basic compenents in C#. Here we will design a form that will allow a user to populate a listbox with customer names they type above.
    Creating Your First Code Behind Page
    Master C#
    New to ASP.NET? Confused about 'code behind'? Don't have Visual Studio.NET yet? Read on for answers to your questions.. Like You, even I haven't got a copy of Visual Studio.NET Beta2, but then we read everywhere about ASP.NET's capabilities to separate the design and logic, is it possible without Visual Studio.NET? Yes, it is and I will show you how easy it is.
    Creation of XML for Microsoft Tree View Control from SQL Server 2000 Database
    The Code Project
    Tree is used for hierarchical display of data and permits you to create effective user interfaces while easing development and maintenance time.
    Crystal Report for Visual Studio .NET
    ASP Alliance
    This article is a compilation of required material to kick-start the process of implementing Crystal Reports into your .NET web application and should reduce your frustrating efforts (spent for the same research that we made) to a trifle by using these step-by-step walkthroughs. To get the best out of this article, the reader should have a basic Knowledge of database connections in ASP.NET and use Visual Studio .NET for the development.
    Crystal Reports for Visual Studio .NET
    ASP Free
    This article is a compilation of required material to kick-start the process of implementing Crystal Reports into your .NET web application and should reduce your frustrating efforts (spent for the same research that we made) to a trifle by using these step-by-step walkthroughs.
    Currency Converter for the Pocket PC
    The Code Project
    Learn how to write a useful smart currency converter tool with Visual Studio .NET 2003 for the Pocket PC 2002/2003, which works both in offline and online modes.
    Custom Error Pages and Logging Errors
    DevHood
    When building any application, be it a web application or a desktop application, handling errors gracefully is essential. Users don't want to see a stack dump or what line of code the application crashed at. This is why we provide custom error pages for users. This also gives us a method of tracking errors that users cause. This tutorial will give you an overview on how custom error handling is done. It will also provide you with some code which you can use to create your own custom error pages for your web applications.
    Custom Errors in ASP.NET
    .NET Xtreme
    When a runtime or design-time error occurs in an application, ASP.Net shows a default error page that gives a brief description of the error along with the line number on which the error occurred. A developer would wish to view this default error page, during the testing of the application since the description helps him in rectifying the error. But he would never want a user trying to access his application, to view this error page. The user would be least bothered to know about the error. Instead of showing the default error page, it would be more sensible to show a customized error page that would let the user send notification of the error to the administrator.
    Custom Errors in ASP.NET
    DotNetJunkies
    Structured exception handling is a fundamental part of the CLR and provides .NET programmers a great way of managing errors. In addition to CLR exception system, Amit explains how ASP.NET also provides ways of handling errors.
    Custom FolderDialog
    C# Corner
    It has recently come to my attention that there are quite a few people that have questions on how to develop a FolderDialog or how to add a directory list to a Windows Form.
    Custom Permissions
    C#Today
    Any multi user system needs to have a concept of security to protect one users data from another. This security element could be anything from granting or denying a user access to a file, a network share, or certain entities in a database. These security mechanisms are controlled via the use of Permissions. Before the advent of .NET, using permissions in application code was hard, but now the framework allows a very open and extensible permission architecture. In this article, the third of the week's security-based articles, Kaushal Sanghavi explores the support that the .NET framework offers for working with permissions, and demonstrate how developers can design their own custom permissions to control access to protected data.
    Custom Security Implementation
    C#Today
    In the previous articles in this series, we have discussed the security architectures and schemes available to developers in the .NET framework. Code access security and role based security are the two main types of security available to developers. In this article, Kaushal Sanghavi explores .NETs support for building a custom security scheme by implementing our own identity and principal classes that rely on user information stored in a database. In the previous article on Custom Security Permissions, we focused on Code Access Security, while in this article we focus on extending .NETs support for Role Based Security.
    Custom Windows Forms Controls: ColorPicker.NET
    MSDN
    Learn how Chris Sano created a color picker application in a Windows Forms control, with an emphasis on the color slider and the drag-and-drop functionality that were used in the application.
    Cutting Edge
    MSDN
    Dress Your Controls for Success with ASP.NET 1.1 Themes, Part 2
    Cutting Edge: Custom Script Callbacks in ASP.NET
    MSDN
    Custom Script Callbacks in ASP.NET
    Ad
    BootFX
    Reliable and powerful .NET application framework.
    iOS, Android and Windows Phone Development Training and Consultancy
    Hosted by RackSRV Communications
     
    Multimobile Development: Building Applications for any Smartphone
    Copyright © AMX Software Ltd 2008-2010. Portions copyright © Matthew Baxter-Reynolds 2001-2010. All rights reserved.
    Contact Us - Terms of Use - Privacy Policy - 4.0.30129.1734