How To Add Ynbox And Messagebox In Same Window Using Easygui
I run following code : import easygui easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No')) easygui.msgbox('This is a basic message box.', 'Title Goes Here'); but i get diffe
Solution 1:
Just do single ynbox
:
import easygui
easygui.ynbox('Question', 'Title', ('Yes', 'No'))
Or do buttonbox
:
import os
easygui.buttonbox('Message', 'Title', choices=(['Button[1]', 'Button[2]' , 'Button[3]']))
Post a Comment for "How To Add Ynbox And Messagebox In Same Window Using Easygui"