Re: Standard Yes / No Windows Dialog box creation

2006-06-21 Thread Kent Johnson
[EMAIL PROTECTED] wrote: 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? Maybe you would like EasyGui http://www.ferg.org/easygui/ Kent --

Re: Standard Yes / No Windows Dialog box creation

2006-06-18 Thread flaus . a
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 Python

Re: Standard Yes / No Windows Dialog box creation

2006-06-18 Thread flaus . a
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

Standard Yes / No Windows Dialog box creation

2006-06-17 Thread flaus . a
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

Re: Standard Yes / No Windows Dialog box creation

2006-06-17 Thread Claudio Grondi
[EMAIL PROTECTED] wrote: 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? Do it just the same way as you did it with the Open File or Open Folder windows dialog. What is your

Re: Standard Yes / No Windows Dialog box creation

2006-06-17 Thread SuperHik
Claudio Grondi wrote: [EMAIL PROTECTED] wrote: 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? I've never seen easier way to do it, but my solution for you if you want to create a

Re: Standard Yes / No Windows Dialog box creation

2006-06-17 Thread Ravi Teja
[EMAIL PROTECTED] wrote: 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? Assuming you are on MS Windows. import win32api, win32con win32api.MessageBox(0, Question, Title,