NooBieless
Well-Known Member
- Joined
- Jul 28, 2009
- Messages
- 112
- Reaction score
- 0
Hey all
Im in a bit of a problem... can anyone help me with issue ive got thats if u know C#
Im in a bit of a problem... can anyone help me with issue ive got thats if u know C#
Code:
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 mySecondApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
button5.Left += 5;
}
private void button5_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
button5.Left -= 5;
}
private void button3_Click(object sender, EventArgs e)
{
button5.Top += 5;
}
private void button4_Click(object sender, EventArgs e)
{
button5.Top -= 5;
}
}
}