using System.Windows.Forms;
class RunFormBadly
{
public static void Main()
{
Form form = new Form();
form.Text = "Not a Good Idea...";
form.Visible = true;
Application.Run();
}
}
Get all the secret tricks and tips for Computer | Software|Anti-virus|Hacking| cellphone | latest mobile phones Features and Specification
using System.Windows.Forms;
class RunFormBadly
{
public static void Main()
{
Form form = new Form();
form.Text = "Not a Good Idea...";
form.Visible = true;
Application.Run();
}
}
0 comments:
Post a Comment