Jump to content

Recommended Posts

Posted

Is it possbile with IE.au3 T2 to use _IEFormElementGetValue() to get all value avalaible on a dropdown list?

Or maybe there is another command that can do that??

Thanks!

  • Moderators
Posted

Is it possbile with IE.au3 T2 to use _IEFormElementGetValue() to get all value avalaible on a dropdown list?

Or maybe there is another command that can do that??

Thanks!

; $oSelect needs to reference the select option box
$oItems = $oSelect.options
$sText = ""
For $oItem In $oItems
    $sText &= $oItem.text & @LF
Next
MsgBox(0, "", $sText)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...