Skip to content
Advertisement

Variables passes as null to another Java Frame in Netbeans

I am trying to take a value from MSSQL to a class. In my login GUI frame the variable passes exactly right, but when i pass that class object to another frame the name (String ograd) variable returns as null.

Here’s the teachermanagement.java file:

JavaScript

loginGUI.java file where i take variables from my MSSQL database with Button click, which works fine.

JavaScript

dbconnection.java in Helper package:

JavaScript

and this is the teacherGUI frame i am trying to pass my variable to:

JavaScript

As you can see in teacherGUI.java I am trying to change label text with the variable i took from loginGUI frame, but it returns as NULL. When i try to print variable in loginGUI it returns the correct value, but in teacherGUI frame this is not the case. Any help would be appreciated.

PS: I hid loginGUI innit components to shorten the code because there is nothing wrong with that file.

Advertisement

Answer

You’re creating too many teachermanagement objects and ignoring the parameter passed into the constructor:

Code 1:

JavaScript

but you ignore the tm object in the constructor:

JavaScript

Instead you should not create a new teachermanagement in the ogretmengui class, but rather use the parameter to set a field:

JavaScript

You may also be running into problems in that JFrames are not modal and do not block program flow (such as a JOptionPane or modal JDialog will). Please have a look at The Use of Multiple JFrames: Good or Bad Practice?.

Also, while not related to your question or problem, consider having a look at this Java Naming Conventions document: Class names should start with upper-case letters, variables with lower-case letters. Again, this has nothing to do with your actual question or problem, but by following these conventions, you will make your code easier for others (us) to understand, and that is usually a good thing.

Advertisement