viernes, 24 de marzo de 2023

Celdas de JTable no editables

Celdas de JTable no editables
==============================
Click derecho en el JTable -> Customize Code...
Agregar despues de la primera linea de codigo lo siguiente:


tblProducts.setFocusable(false);
tblProducts = new javax.swing.JTable() {
public boolean isCellEditable(int rowIndex,int colIndex){
return false;
}
};

Instalar Powershell 7

Instalar Powershell Version 7 -------------------------------------- $> winget search powershell $> winget install Microsoft.Powershe...