How to generated member via coding?

Theera

Well-Known Member
Licensed User
Longtime User
Hi all,
If I created the widget via visual designer,I could use the menu "generated members" ,the example I need to created a txtbox as EditText via visual designer ,I could generated the sub module this bellows
Sub txtbox_TextChanged

End sub
,but I created the txtbox via coding,I couldn't remember the members which are "_TextChanged","_FocusChanged","_EnterPressed" if I don't read Klaus'Guide.
 
Last edited:

stevel05

Expert
Licensed User
Longtime User
In the IDE Type Sub, then press Space Then TAB. you will be presented with a list of objects for which Methods are available. Select one and press Return, a list of available methods for that object is presented.

Select one and Press return, you can then type the name that you have given the object and an End Sub is automatically added.
 
Upvote 0
Top