Visual Basic add event in .NET 1.1 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:23:09Z http://stackoverflow.com/feeds/question/786827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/786827/visual-basic-add-event-in-net-1-1 1 Visual Basic add event in .NET 1.1 Tony Smith 2009-04-24T17:23:36Z 2009-04-24T17:40:05Z <p>I don't have a lighting bolt at the top like I normally do to add events. How do I add events in .NET 1.1 for Visual basic 2002? </p> http://stackoverflow.com/questions/786827/visual-basic-add-event-in-net-1-1/786875#786875 1 Answer by Jeremy for Visual Basic add event in .NET 1.1 Jeremy 2009-04-24T17:38:25Z 2009-04-24T17:38:25Z <p>This <a href="http://msdn.microsoft.com/en-us/magazine/cc163775.aspx" rel="nofollow">article</a> covers pretty much everything about VB.Net 1.1 events</p> http://stackoverflow.com/questions/786827/visual-basic-add-event-in-net-1-1/786882#786882 0 Answer by Max Schmeling for Visual Basic add event in .NET 1.1 Max Schmeling 2009-04-24T17:40:05Z 2009-04-24T17:40:05Z <p>I don't know if Visual Studio 2002 had this or not, but look in the properties window for the object (if this is a form or something like that) and there will be a lightning bolt there you can click on to see events, otherwise just create your event handler method and add "Handles Me.SomeEvent" on the end of the method definition.</p>