![]() |
Identify Controls in VB Using TypeOf
Often in your code procedures, you may need to determine what typeof control your code has accessed. For instance, you may want to alter the text on every command button on a form. Or you may want to change the properties for several different controls. In such instances, you have several ways to test for a control type. The most efficient and fastest method is the TypeOf operator.
Unlike other methods of determining a control's type, such as theTypeName property, the TypeOf keyword doesn't need several roundtrips to the Registry to obtain the information it needs. As a result, it reduces the processing drag necessary for your code. This keyword must appear in an If...Then statement, like so: Code: VB
Code: VB
|
| All times are GMT +5.5. The time now is 16:25. |