Hello, I am working on a project, and I cant seem to get around a part of it, which is really crucial to the program.. I am using WX btw for GUI, but unfortunately, I want when a button clicked, to open a new Miniframe and take the values and use them in the main Frame which is in another class...
Is there a way to have multiple miniframes under one class, or a way to return the variables from a class to another for example:
class window():
def main():
x=10
return x
class frame():
def fn():
I want to use the "x" in window in the "fn"....
Please help project deadline is so near...