Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #106301 > unrolled thread
| Started by | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| First post | 2016-04-02 14:45 -0400 |
| Last post | 2016-04-02 14:45 -0400 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: tkinter Entry validation modes Terry Reedy <tjreedy@udel.edu> - 2016-04-02 14:45 -0400
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2016-04-02 14:45 -0400 |
| Subject | Re: tkinter Entry validation modes |
| Message-ID | <mailman.370.1459622753.28225.python-list@python.org> |
On 4/2/2016 11:11 AM, Mark Lawrence via Python-list wrote: > A typical call to create an Entry field would be:- > > e = Entry(master, validate='all', ...) > > Once this call has been made is it possible to change the validation > mode at runtime? AFAIK, every keyword-only configuration option can be changed. e['validate'] = xyz e.config(validate=xyz) -- Terry Jan Reedy
Back to top | Article view | comp.lang.python
csiph-web