hello,
i'm new to c# and as school assignment, I
need to make a marque where when a button is clicked a text from a text box would be sent to a label and the label will move left to right as a marquee. and delegate must be command to be used to move the string.
The codes below are what I have done so far, please help.
Thanks
Ernst
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 WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = textBox1.Text;
}
}