2
I am currently migrating a system to python and it has a window that opens making the progress bar.
In my migration I used the tqdm
to generate a progress bar on the system, but in another part of the code I used ctypes as in the example below:
verify = ctypes.windll.user32.MessageBoxW(0, text, title, 4)
I wonder if I can also use ctypes to call the Windows progress bar (or something similar) in python, since I already use it for other purposes.