ISDBUIForm::ActiveControl: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
mNo edit summary
Line 4: Line 4:


Sets focus to a control of the parent form.  
Sets focus to a control of the parent form.  
Control is represented by its name.
The control is represented by its ControlName.


Gets name of focused control.
Gets ControlName of focused control.




Line 12: Line 12:
Examples:
Examples:


MyForm.ActiveControl = "MyEditBoxName"
MyForm.ActiveControl = "MyEditBoxControlName"


MyForm.ActiveControl = MyEditBox.Common.ControlName
MyForm.ActiveControl = MyEditBox.Common.ControlName
Introduced in MediaMonkey 3.1.2.1289


[[Category:Scripting|{{PAGENAME}}]]
[[Category:Scripting|{{PAGENAME}}]]

Revision as of 19:55, 10 November 2009

CoClass SDBUIForm, Interface ISDBUIForm

Property Get/Let ActiveControl As String


Property description

Sets focus to a control of the parent form. The control is represented by its ControlName.

Gets ControlName of focused control.


Examples:

MyForm.ActiveControl = "MyEditBoxControlName"

MyForm.ActiveControl = MyEditBox.Common.ControlName


Introduced in MediaMonkey 3.1.2.1289