Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dev Environment question

Status
Not open for further replies.

Westond

Programmer
Jan 19, 2005
43
US
In VB you can select a dropdown the top left then the one on the right will display all the available event handlers for that object. I really like C# syntax but those dropdowns at the top are almost useless in c#?.. Is there a way to get the same functionality there as you get in vb? How do you get around this? Don't tell me you have ALL possible functions memorized....

Thanks
 
In C# they are available from the PropertyGrid.

Change the PropertyGrid tab to show Events (click on the icon that looks like a lightning symbol). Select a control on your form and all the available events are displayed. Double click the required event and the code page opens at the declaration for that event.

VB is so much better - and in 2005 we have both the standard method and the PropertyGrid method [wink].


Hope this helps.

[vampire][bat]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top