newb question
/code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class change_test : Form
{
public change_test()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btn_change_Click(object sender, EventArgs e)
{
if (lblTop = "Life is not fun when it does not change.")
lblTop.Text="Change is Good for the Soul.";
else
lblTop.Text = "Life is not fun when it does not change.";
}
}
}
/code
ok, and i still need help on how to post codes

