cypher543 skrev:
> I have a TreeView and a ToolButton. The ToolButton should only be
> active if the user has selected an item in the TreeView. What signal
> should I use to achieve this?
> 
> Thanks,
> David
> 
Hey

I use the "curselection()" function.

Example:
id = self.listbox.curselection()
id = id[0]
rf = self.listbox.get(id)
print id

It is on a listbox, but a think you also can use it on TreeViews.

Hope it helped! :)

-- 
   _________            .__        __                  ______________
  /   _____/ ___________|__|______/  |_  ___________  /  |  \______  \
  \_____  \_/ ___\_  __ \  \____ \   __\/ __ \_  __ \/   |  |_  /    /
  /        \  \___|  | \/  |  |_> >  | \  ___/|  | \/    ^   / /    /
/_______  /\___  >__|  |__|   __/|__|  \___  >__|  \____   | /____/
         \/     \/         |__|             \/           |__|

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to