W
wadefleming
I have the follwong code:
private void ButtonOpen_Click(object sender, System.EventArgs e)
{
System.Diagnostics.Process.Start("http://www.google.com");
}
which results in the following exception:
'An attempt was made to reference a token that does not exist '
What am I doing wrong? I'm not sure of the exact meaning of this error.
Thanks
Wade
private void ButtonOpen_Click(object sender, System.EventArgs e)
{
System.Diagnostics.Process.Start("http://www.google.com");
}
which results in the following exception:
'An attempt was made to reference a token that does not exist '
What am I doing wrong? I'm not sure of the exact meaning of this error.
Thanks
Wade