Advertisement
Metziop

empleado.java

Apr 13th, 2021
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1.  
  2. package mx.jdr80.nomina;
  3.  
  4. /**
  5.  *
  6.  * @author dario
  7.  */
  8. public class empleado {
  9.     public static void main (String[] args){
  10.         //creando objeto del tipo frmempleado
  11.         frmEmpleado empleado =new frmEmpleado();
  12.         //seteando el formulario como visible
  13.         empleado.setVisible(true);
  14.    
  15.     }
  16.    
  17.    
  18.    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement