well anyway, the _IEPropertget function has a visible paramaeter. now heres the issue, it only seems to work for form ids. i need it to work with _IEFormElementGetCollection
im not sure exactly how to explain this but heres my code:
$sForm = _IEFormGetOBJByName($object, 'main_form') $collection = _IEFormElementGetCollection($sForm) For $i = 1 To @extended $select = _IEFormElementGetCollection($sForm, $i) If _IEPropertyGet($select, "visible") Then _select($sForm, $i) EndIf Next
anyone can help me?