Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Step by Step Installation GUI
Post: Step by Step Installation GUI

Hello, please how can I create a step by step installation GUI in tkinter. Just like you want to install a software and you have to be clicking next button in order to install. Until the software fina...
Vicolas GUI 1 2,178 Mar-30-2019, 07:26 PM
    Thread: Toggling the Check button
Post: RE: Toggling the Check button

(Mar-07-2019, 06:10 PM)Vicolas Wrote: (Mar-03-2019, 11:13 PM)joe_momma Wrote: You're really close- I made some changes to your callback: def wrap_text(self): self.use = self.wrap.get() if self.us...
Vicolas GUI 4 4,062 Mar-16-2019, 07:01 AM
    Thread: Toggling the Check button
Post: RE: Toggling the Check button

(Mar-03-2019, 11:13 PM)joe_momma Wrote: You're really close- I made some changes to your callback: def wrap_text(self): self.use = self.wrap.get() if self.use: self.text.config(wrap=WORD) self.wrap...
Vicolas GUI 4 4,062 Mar-07-2019, 06:10 PM
    Thread: Toggling the Check button
Post: Toggling the Check button

Please, how can I wrap and unwrap the 'wrap' attribute of the Text Widget by toggle with the check button (Word Wrap) in the sub-menu of my Menu Widget. Once it's checked the xscrolledbar (horizontal)...
Vicolas GUI 4 4,062 Mar-02-2019, 01:10 PM
    Thread: Select All text without space on the righthand side
Post: Select All text without space on the righthand sid...

Hello, please how can I select all the text in Text Wigdet just like that on Microsoft windows Notepad without including unnecessarily space on the right hand side for each line in the widget. Sorry...
Vicolas GUI 1 2,488 Feb-28-2019, 06:17 PM
    Thread: Adding New TAB to NoteBook Widget by Clicking
Post: Adding New TAB to NoteBook Widget by Clicking

from tkinter import * from tkinter import ttk class Notebook: def __init__(self): self.root = Tk() self.root.title('Note Book') self.build_Menu() self.build_NoteBo...
Vicolas GUI 0 2,583 Feb-15-2019, 06:03 PM
    Thread: Getting the Respective Value
Post: RE: Getting the Respective Value

(Feb-14-2019, 10:15 PM)woooee Wrote: Quote:Sorry this does not solve my question. Sorry, this does not say what you want that is different.Sorry Sir, your code did worked. At first I thought it was...
Vicolas GUI 4 2,359 Feb-15-2019, 05:53 PM
    Thread: Getting the Respective Value
Post: RE: Getting the Respective Value

(Feb-13-2019, 05:55 PM)woooee Wrote: Under the enter() function, print the field you name as event, as it should contain the item selected, which should also be the key for the self.messages diction...
Vicolas GUI 4 2,359 Feb-14-2019, 02:57 PM
    Thread: Getting the Respective Value
Post: Getting the Respective Value

from tkinter import * import Pmw class Message: def __init__(self): self.root = Tk() self.build_Message() self.root.mainloop() def build_Message(self): self.e...
Vicolas GUI 4 2,359 Feb-13-2019, 12:41 PM
    Thread: tkinter.ttk Tutorials
Post: RE: tkinter.ttk Tutorials

(Feb-08-2019, 12:37 PM)Larz60+ Wrote: documented here: https://docs.python.org/3/library/tkinter.ttk.html and here: http://infohost.nmt.edu/tcc/help/pubs/tk...b/ttk.html tkinter general tutorial (no...
Vicolas GUI 2 3,018 Feb-08-2019, 10:58 PM
    Thread: tkinter.ttk Tutorials
Post: tkinter.ttk Tutorials

Hi, Please can anyone help me tkinter ttk essential tutorials or maybe tell me where to get one. Have Google and search but couldn't get anything useful for a beginner like me. I would really be happy...
Vicolas GUI 2 3,018 Feb-07-2019, 11:15 PM
    Thread: Displaying ComboBoxDialog Widget in a Class
Post: RE: Displaying ComboBoxDialog Widget in a Class

(Feb-02-2019, 02:28 AM)Larz60+ Wrote: from tkinter import * import Pmw class Combobox: def __init__(self): self.root = Tk() self.root.title('ComboBoxDialog') # self.root.withdraw() self.listed = ['...
Vicolas GUI 3 2,830 Feb-03-2019, 02:23 PM
    Thread: Displaying ComboBoxDialog Widget in a Class
Post: Displaying ComboBoxDialog Widget in a Class

from tkinter import * import Pmw class Combobox: def __init__(self): self.root = Tk() self.root.title('ComboBoxDialog') self.listed = ['Toyota','Honda','Mercerdise Benz','...
Vicolas GUI 3 2,830 Feb-02-2019, 12:22 AM
    Thread: Clicking a RadioButton in a for Loop & Getting the Appropriate Return
Post: Clicking a RadioButton in a for Loop & Getting the...

from tkinter import * root = Tk() root.title('Register') def status(): word = varr.get() gender = var.get() if gender == 1: text.insert(END,f'Hi Mr {word}\nHow are you doing today...
Vicolas GUI 1 5,103 Feb-02-2019, 12:08 AM
    Thread: How to get & delete details from each input by clicking a button
Post: RE: How to get & delete details from each input by...

(Jan-31-2019, 09:55 PM)Larz60+ Wrote: Quote:Wow thanks for the codes but how can I click on the 'Cancel' button and get to clear each and every information in the Entry Field. Thanks. That's simple...
Vicolas GUI 6 3,782 Feb-01-2019, 11:00 AM
    Thread: How to get & delete details from each input by clicking a button
Post: RE: How to get & delete details from each input by...

(Jan-30-2019, 11:15 PM)Larz60+ Wrote: Quote:I posted I'll play with this a bit. ** Note ** Following code uses f-string which requires python 3.6 or newer Here's how I would do it, tested and works...
Vicolas GUI 6 3,782 Jan-31-2019, 06:33 PM
    Thread: How to get & delete details from each input by clicking a button
Post: RE: How to get & delete details from each input by...

(Jan-30-2019, 08:54 PM)Larz60+ Wrote: You have some issues with your code. you create 6 entry fields, but assign the text entered of each to the same entry field. They are all assigned to the same v...
Vicolas GUI 6 3,782 Jan-30-2019, 09:28 PM
    Thread: How to get & delete details from each input by clicking a button
Post: How to get & delete details from each input by cli...

from tkinter import * import Pmw root = Tk() root.title('EntryField') var = StringVar() for i in ['First Name:','Surname','Sex:','Age:','Phone Number:','Email Address:']: entryfield = Pmw.EntryFie...
Vicolas GUI 6 3,782 Jan-30-2019, 08:28 PM
    Thread: How to Install Pmw
Post: How to Install Pmw

Please how can I install Python Mega Widget(PWM), Tix and any Packages associated with tkinter in Python 3. Because tkinter has limited widgets. Thanks.
Vicolas GUI 2 5,438 Jan-24-2019, 02:04 PM
    Thread: Best GUI toolkit to learn
Post: Best GUI toolkit to learn

Hi, please what is the best Python GUI toolkit to learn and why? Thanks.
Vicolas GUI 4 3,192 Jan-24-2019, 01:45 PM

User Panel Messages

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