Python Forum
closing a "nested" window with a button in PySimpleGUI and repeating this process
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
closing a "nested" window with a button in PySimpleGUI and repeating this process
#7
I didn't answer the last question.
When you update a Text element you replace the text in it. If you want to add text you will have to supply the original text + the addition:
    rc = reverseComplement(seq)
    window['-OUTPUT-'].update('Reverse complement: ' + rc)
but then you also need to expand it's size. Another option is of course to use the text as a label and add another text as output:
layout = [[sg.Text('Reverse complement:', size=(19,1)), sg.Text('',size=(15,1), key='-OUTPUT-')],
          [sg.Input(key='-IN-')],
          [sg.Button('Convert'), sg.Button('Exit'), sg.Button('Help')]]
I also want to add that I neither meant to be patronizing in my previous answer (it does look like it), nor did I mean to boast. In the mentioned multimillion line applications I contributed but did of course not write all of it. My latest project was with PySimpleGUI and just 1000 lines of code but had I used another GUI framework it would have been several times that. What I appreciate in PySimpleGui is the simplicity. You get a lot of GUI with very few lines of code.
Reply


Messages In This Thread
RE: closing a "nested" window with a button in PySimpleGUI and repeating this process - by Serafim - Jan-10-2021, 10:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 745 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  [PyQt] PyQt5 window closing when trying to display a graph bianca 4 1,841 Aug-12-2023, 03:25 PM
Last Post: bianca
Exclamation [Tkinter] Error when closing the main window with destroy TomasSanchexx 1 874 Aug-06-2023, 01:54 AM
Last Post: deanhystad
  Centering and adding a push button to a grid window, TKinter Edward_ 15 5,468 May-25-2023, 07:37 PM
Last Post: deanhystad
  PysimpleGUI window update dynamically SamLiu 6 4,178 Apr-05-2023, 02:32 PM
Last Post: SamLiu
  [Tkinter] Clicking on the button crashes the TK window ODOshmockenberg 1 2,303 Mar-10-2022, 05:18 PM
Last Post: deanhystad
  PySimpleGUI Try Except jamesaarr 1 2,001 Nov-18-2021, 02:02 PM
Last Post: jamesaarr
  .get() invoke after a button nested press iddon5 5 3,386 Mar-29-2021, 03:55 AM
Last Post: deanhystad
  [PyQt] Received RunTimeError after script concludes, closing Dialog Window (clicking x-out) skipper0802 0 2,610 Oct-09-2020, 09:23 PM
Last Post: skipper0802
  how to add elements in the other window? (pysimplegui) syafiq14 0 2,367 Jul-20-2020, 10:35 PM
Last Post: syafiq14

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020