2018-07-13 14:53:50 +00:00
|
|
|
import PySimpleGUI as sg
|
|
|
|
|
2018-07-16 18:52:16 +00:00
|
|
|
sg.MsgBox('Title', 'My first message... Is the length the same?')
|
2018-07-13 14:53:50 +00:00
|
|
|
rc, number = sg.GetTextBox('Title goes here', 'Enter a number')
|
|
|
|
if not rc:
|
|
|
|
sg.MsgBoxError('You have cancelled')
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
msg = '\n'.join([f'{i}' for i in range(0,int(number))])
|
|
|
|
|
2018-07-16 18:52:16 +00:00
|
|
|
sg.ScrolledTextBox(msg, height=10)
|