Tkinter progress bar works on Linux but not on Windows

I wrote the following basic code sample that creates a main window with a button. When the button is pressed a second window with a progress bar should appear and stay open until the progress is complete. This works fine on Linux but on Windows the second window appears blank with no progress bar. Given that this will be part of an application that runs on Windows. What should I do? Is this a bug or what’s going on?

I’m using python 3.12.5 on both Linux and Windows 11 (build 22631).

The code

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import tkinter.ttk as ttk
import tkinter as tk
import time
def cpw():
tasks = 5
increment = 100 / tasks
pw = tk.Toplevel()
pw.title("Progress Window")
pw.geometry("300x135")
pb = ttk.Progressbar(
pw,
name="pb",
orient=tk.HORIZONTAL,
length=200,
mode="determinate",
)
pb.pack()
i = 0
while i < tasks:
i += 1
pb["value"] += increment
pb.update_idletasks()
time.sleep(1)
pw.destroy()
root = tk.Tk()
root.title("Example")
root.geometry("150x100")
tk.Button(root, text="Process", command=cpw).pack()
root.mainloop()
</code>
<code>import tkinter.ttk as ttk import tkinter as tk import time def cpw(): tasks = 5 increment = 100 / tasks pw = tk.Toplevel() pw.title("Progress Window") pw.geometry("300x135") pb = ttk.Progressbar( pw, name="pb", orient=tk.HORIZONTAL, length=200, mode="determinate", ) pb.pack() i = 0 while i < tasks: i += 1 pb["value"] += increment pb.update_idletasks() time.sleep(1) pw.destroy() root = tk.Tk() root.title("Example") root.geometry("150x100") tk.Button(root, text="Process", command=cpw).pack() root.mainloop() </code>
import tkinter.ttk as ttk
import tkinter as tk
import time


def cpw():
    tasks = 5
    increment = 100 / tasks

    pw = tk.Toplevel()
    pw.title("Progress Window")
    pw.geometry("300x135")
    pb = ttk.Progressbar(
        pw,
        name="pb",
        orient=tk.HORIZONTAL,
        length=200,
        mode="determinate",
    )
    pb.pack()

    i = 0
    while i < tasks:
        i += 1
        pb["value"] += increment
        pb.update_idletasks()
        time.sleep(1)

    pw.destroy()


root = tk.Tk()
root.title("Example")
root.geometry("150x100")

tk.Button(root, text="Process", command=cpw).pack()

root.mainloop()

6

Thanks to @acw1668 who pointed out in the comments that .update_idletasks() may not handle pending creation of widgets. Adding pb.update() or also pb.wait_visibility(pw) before pb.pack() will ensure the creation and visibility of the progress window and bar.

Documentation here

As stated in comments, your use of the time module in tkinter is causing the problem.
Implementing tkinter after requires a different approach to your time delay method.

Replace

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> i = 0
while i < tasks:
i += 1
pb["value"] += increment
pb.update_idletasks()
time.sleep(1)
pw.destroy()
</code>
<code> i = 0 while i < tasks: i += 1 pb["value"] += increment pb.update_idletasks() time.sleep(1) pw.destroy() </code>
    i = 0
    while i < tasks:
        i += 1
        pb["value"] += increment
        pb.update_idletasks()
        time.sleep(1)

    pw.destroy()

with this code snippet.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> def looper(i):
if i < tasks:
pb["value"] += increment
pw.after(1000, looper, i+1)
else:
pw.destroy()
pw.after(1000, looper, 0)
</code>
<code> def looper(i): if i < tasks: pb["value"] += increment pw.after(1000, looper, i+1) else: pw.destroy() pw.after(1000, looper, 0) </code>
    def looper(i):
        if i < tasks:
            pb["value"] += increment
            pw.after(1000, looper, i+1)
        else:
            pw.destroy()

    pw.after(1000, looper, 0)

1

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật