Listbox In Python
- From: Harmony Neil <harmony.neil@xxxxxxxxx>
- To: programmingblind@xxxxxxxxxxxxx
- Date: Sat, 16 Jul 2011 15:49:37 +0100
I've made a listbox which it is possible to get to using the mouse, or route jaws to pc cursor, but I can't get to it just using the normal cursor. When I arrow up and down it just doesn't do anything. I know the only thing I have in the window right now is the listbox, but still ... Can anyone make any suggestions as to how to improve the attached file? Thanks, Harmony.
from Tkinter import * import tkMessageBox import Tkinter top = Tk() Lb1 = Listbox(relief=RAISED) Lb1.insert(1, "Python") Lb1.insert(2, "C") Lb1.insert(3, "PHP") Lb1.insert(4, "HTML") Lb1.insert(5, "Ruby") Lb1.insert(6, "C++") Lb1.pack() top.mainloop()
- Follow-Ups:
- Re: Listbox In Python
- From: Littlefield, Tyler
- Re: Listbox In Python
- From: Mike
- Re: Listbox In Python
Other related posts:
- » Listbox In Python - Harmony Neil
- » Re: Listbox In Python - Littlefield, Tyler
- » Re: Listbox In Python - Harmony Neil
- » Re: Listbox In Python - Littlefield, Tyler
- » Re: Listbox In Python - Alex Hall
- » Re: Listbox In Python - Mike
- » Re: Listbox In Python - Alex Hall
- » Re: Listbox In Python - Mike
- » Re: Listbox In Python - Alex Hall
- » Re: Listbox In Python - Mike
- » RE: Listbox In Python - Ken Perry
- » Re: Listbox In Python - Mike
- » RE: Listbox In Python - Ken Perry
- » RE: Listbox In Python - Ken Perry
- » Re: Listbox In Python - Mike
- » RE: Listbox In Python - Ken Perry
- » RE: Listbox In Python - Homme, James
- » RE: Listbox In Python - Homme, James
- » RE: Listbox In Python - Trouble
- » RE: Listbox In Python - Ken Perry
- » Re: Listbox In Python - Littlefield, Tyler
- » RE: Listbox In Python - Ken Perry
- » RE: Listbox In Python - Homme, James
- » RE: Listbox In Python - Ken Perry
- » Re: Listbox In Python - Mike
- » Re: Listbox In Python - David Tseng
- » RE: Listbox In Python - Homme, James