0
You don't need to create a new instance of the mainform, just pass a reference into the constructor of the modform
e.g.
MainForm _parent = null;
modform(MainForm parent)
{
_parent = parent
}
public void ReturnNewIndex(object sender, System.EventArgs e)
{
int index=NameCombo.SelectedIndex;
_parent.Something(index);
}
-Mike G.