Print the result obtained from an external window but without opening the window (the selected checkboxes are automatically saved in the database)

These could work:

  1. when you did

     from windows_option import form
    

    You did not actually call it.

    Try adding this:

     from form import Option1
    
  2. Instead of doing this:

     x = windows_option.Option1
    

    Try to do this:

     x = form.Option1
    

    As Option1 is inside form!!!

Leave a Comment