I found the win32ui.CreateFileDialog() function to select a file but
nothing to select a folder :'-(
Maybe someone has a solution for this?
Thanks!
--
http://mail.python.org/mailman/listinfo/python-list
Thanks for your answer, it's working fine!
For information, the function to use to get the pathName is
shell.SHGetPathFromIDList
It returns an error if you select a special folder (!?!?) but otherwise
it's working fine... And I was unable to fix this issue.
--
http://mail.python.org/mailman/list
I found a way to create "Open File" or "Open Folder" windows dialog
boxes, but not to create an easier Yes / No dialog box...
Maybe someone has a solution for this?
--
http://mail.python.org/mailman/listinfo/python-list
SuperHik a écrit :
> I've never seen "easier" way to do it, but my solution for you if you
> want to create a GUI application without learning any GUI programming
> would be to consider Glade, wxGlade and such...
Yes I wanted something easy because it's the first time that I use a
Gui into Pytho
Ravi Teja a écrit :
>
> Assuming you are on MS Windows.
> import win32api, win32con
> win32api.MessageBox(0, "Question", "Title", win32con.MB_YESNO)
Yes, that's exactly what I was looking for! Thanks!!
--
http://mail.python.org/mailman/listinfo/python-list