if just hide form14 is parent and form15 is child:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace __11
{
public partial class Form14 : Form
{
public Form14()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form15 fm15 = new Form15(this);
fm15.Show();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace __11
{
public partial class Form15 : Form
{
private System.Windows.Forms.Form parent;
public Form15(System.Windows.Forms.Form p)
{
this.parent = p;
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.parent.Hide();
}
}
}