package SelfPropelledArtilleryUnit; import javax.swing.*; public class SelfPropelledArtilleryUnit { public static void main(String[] args) { SwingUtilities.invokeLater(() -> { FormSPAU form = new FormSPAU(); form.setSize(900, 500); form.setVisible(true); }); } }