Wish Generate Members for Objects

Bryanne Vega

Member
Licensed User
Longtime User
Simple as the subject.

When I right click OkHttp object be able to generate it's members (eg: okhttpclientobject_ResponseSuccess()) etc.

This would make the visual "basic" more basic, and more entry level friendly.

You've done it with the designer, why not in code?

@Erel
 

Roycefer

Well-Known Member
Licensed User
Longtime User
In the IDE, type in "Sub" and then a space and then the TAB key and you will see a list of objects available to you. Select one of the objects and you will see a list of event Subs that you can have IDE auto-fill for you. (I presume you meant event subs, not members, based on your example.)

In fact, you should be seeing a little tooltip-type pop-up whenever you type "Sub " (with the space) prompting you to press TAB for event declarations.
 
Top