How do I see what events are available?

  • Thread starter Thread starter vbMark
  • Start date Start date
V

vbMark

Where can I find a list of events? I want to do something when the person
clicks the down arrow. How do I go about this?

I'm using Visual Basic .NET

Thanks!!
 
Go to http://msdn.microsoft.com/ and search for "<control you want to use>
members". The first hit *should* give you the list of events. The "KeyPress"
is one way to check for a down arrow click.
 
vbMark said:
Where can I find a list of events? I want to do something when the person
clicks the down arrow. How do I go about this?

Select to view the code behind the form. At the top of the code window you
find two dropdown lists. In the left select (Form1 Events). In the right
list you will find all available events. The same goes for fx. a dropdown
list dragged to the form.
 
FYI, that combo does not filter properly the events for the CF

Cheers
Daniel
 
Select to view the code behind the form. At the top of the code window
you find two dropdown lists. In the left select (Form1 Events). In the
right list you will find all available events. The same goes for fx. a
dropdown list dragged to the form.

Thank you very much!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top