Python Forum
[Tkinter] How to add an argument to a buttons command call
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] How to add an argument to a buttons command call
#2
To add arguments to a function called as a command you can use partial from functools
from functools import partial

	
self.button5 = Button(middleframe6, text="Configure RVM", command=partial(self.ReceiptFormat, "text"), relief=RAISED
Reply


Messages In This Thread
RE: Calling methode with argument - by Yoriz - May-10-2019, 09:36 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Button 'command' Argument Confusion gw1500se 11 6,033 Nov-11-2021, 08:45 PM
Last Post: menator01
  Syntax Error: Positional argument follows keyword argument Rama02 3 4,165 Feb-09-2021, 06:10 PM
Last Post: deanhystad
  Creating a frame with 4 command buttons Heyjoe 5 2,522 Aug-21-2020, 03:16 PM
Last Post: deanhystad
  [Tkinter] Command button, then more command buttons Heyjoe 4 2,965 Aug-08-2020, 11:28 AM
Last Post: Yoriz
  [Tkinter] Creation of Buttons with Shared Command Inside Class MulliganAgain 1 1,740 Jul-08-2020, 06:22 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

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