there are many ways,
Pass a reference of your parent form to your child or just pass the data to the child form in the constructor or the set a property.
protected void viewHelp(){
var loginHelp = new LoginHelpForm();
loginHelp.ParentForm = this;
loginHelp.Show();
this.Hide();
}