r2C9F‖

ZPfhh‖FindObject Function

aFznu‖Enables an object to be addressed at run-time as a string parameter through the object name.

AwGGE‖For example, the following command:


MyObj.Prop1.Command = 5

kpkYS‖corresponds to the command block:


Dim ObjVar as Object
Dim ObjProp as Object
ObjName As String = "MyObj"
ObjVar = FindObject( ObjName As String )
PropName As String = "Prop1"
ObjProp = FindPropertyObject( ObjVar, PropName As String )
ObjProp.Command = 5

PsuoC‖This allows names to be dynamically created at run-time. For example:

4ZJCt‖"TextEdit1" to "TextEdit5" in a loop to create five control names.

Eb7mA‖See also: FindPropertyObject

9UEzR‖Syntax:


FindObject( ObjName As String )

jEKpx‖Parameters:

fAtEE‖ObjName: String that specifies the name of the object that you want to address at run-time.

SEjHR‖Error codes:

5 Invalid procedure call

12 Variable not defined