You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I click on "PDF auswählen" an OpenDialog shows up, that lets me pick the file which should get stamped using:
def btn_openpdfClick(self, Sender):
self.OpenDialog1.Execute() # Show open dialog to pick a file
self.pdf_path = self.OpenDialog1.FileName # Get file path from open dialog
self.edit_pdf.Text = self.pdf_path # Show PDF path in disabled edit field
After choosing "open" in the dialog, the pdf_path is set correctly according to the selected file, but the stamper window loses focus and disappears behind the next open window on the desktop:
This is really annoying especially when the other program is in fullscreen mode. Is there any possibility to focus the window again after the OpenDialog closes?
The text was updated successfully, but these errors were encountered:
Hi everyone,
I wrote a small multi form program to stamp, split or combine pdfs using pikepdf:
These forms are called using:
If I click on "PDF auswählen" an OpenDialog shows up, that lets me pick the file which should get stamped using:
After choosing "open" in the dialog, the pdf_path is set correctly according to the selected file, but the stamper window loses focus and disappears behind the next open window on the desktop:

This is really annoying especially when the other program is in fullscreen mode. Is there any possibility to focus the window again after the OpenDialog closes?
The text was updated successfully, but these errors were encountered: