rimozione suffisso
risoluzione bug git (su Windows non è case sensitive, pertanto passare da 'frmxxx' a 'Frmxxx' genera un falso doppione in fase di staging dei files)
This commit is contained in:
parent
8eba2a86b0
commit
720b70b7c8
@ -30,7 +30,7 @@ import puntocassa.utils.Utils;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmCercaNew extends javax.swing.JFrame {
|
||||
public class FrmCerca extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
private JTextField jtxtTessera;
|
||||
@ -46,7 +46,7 @@ private JTextField jtxtTessera;
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmCercaNew(PuntoCassa frm,JTextField jtxtT,String imgPath,String BuoniPasto,Boolean flagMostraDataNascita) {
|
||||
public FrmCerca(PuntoCassa frm,JTextField jtxtT,String imgPath,String BuoniPasto,Boolean flagMostraDataNascita) {
|
||||
BP=BuoniPasto;
|
||||
frmPuntoCassa=frm;
|
||||
frmPuntoCassa.setEnabled(false);
|
||||
@ -708,13 +708,13 @@ private JTextField jtxtTessera;
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmCercaNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmCerca.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmCercaNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmCerca.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmCercaNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmCerca.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmCercaNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmCerca.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
@ -724,11 +724,19 @@ private JTextField jtxtTessera;
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmCercaNew(null,null,null,null,true).setVisible(true);
|
||||
new FrmCerca(null,null,null,null,true).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -29,7 +29,7 @@ import puntocassa.utils.Utils;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmMeteoNew extends javax.swing.JFrame {
|
||||
public class FrmMeteo extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
private Long idPuntoCassa=0L;
|
||||
@ -42,7 +42,7 @@ public class FrmMeteoNew extends javax.swing.JFrame {
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmMeteoNew(PuntoCassa frm, Long id_Punto_Cassa,Boolean Nuovo) {
|
||||
public FrmMeteo(PuntoCassa frm, Long id_Punto_Cassa,Boolean Nuovo) {
|
||||
|
||||
frmPuntoCassa=frm;
|
||||
frmPuntoCassa.setEnabled(false);
|
||||
@ -352,23 +352,27 @@ public class FrmMeteoNew extends javax.swing.JFrame {
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMeteoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMeteo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMeteoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMeteo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMeteoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMeteo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMeteoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMeteo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmMeteoNew(null,0L,true).setVisible(true);
|
||||
new FrmMeteo(null,0L,true).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -27,7 +27,7 @@ import puntocassa.utils.Utils;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmMovimentiNew extends javax.swing.JFrame {
|
||||
public class FrmMovimenti extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
private Long idTessera=0L,idPuntoCassa=0L;
|
||||
@ -40,7 +40,7 @@ public class FrmMovimentiNew extends javax.swing.JFrame {
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmMovimentiNew(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath) {
|
||||
public FrmMovimenti(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath) {
|
||||
|
||||
frmPuntoCassa=frm;
|
||||
frmPuntoCassa.setEnabled(false);
|
||||
@ -483,13 +483,13 @@ public class FrmMovimentiNew extends javax.swing.JFrame {
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMovimentiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMovimenti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMovimentiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMovimenti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMovimentiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMovimenti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmMovimentiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmMovimenti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
@ -499,11 +499,19 @@ public class FrmMovimentiNew extends javax.swing.JFrame {
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmMovimentiNew(null,0L,0L,null).setVisible(true);
|
||||
new FrmMovimenti(null,0L,0L,null).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -30,7 +30,7 @@ import puntocassa.utils.Utils;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmProdottiNew extends javax.swing.JFrame {
|
||||
public class FrmProdotti extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
|
||||
@ -43,7 +43,7 @@ private PuntoCassa frmPuntoCassa;
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmProdottiNew(PuntoCassa frm,String imgPath) {
|
||||
public FrmProdotti(PuntoCassa frm,String imgPath) {
|
||||
|
||||
frmPuntoCassa=frm;
|
||||
frmPuntoCassa.setEnabled(false);
|
||||
@ -678,23 +678,27 @@ private PuntoCassa frmPuntoCassa;
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProdottiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProdotti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProdottiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProdotti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProdottiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProdotti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProdottiNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProdotti.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmProdottiNew(null,null).setVisible(true);
|
||||
new FrmProdotti(null,null).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -13,14 +13,14 @@ import javax.swing.ImageIcon;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmProgressNew extends javax.swing.JFrame {
|
||||
public class FrmProgress extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmProgressNew(PuntoCassa frm) {
|
||||
public FrmProgress(PuntoCassa frm) {
|
||||
frmPuntoCassa=frm;
|
||||
initComponents();
|
||||
String startDir = System.getProperty("user.dir");
|
||||
@ -117,23 +117,27 @@ public class FrmProgressNew extends javax.swing.JFrame {
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProgressNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProgress.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProgressNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProgress.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProgressNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProgress.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmProgressNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmProgress.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmProgressNew(null).setVisible(true);
|
||||
new FrmProgress(null).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -27,7 +27,7 @@ import puntocassa.utils.Utils;
|
||||
*
|
||||
* @author Marco
|
||||
*/
|
||||
public class FrmStornoNew extends javax.swing.JFrame {
|
||||
public class FrmStorno extends javax.swing.JFrame {
|
||||
|
||||
private PuntoCassa frmPuntoCassa;
|
||||
private Long idTessera=0L,idPuntoCassa=0L;
|
||||
@ -41,7 +41,7 @@ public class FrmStornoNew extends javax.swing.JFrame {
|
||||
/**
|
||||
* Creates new form frm
|
||||
*/
|
||||
public FrmStornoNew(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath,Boolean azzera) {
|
||||
public FrmStorno(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath,Boolean azzera) {
|
||||
|
||||
frmPuntoCassa=frm;
|
||||
frmPuntoCassa.setEnabled(false);
|
||||
@ -554,23 +554,27 @@ public class FrmStornoNew extends javax.swing.JFrame {
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
java.util.logging.Logger.getLogger(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FrmStornoNew(null,0L,0L,null,false).setVisible(true);
|
||||
new FrmStorno(null,0L,0L,null,false).setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
@ -189,8 +189,8 @@ public class MyKeyBoard extends javax.swing.JFrame {
|
||||
private void jBtnInvioActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnInvioActionPerformed
|
||||
|
||||
if (formCerca) {
|
||||
FrmCercaNew frm;
|
||||
frm = (FrmCercaNew) parent;
|
||||
FrmCerca frm;
|
||||
frm = (FrmCerca) parent;
|
||||
frm.Cerca();
|
||||
}
|
||||
|
||||
|
@ -123,8 +123,8 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
public int hFont = 15;
|
||||
private int altControlli = 100;
|
||||
private int largControlli = 100;
|
||||
public FrmProgressNew myProgressForm;
|
||||
public FrmMeteoNew myMeteoForm;
|
||||
public FrmProgress myProgressForm;
|
||||
public FrmMeteo myMeteoForm;
|
||||
private int gratuitaResidue = 0;
|
||||
private int bonusResidui = 0;
|
||||
private StringBuilder modiPagamento = new StringBuilder("");
|
||||
@ -2694,7 +2694,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
this);
|
||||
if (Integer.parseInt(spia) == 1) {
|
||||
if (myMeteoForm == null) {
|
||||
myMeteoForm = new FrmMeteoNew(this, idPuntoCassa, true);
|
||||
myMeteoForm = new FrmMeteo(this, idPuntoCassa, true);
|
||||
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(300, largControlli);
|
||||
@ -2938,7 +2938,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
}//GEN-LAST:event_jBtnStornoActionPerformed
|
||||
|
||||
private void apriStorno(Boolean daPassaggi) {
|
||||
FrmStornoNew jFrameStorno = new FrmStornoNew(this, idTessera, idPuntoCassa, imgPath, daPassaggi);
|
||||
FrmStorno jFrameStorno = new FrmStorno(this, idTessera, idPuntoCassa, imgPath, daPassaggi);
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(550, largControlli);
|
||||
Integer h = calcolaLarghezzaAltezza(250, altControlli);
|
||||
@ -2948,7 +2948,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
jFrameStorno.setVisible(true);
|
||||
}
|
||||
private void jBtnprodottiActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnprodottiActionPerformed
|
||||
FrmProdottiNew jFrameProdotti = new FrmProdottiNew(this, imgPath);
|
||||
FrmProdotti jFrameProdotti = new FrmProdotti(this, imgPath);
|
||||
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(550, largControlli);
|
||||
@ -3014,7 +3014,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
}
|
||||
if (aggiorna) {
|
||||
|
||||
myProgressForm = new FrmProgressNew(this);
|
||||
myProgressForm = new FrmProgress(this);
|
||||
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(300, largControlli);
|
||||
@ -3086,7 +3086,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
}//GEN-LAST:event_jTxtTesseraFocusGained
|
||||
|
||||
private void btnImpostaClienteActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnImpostaClienteActionPerformed
|
||||
FrmCercaNew jFrameCerca = new FrmCercaNew(this, jTxtTessera, imgPath, "", flagMostraDataDiNascita);
|
||||
FrmCerca jFrameCerca = new FrmCerca(this, jTxtTessera, imgPath, "", flagMostraDataDiNascita);
|
||||
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(650, largControlli);
|
||||
@ -3156,7 +3156,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
}//GEN-LAST:event_txtTotalePuntiActionPerformed
|
||||
|
||||
private void jBtnMovimentiActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnMovimentiActionPerformed
|
||||
FrmMovimentiNew jFrameMovimenti = new FrmMovimentiNew(this, idTessera, idPuntoCassa, imgPath);
|
||||
FrmMovimenti jFrameMovimenti = new FrmMovimenti(this, idTessera, idPuntoCassa, imgPath);
|
||||
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(680, largControlli);
|
||||
@ -3170,7 +3170,7 @@ public class PuntoCassa extends JFrame implements ActionListener {
|
||||
|
||||
private void jBtnBuoniActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnBuoniActionPerformed
|
||||
|
||||
FrmCercaNew jFrameCerca = new FrmCercaNew(this, jTxtTessera, imgPath, "BP", flagMostraDataDiNascita);
|
||||
FrmCerca jFrameCerca = new FrmCerca(this, jTxtTessera, imgPath, "BP", flagMostraDataDiNascita);
|
||||
this.setEnabled(false);
|
||||
Integer w = calcolaLarghezzaAltezza(650, largControlli);
|
||||
Integer h = calcolaLarghezzaAltezza(250, altControlli);
|
||||
|
Loading…
Reference in New Issue
Block a user