|
Previous Top Next |
Prototype: | (Long pFEQ),String |
pFEQ | The Field EQuate label of a control to get the name for. |
Returns | Returns a string containing the label of the control. |
This method uses an undocumented function in the Clarion Runtime Library that returns the label of a control, for example '?String1' or '?MYF:Field1' as a string rather than a numeric value.
Example:
ITW ITWindowsClass
Code
LoadControlQ ROUTINE
Data
I Long
Code
Loop I = FirstField() To LastField()
Loc:CQ.Loc:CQName = ITW.GetControlName(I)
Loc:CQ.Loc:CQBaseName = ITW.GetBaseControlName(I)
Add(Loc:CQ)
End
See also: