Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For the next guy who comes along, here's what finally worked for
me...ron for the radio button selection... Set rad_button = ie.document.all.Item("std_trans") For Each rb In rad_button If rb.Value = "translated" Then rb.Checked = False End If If rb.Value = "standard" Then rb.Checked = True End If Next for the checkboxes... check_METARs = ie.document.all.Item("chk_metars").Checked If check_METARs = True Then Else: ie.document.all.Item("chk_metars").Click End If check_TAFs = ie.document.all.Item("chk_tafs").Checked If check_TAFs = False Then Else: ie.document.all.Item("chk_tafs").Click End If |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Select Cell on Same Row as Checkbox | Excel Programming | |||
Checkbox to select image | Excel Programming | |||
Cannot select checkbox to delete it from a spreadsheet | Excel Discussion (Misc queries) | |||
How can I select one checkbox and have it unselect other ones? | Excel Worksheet Functions | |||
Select checkbox with tab key? | Excel Programming |