looking for a way to loop through a Form.ControlCollection in visual cobol. Any solutions?
set netInt to type System.Windows.Forms.Control+ControlCollection::Count.
set gridViewIndex to 0.
perform until gridViewIndex = netInt
if controlList[gridViewIndex]::GetType = type TextBox
set type System.Windows.Forms.Form+ControlCollection.Item[gridViewIndex]::ReadOnly to false
add 1 to gridViewIndex
end-perform.
compiler errors are:
ControlCollection has no visible static member Count
type TextBox invalid operand
gridViewItem is invalid operand