How do I get past the default setting of 1, so I can group a bunch of check boxes right next to each other?
Code:
import Tkinter
root = Tkinter.Tk()
for r in range(4):
for c in range(6):
Tkinter.Checkbutton(root,borderwidth=0).grid(row=r,column=c)
root.mainloop()
Comment