How do I expose a click event?
In VB.NET, how do I get events and such exposed to me? For example: the click event of a combobox isn't exposed. I'm having to create a clicked event instead.

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

The way events are exposed is a little different than it was in Visual Basic 6. After you've added the combobox to your form, switch to the form's code either by right clicking on the form itself or the file in Solution Explorer and selecting View Code from the popup menu.

At the top of the code window are two drop down list boxes. In the left hand box, scroll down until you see ComboBox1 (or whatever you named the combobox control you placed on the form). The right hand combobox at the top of the code window is a list of all the events supported by your combobox. Select the appropriate event and a handler will automatically be added.

This was first published in November 2003