From this question I found out how to ask the user for an input using wxPython. But how can I ask for multiple information at the same time?
Basicly I want to create a message box with three input fields under each other asking for "Name" "Surname" "Nickname". I also want to have the code really simple like:
name,surname,nick = askInfo("Name","Surname","Nickname")
It doesn't have to be wxPython but it MUST not be using Tkinter.
Build a
wx.Dialog
there are numerous examples out there.Pay special attention to the
result
items