messagebox - Simple python message box yet customizable on windows? -
i need create simple message box on windows in python, , message box should customizable including updating messages/adding(removing) buttons etc.. in order generate small-sized standalone executable in end, not want use big libraries such wxpython. after bit of searching, looks start:
import ctypes messagebox = ctypes.windll.user32.messageboxa messagebox(none, 'hello', 'window title', 0)
but seems cannot make buttons disappear in kind of message boxes, , not able update messages well.
so choices have?
the pymsgbox module this: https://pymsgbox.readthedocs.io/en/latest/
Comments
Post a Comment