Python input box inside a message box
问题 is there any way to have an input box inside of an message box opened with the ctypes library? so far I have: import ctypes messageBox = ctypes.windll.user32.MessageBoxA title = 'Title' text = 'Message box!' returnValue = messageBox(None, text, title, 0x40 | 0x1) print returnValue and this gives a message box with an image icon and two buttons, both of which I know how to change, and it sets a variable "returnValue" to a number representing the button clicked. However, I also need a variable