Thank you for the kind welcome...SO happy to have found this place!!! :)
It's hard to explain over a message, so please bare with me...
I have two JFrame forms (winStart and winLogCall). winStart (which is the main window and is ALWAYS open, even if other JFrame forms are open), has a dialog which I need to access from winLogCall (which is only opened as the user needs it), but because calling this dialog is a static method, it causes an error. The way around this error is instantiating a winStart object, calling the dialog, using it, and then closing the winStart object I instatiated to save resources.
I suppose another question would be, how do I call components of an instatiated object (winStarts' dialog for example), from another instatiated object (winLogCall) without instatiating winStart everytime (remember that winStart is open all the time anyways).
I have tried making the dialog an independant JFrame form itself, but that did not eliminate the static to non-static method errors and again I would need to instatiate a whole bunch of those objects...
I don't understand that an instatiated object does not take memory...If it is instatiated, it exist and is stored in the memory, so that the program knows what's happening. Campbell, I am not contesting you here, I am just voicing how understand what is going on. I have very limited knowledge (I finished school 3 weeks ago) so most of what I am writing here, is new to me. We did a lot of concepts etc. at school, but the is still weird for me. Please explain, if you can, how JRE handles instatiated objects to avoid memory wasting, without having the running program "forget" what object exist.
cheers