This is my working example:
private void authentic_click(object sender, EventArgs e)
{
formauthentic accessmyauthenticform = new formauthentic();
accessmyauthenticform.ShowDialog();
}
Now, how do you pass parameters to this called form, without re-inventing the code that you could of passed to it?
Thanks.