amokoura Posted May 15, 2007 Posted May 15, 2007 How can I get the type of a form element object? (text, radio, etc..) I'm using the IE UDF but couldn't find any suitable function for this kind of need.
GMK Posted May 15, 2007 Posted May 15, 2007 Try this example: #include <IE.au3> $oIE = _IE_Example ("form") $oForm = _IEFormGetCollection ($oIE, 0) $oElements = _IEFormElementGetCollection ($oForm) For $oElement In $oElements MsgBox(0, "Form Element Type", "Type: " & $oElement.type) Next PoojaKrishna 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now