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
    Discussions

    Page: 1234567891011121314151617181920
    2122232425262728293031323334353637383940
    4142434445464748495051525354555657585960
    6162636465666768697071727374757677787980
    81828384858687888990919293949596979899100
    101102103104105106107108109110111112113114115116117118119120
    121122123124125126127128129130131132133134135136137138139140
    141142143144145146147148149150151152153154155156157158159160
    161162163164165166167168169170171172173174175176177178179180
    181182183184185186187188189190191192193194195196197198199200
    201202203204205206207208209210211212213214215216217218219220
    221222223224225226227228229230231232233234235236237238239240
    241242243244245246247248249250251252253254255256257258259260
    261262263264265266267268269270271272273274275276277278279280
    281282283284285286287288289290291292293294295296297298299300
    301302303304305306307308309310311312313314315316317318319320
    321322323324325326327328329330331332333334335336337338339340
    341342343344345346347348349350351352353354355356357358359360
    361362363364365366367368369370371372373374375376377378379380
    381382383384385386387388389390391392393394395396397398399400
    401402403404405406407408409410411412413414415416417418419420
    421422423424425426427428429430431432433434435436437438439440
    441442443444445446
    Load an ascx in code error (VIP replies)
    microsoft.public.dotnet.framework.aspnet.webcontrols
    Hi, I've an aspx page named MyPage.aspx with a table with 1 row and 3 cols: TABLE style "Z INDEX: 101; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: 0px" cellSpacing "0" cols "3" cellPadding "3" width "938" align "left" border "0" TR TD id "esquerda" vAlign "top" width "298" p   /p /TD TD style "WIDTH: 229px" width "229" p   /p /TD TD width "875" p   /p /TD /TR /TABLE ... and I'm...
    Load event firing twice for one form instance (VIP replies)
    microsoft.public.dotnet.languages.vb
    I have a form which I want to show modally; it's a fairly old form that's been ported up several versions of VB, and I'd like to keep its rewriting to a minimum. Basically, it is used in this sequence: 1. The form is shown. The Form Load event does some initialization. 2. Further parameters are passed to this form. 3. We actually need this form to be modal, so we hide it and show it again modally....
    Load event firing twice for one form instance (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    I have a form which I want to show modally; it's a fairly old form that's been ported up several versions of VB, and I'd like to keep its rewriting to a minimum. Basically, it is used in this sequence: 1. The form is shown. The Form Load event does some initialization. 2. Further parameters are passed to this form. 3. We actually need this form to be modal, so we hide it and show it again modally....
    Load XML from ADO Recordset (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    Hi all I have a asp.net application which calls a web service via a wdsl file which retrieves an XML String. The XML String is from a adodb recordset saved as via a stream. Dim oRS as New ADODB.Recordset Dim oStream as New ADODB.Stream Set oRS oCnn.Execute(sSQL) 'Save recordset as XML oRS.Save oStream, adPersistXML sXML oStream.ReadText In the ASP.Net application I retrieve the sXML via the web se...
    LoadControl bug? (VIP replies)
    microsoft.public.dotnet.framework.aspnet.caching
    A similiar question was posted 2003 03 19 but with no replies. I have an application that loads about 15 user controls some of which are cached. As I like to write generic code I have decded to encapsulating the logic of loading the user controls into a single method. In doing so have hve encountered a problem that is driving me nuts. I have been able to duplicate the problem in a small test harne...
    Loading a Control on a Different Thread (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    I'm trying to add a control to a form when a user clicks a button the contol takes a long time to load. To make the app appear responsive, I want to do this in the background (displaying a simple "Loading" message). How do I go about this? I've tried creating a new thread, and useing the Control.BeginInvoke method but the result is that the control created within the different thread does not appe...
    Loading and Showing a Form before Adding Items to a Listview (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hello, Ran into a bit of a problem here and have now exhausted my resources to getting this working. What I am trying to do is load and show a simple vb form with a listbox in it: Dim frm nc code As New frm nc send frm nc code.Show() Well what I want to have happen is it loads the form then shows all of the controls on the form (especially the listview control which should be blank at this time). ...
    Loading app with progress bar? (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hi all, I would like to have a progress bar on my splash screen to run when my application is loading. Any thoughts on how to do this. TIA! Rudy
    loading Dataset from one connection and insert those rows to a table from different connection (VIP replies)
    microsoft.public.dotnet.framework.adonet
    Hello folks, I am loading the Dataset from one connection, do a few changes to a few rows and want to insert all of those rows into another table in another connection. the problem is that the primarily loaded rows have rowstate unchanged, the ones that get changed have state changed but non of them can be inserted into another table because this would require rowstate added. What can I do? The ro...
    loading forms (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hallo, I have 3 forms : main, form1 and form2 I can open form1 and form2 from main by clicking a button in main. I can open form2 form form1 by clicking a button in form1. I can open form1 from form2 by clicking a button in form2. However, when I open form1 and form2 from main, and then open form1 from form2, then I get 2 form1's. This is logical because I made new objects. But how can I prevent t...
    Loading numerous pictures (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hi, I have a project with various forms that each include a number of picture boxes and panels with background images. When these forms first load, they kind of load in "pieces", with the pictures coming to view consecutively, even on a 1.6 Ghz processor with 512 MB RAM. The pictures are loaded in the Form Load event. Is there a way for them to all load perfectly before the user sees the form? Tha...
    Loadresstring, Loadrespicture ? (VIP replies)
    microsoft.public.dotnet.languages.vb.upgrade
    I can no longer use those functions. The compiler always say that my resource is not found... is there something new to do to deal with .res files
    localizing ax external template (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    I've a datarepeater that loads custom external templates with loadtemplate and bind data to them. All ok. Now I need to localize some text labels, but I don't know how can I change this data. If I call from template a function in page's codebehind, I have an error. How can I do? I wouldn't like create a lot of template, localized in asp code, and load manually the right one.. thanks
    locating a notify icon (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    Hi all, I'm writing an application that sits in the system tray and will display notification "bubble style" popups. I want the notification popup to eminate from the icon (this must work regardless of where the taskbar is docked). I haven't been able to find an API to discover the exact position of my icon in the system tray. I create the NotifyIcon instance and it magically appears in the system...
    Lock down TextBox location? (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    I am looking for a way to lock down the textbox location. It would be nice if there were a LocationChanging event, and you could call LocationChangingEventArgs.Cancel true; but, this does not exist, which leads me here. Does anyone know how I can lock down the location of a textbox so that it absolutely can not move? Thanks, Bob Dankert
    Lock size property problems in a custom control (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    I made a custom control and I want to make impossible to resize it. I follow these steps: I use a ControlDesigner (overridden SelectionRules) I hide the public Size property and make it readonly I override the protected DefaultSize property and I achieve the correct behaviour in the designer. The problem is that at runtime the control is many times bigger the size specified in the size property an...
    lock synchronization and c# (VIP replies)
    microsoft.public.dotnet.languages.csharp
    Hi, I have a synchronization issue and is wondering if someone can help I have a forms timer which creates a second thread to do some background calculations. This thread then calls an updategui method. The call at the update gui method is marshalled, so we know we are on the right thread. Still however there is a locking problem I have a lcok on the whole timer method. and also on the whole calcu...
    Logging Error Best Practices (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    I've got a logging routine on my client that logs errors. I'm hoping to use this error information for debugging purposes during testing and then during production. I want to log these exceptions at the best place possible to help me in this goal. Where should I put these try / catch blocks? Currently I'm placing them around all form events where I'm doing anything non trival. Is this too much? Wo...
    logging soap req./resp. while invoking webservices (VIP replies)
    microsoft.public.dotnet.framework.aspnet.webservices
    Hi, I have a problem invoking my .Net webservice from behind a particular web proxy setup.( the setup being physically inaccessible to me ) I get the error The request failed with HTTP status 417: Expectation Failed. StackTrace: at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.W...
    Login failed for user 'admin'. (VIP replies)
    microsoft.public.dotnet.general
    I am a beginner and trying my first C# application. Any reason why I am getting the message Login failed for user 'admin' I have thoroughly checked the security settings in the sql server. Find my code below. using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using Syste...
    Login security for a form (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    I have a form that will prompt for a user name/password. In VS.NET, I have the protected form in a folder named Admin. I have a Web.config file in that folder as well. It contains the following section: authorization deny users "?" / allow users "*" / /authorization In the root folder where the other forms are located I have a Web.config file with the following section: authentication mode "Forms"...
    Login security in ASP.net (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    Hello Everybody, I have one login page and other pages which will be shown only if user logs successfully. If someone tries to access page without identification then she should be directed to login page. I have following code after successful login I do... Session("UserID") txtUser.Text.Trim() In every page load I have code... Private Sub Page Load(ByVal sender As System.Object, ByVal e As System...
    Looking for code (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hi, I am looking for code for a alarm clock program that pops up a messege to be used as part of my VB.Net class project. Any help is very much appreciated. Thanks
    Loop Control array (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hello, Could you explain me,In VB6 using control array,and how about VB.net. Thanks
    loop with field names (VIP replies)
    microsoft.public.dotnet.general
    Hi everybody, I want something like I used in MS Access: for i 1 to 20 me("FieldName" & i).Text "Text bla bla bla" next i I want something like that because I have a series of fields like FieldName1; FieldName2, FieldName3, ... which I want to fill in programmaticaly. thanks in advance Filip
    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