ISDBUICommon::ChildControl: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
 
Line 8: Line 8:
===Property description===
===Property description===


This property can easily localize a control by its name.
This property can be used to get an object that has previously been named using the ControlName property.


===Example code===                     
===Example code===                     

Latest revision as of 22:28, 9 October 2012

CoClass SDBUICommon, Interface ISDBUICommon

Property Get ChildControl(ControlName As String) As Object


Parameters

Name Type Description
ControlName String Name of the control to be found


Property description

This property can be used to get an object that has previously been named using the ControlName property.

Example code

Set Btn = Form.Common.ChildControl( "Button1")   ' Finds a button named 'Button1'

Related Topics