blooming8

Equalizator - Form

Jun 2nd, 2014
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1.     private void CalcolaCmdActionPerformed(java.awt.event.ActionEvent evt) {                                          
  2.         String strx = ATxt.getText();
  3.         String stry = BTxt.getText();
  4.         String strz = CTxt.getText();
  5.  
  6.         if (Check.Input(strx, stry, strz))
  7.         {
  8.                 double x = Double.parseDouble(strx);
  9.                 double y = Double.parseDouble(stry);
  10.                 double z = Double.parseDouble(strz);
  11.                 OutLbl.setText(Calcolo.Soluzioni(x, y, z)); // Visualizza in output il risultato
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment