Catatan Kuliah Teknik Informatika
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Program Hantu

Go down

Program Hantu Empty Program Hantu

Post  Admin Thu Feb 04, 2010 12:24 pm

Program Hantu Hantu

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Ghost
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
pictureBox1.Visible = true;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
}

private void button2_Click(object sender, EventArgs e)
{
pictureBox1.Visible = false;
pictureBox2.Visible = true;
}

private void lightBulbOn_Tick(object sender, EventArgs e)
{
pictureBox3.Visible = true;
}
}
}

Admin
Admin

Posts : 14
Join date : 2010-01-27

https://catatan-ti.forumotion.com

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum