Python Forum
[Tkinter] Getting Input from Tkinter Entry
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Getting Input from Tkinter Entry
#3
(Jul-16-2018, 09:06 AM)Larz60+ Wrote: You are trying (adjusted code, line 5 for example) to get amount before it exists.
move the definitions for the entry textvariables (lines 20, 21, 22) before you try to access.
You must also set the values to something valid before access, example:
amount = StringVar()
amount.set('0')
I used this code for another project and it worked without setting the values, like "amount.set('0')
Reply


Messages In This Thread
Getting Input from Tkinter Entry - by juliabrushett - Jul-16-2018, 05:35 AM
RE: Getting Input from Tkinter Entry - by Larz60+ - Jul-16-2018, 09:06 AM
RE: Getting Input from Tkinter Entry - by reblark - Feb-12-2020, 11:33 PM
RE: Getting Input from Tkinter Entry - by Larz60+ - Feb-12-2020, 11:39 PM
RE: Getting Input from Tkinter Entry - by reblark - Feb-13-2020, 12:12 AM
RE: Getting Input from Tkinter Entry - by reblark - May-29-2020, 11:56 PM
RE: Getting Input from Tkinter Entry - by Larz60+ - May-30-2020, 03:29 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Making entry global in tkinter with multiprocessing luckyingermany 2 2,345 Jan-21-2022, 03:46 PM
Last Post: deanhystad
  Tkinter Exit Code based on Entry Widget Nu2Python 6 3,021 Oct-21-2021, 03:01 PM
Last Post: Nu2Python
  [Tkinter] Update variable using tkinter entry methon drSlump 6 5,251 Oct-15-2021, 08:01 AM
Last Post: drSlump
  Tkinter | entry output. Sap2ch 1 2,017 Sep-25-2021, 12:38 AM
Last Post: Yoriz
  .get() from generated Entry widgets in tkinter snakes 4 4,262 May-03-2021, 11:26 PM
Last Post: snakes
  Entry Validation in tkinter shahulvk 4 16,450 Oct-28-2020, 10:12 PM
Last Post: joe_momma
  Convert combobox user input in to date with tkinter Ame 8 6,803 Jul-01-2020, 09:40 PM
Last Post: Yoriz
  Converting Entry field value to integer in tkinter scratchmyhead 2 4,985 May-11-2020, 03:41 PM
Last Post: scratchmyhead
  [Tkinter] Tkinter adding entry values scratchmyhead 1 2,219 May-04-2020, 05:21 AM
Last Post: Yoriz
  [Tkinter] Entry box not showing 2 decimal places Chuck_Norwich 3 5,750 Apr-24-2020, 05:28 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020