where can I find a list of all contol properties/methods. They do not populate during programming.
i.e.,
ctl.name
ctl.caption
ctl.value
:sick:
Printable View
where can I find a list of all contol properties/methods. They do not populate during programming.
i.e.,
ctl.name
ctl.caption
ctl.value
:sick:
The intellisense menu comes up only for early binding, not late binding. So declare your variables correctly.
e.g.
Dim ctl ------> If you declare it like this, intellisense menu won't work with this.
Dim ctl as TextBox ----> If you declare it like this, you will get the intellisense menu as soon as you type ctl. (the dot).