It comes up with this error when I try to login.
Index (zero based) must be greater than or equal to zero and less than the size of the argument list.
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//string name = textBox1.Text;
string.Format ("{0} {1}", "Best", "Regards");
if (textBox1.Text == "Ryan" && textBox2.Text == "password")
{
MessageBox.Show(string.Format("Welcome {1}" ));
}
}
}