2

I need to refresh the value in the combobox after an event from other tool in the same add-in (ARCGIS 10.1. Python).

I've changed the value of the combobox with the code:

combobox.value = val

and I want to show it in the combobox but I can't refresh this combobox after give a value in other tool.

PolyGeo
65.5k29 gold badges115 silver badges349 bronze badges
asked Mar 5, 2013 at 8:09

1 Answer 1

4

As documented in the help, use the .refresh() method:

combobox.value = val
combobox.refresh()
answered Mar 5, 2013 at 8:34
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.