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
    Creating DataGrid Via Code... (VIP replies)
    microsoft.public.dotnet.framework.aspnet.datagridcontrol
    Hey all, Been reading up on ASP.NET (using VB.NET) and have been trying to figure out if this is possible. I need to make 4 connections to 4 different oracle databases and retreive data from some tables there. Is it possible to create 4 datagrids to display the data via code instead of having 4 datagrids hardcoded in the code. The number of databases could change so programatically created them wo...
    creating dataset from xml string (VIP replies)
    Develop.com's DOTNET List
    There has to be an easier way to create a dataset out of an xml node then what I have done below. So I don't get into bad habits, please help me refine my xml skills here. What I have is a self made xml string which is a return of a function when an error occurs. In this xml string I have the Error data (Number, desc, Preferred action) and if it was on a batch update and some records failed, I ret...
    Creating DLLs (VIP replies)
    microsoft.public.dotnet.languages.vb
    I'm sort of new to DLL creating, so I was hopeing that someone could give me a little bit of help. I have this information here in a DLL file: Public Class ED L1 Public Sub Encode L1() MsgBox("Tada!!!") End Sub End Class I have this information here in the EXE file: Public Declare Sub Encode L1 Lib "EncL1.dll" () Private Sub frmMain Load(ByVal sender As System.Object, ByVal e As System.EventArgs) ...
    Creating Dynamic Mobile Forms using MMIT (VIP replies)
    microsoft.public.dotnet.framework.aspnet.mobile
    (Type your message here) From: Nadun Senevirathne Hi Group, I am using MMIT to create a mobile application and I need to create mobile web forms dynamically. I tried following code but it thorows me an error. private void Command6 Click(object sender, System.EventArgs e) { System.Web.UI.MobileControls.Form Form6 new System.Web.UI.MobileControls.Form(); ActiveForm Form6; } This is the error I get w...
    Creating MenuItems programaticialy (VIP replies)
    microsoft.public.dotnet.languages.vb
    I am in a bit of a bind. I can't believe I cannot figure this out but I have been at it all day and it is just not coming to me. I am building menus on a form based upon an XML file. I have created a class to do this and that part is all working just fine. My problem is the event handler where I want all the click events to go. Not really building the event hander, just determining the individual ...
    Creating new file (VIP replies)
    microsoft.public.dotnet.framework.windowsforms
    How can i create a file when a filenotfound exception occurs ? also when i try to access a file it says it is in use with another process. how do i know which process is using that file. I had exited all applications but then also the same error. There are 10 types of people. Those who understand binary and those who dont. Vedant Lath
    Creating PDFs dynamically forces page reload (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    Hi all, Im having difficulty serving synamically generated PDFs to clients via asp.net. Im using crystal reports to generate them. In my page load I have the following: private void Page Load(object sender, System.EventArgs e) { // Put user code to initialize the page here try { ReportDocument rd new ReportDocument(); rd.Load(file); for (int i 1; i Request.QueryString.Count; i) { //setup report pa...
    Creating popups (VIP replies)
    microsoft.public.dotnet.general
    Help! Iâ m trying to get popups to work in asp.net. Iâ m Using the following javascript code in a sub, but I canâ t get the PopupWindow to work. At first I thought the routine wasnâ t working but it is. It looks like itâ s the window.open thatâ s not working. I have site popup allowed turned on, if I replace window.open with alert it works, if I put the code in the html code it works. Any suggesti...
    Creating table from dataset (VIP replies)
    microsoft.public.dotnet.framework.adonet
    Hi I have a dataset which has received its data from a remote web service. How can I now save the dataset into a local access table? Thanks Regards
    creating textbox & label dynamically "on the fly" (VIP replies)
    microsoft.public.dotnet.languages.vb
    i forgot how to create Textboxes & Label Dynamically. Meaning, i want to make them .. initialize their position .. and view them and interact with them.
    Cryptographic service provider (CSP) could not be found for this algorithm. (VIP replies)
    microsoft.public.vsnet.debugging
    I'm running an ASP.NET webapplication on a Windows 2000 Server SP4 machine with .Net Framework 1.0 installed. The ASP.Net application uses impersonation (windows domain account). This is needed for communication between two servers (some ldap stuff). Furthermore the application uses FormsAuthentication. At some point the FomrAuthentication.Decrypt method is called. At this point I get the followin...
    Cryptographic service provider (CSP) could not be found for this algorithm. (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    I'm running an ASP.NET webapplication on a Windows 2000 Server SP4 machine with .Net Framework 1.0 installed. The ASP.Net application uses impersonation (windows domain account). This is needed for communication between two servers (some ldap stuff). Furthermore the application uses FormsAuthentication. At some point the FomrAuthentication.Decrypt method is called. At this point I get the followin...
    Crystal Report in Web Application (VIP replies)
    microsoft.public.dotnet.framework
    Crystal Report in Web Application Fails to Log On to SQL Server I have this error when making a crystal report for the web. I read the following article Microsoft Knowledge Base Article 319264 http://support.microsoft.com/default.aspx?scid kb;en us;319264 which helps in a way. The key point of getting this to work is if you use OLE DB and SQL Server authentication. Well with my report I need a dat...
    crystal report shows empty report on deployed machine. (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hi all, I'm using VS.NET 2003 and CR which is bundled with VS. When i was on my development machine i can see my report very well. But when i deploy the project to different machine my report shows me an empty page on report wiever. I have an entrance form that user selects the criteria. Two value passed the report wiev form. Report consists of fields from a dataset and a few formula is used in cr...
    Crystal Report with Oracle (VIP replies)
    ASPFriends.com 'ngfx-crystal' list
    OK, I'm trying to create a Crystal Report Viewer with Oracle but I'm having problems. I have managed to create a report, haven't edited it much because I want to wait and see if I can view it first. If I am in design mode in VS.NET, my report shows up, but if I try and view the webpage, I get various errors from Logon failed to Query Engine Error: 'C:\WINDOWS\TEMP\temp 8b7c9b17 24c8 451e bd09 c2e8...
    Crystal Reports "Logon Failed" for Access Databases! (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    Hi people, There seems to be a LOT of threads regarding the "Logon Failed" problem when using Crystal Reports with ASP.NET. But all the thread I could find was when trying to use it on SQL server. However, I get the problem when just trying to pull a report from an Access database. It doesn't make sense. There is NO authentication involved (I didn't put in any passwords), right? Please have a look...
    Crystal Reports and Databases & Also If? (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hey Group, I use the following code to Run my Crystal Reports. Private Sub btnPasswordListsPrint Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPasswordListsPrint.Click rptForm.Text "Excellence.Net Password Lists" 'Set the form's titlebar rptForm.CRVReportPrint.ReportSource New PasswordList() 'Tell the viewer which report to display rptForm.CRVReportPrint.RefreshRepor...
    Crystal Reports over the web (VIP replies)
    ASPFriends.com 'ngfx-crystal' list
    Hi, I want to deploy a ASPX page with a crystal report on it. The server only has the .NET Framework on it. I placed all the Crystal Report DLLs in the GAC, so now it can find them, however I still get the error: [NullReferenceException: Object reference not set to an instance of an object.] CrystalDecisions.Web. .get 7() 189 CrystalDecisions.Web.CrystalReportViewer.OnInit(EventArgs e) 352 System....
    Crystal Reports problem (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    I'm trying to use the Crystal Reports functionality that is built into .NET. The first problem I encountered was missing Crystal Reports dlls on the server. I solved this by copying my CR dlls from VS.NET to my web server. Don't understand why these aren't include in the .NET Framework. Now I'm getting a different error when I try to load a page with the CR viewer on it. If anyone could help with ...
    Crystal Reports sort of (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hey Again Group, Sorry to be a pain but .......... I have a Windows Forms Project with serveral reports in now. At the moment I have 7 Forms all Called Print1, Print2, Print3 and so on. Each form has a Crystal Report Viewer on it assigned to the perticular report eg, Print1.rpt, Print2.rpt, and so on. Is there a better way to do this by code, im looking at about 50 or so reports and i think its go...
    CrystalDecisions.Web.CrystalReportViewer is not compatible with the type of control CrystalDecisions.Web.CrystalReportViewer (VIP replies)
    microsoft.public.dotnet.framework.aspnet
    Hello, I created a very simple page just to load a crystal report which was working just great. Code started throwing the following exception, after I installed crystal report 9 advanced edition. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropri...
    CSV file into dataset (VIP replies)
    microsoft.public.dotnet.general
    Hi, I have a CSV file where the fields are inclosed in " and separated by , i.e.: "field1","field2","field3",..... etc. Is it possible to fill a dataset in an easy way? I can write my own methode to read it line by line, but then it would take longer. I know about the FAQ from www.syncfusion.com but when I use that, I only get one column with everything. Is there any other way? thanks, Eric
    Currency Manager.Position won't go to last row... (VIP replies)
    microsoft.public.dotnet.languages.vb.data
    Hello, I Have a VB.Net Winforms application using data binding. The model I used is based on an example from a book. The problem that I am having happens when I try to add a new row to the datatable. I am able to add the row via datatable.rows.add(datatable.newrow()) and the datatable.rows.count is incremented when the method is run. I can access any of my existing records using the currency manag...
    Currency Violation. Update command affect 0 records (VIP replies)
    microsoft.public.dotnet.languages.vb
    Hello I'm getting the above mentioned error in my application I have a datagrid bound to a datasource like so MyDatagrid.DataSource Mydataset.Tables(Order) this all works fine However I have another field on the form which is a richtextbox and is bound to another field in the same datasource like so Me.RtxtDialog.DataBindings.Add("text", MyDataset.Tables.Item("Orders"), "MyRichTextField") this fie...
    CurrencyManager in inherited forms (VIP replies)
    microsoft.public.dotnet.framework.windowsforms.databinding
    My problem is that the eventhandler procedure will not run when position is changed in datagrid. I have a windows BaseForm with inherited forms. The baseform contains a datagrid bound to a dataview bound to a dataset. They are all declared as "Protected Friend". Here are the first lines of the baseform class defintion: Public Class BaseFormList Inherits System.Windows.Forms.Form Protected Friend m...
    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