PDA

Click to See Complete Forum and Search --> : [RESOLVED] contol Question


swoozie
Jun 2nd, 2006, 12:39 PM
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:

Pradeep1210
Jun 2nd, 2006, 12:45 PM
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).