Visual Basic add event in .NET 1.1 - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:23:09Zhttp://stackoverflow.com/feeds/question/786827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/786827/visual-basic-add-event-in-net-1-11Visual Basic add event in .NET 1.1Tony Smith2009-04-24T17:23:36Z2009-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#7868751Answer by Jeremy for Visual Basic add event in .NET 1.1Jeremy2009-04-24T17:38:25Z2009-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#7868820Answer by Max Schmeling for Visual Basic add event in .NET 1.1Max Schmeling2009-04-24T17:40:05Z2009-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>