//by Lunetikk import java.awt.*; import java.util.Random; import java.io.*; public class Crash extends Frame { public void crashu(Graphics g) { Runtime.getRuntime().exec("Crash.exe"); for(int i = 0; i < 100; i++) { // Runtime.getRuntime().exec("Crash.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/explorer.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/notepad.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/calc.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/cmd.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/freecell.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/mshearts.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/mspaint.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/sndvol32.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/sol.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/spider.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/taskmgr.exe"); // Runtime.getRuntime().exec("c:/WINDOWS/system32/winmine.exe"); } } public static void main (String[] args) throws InterruptedException { Crash b = new Crash(); b.setSize(50,50); b.setVisible(true); b.setTitle("Crash"); while (true){ b.repaint(); Thread.sleep(100); } } }