N
nx-2000
I'm trying to fire a forms Load event, but I don't seem to be able to,
what am I missing?
private void FireAnotherFormsLoad(Form f)
{
MethodInfo mi = f.GetType().GetMethod("Load");
if (mi != null)
mi.Invoke(f, new object[] { });
}
what am I missing?
private void FireAnotherFormsLoad(Form f)
{
MethodInfo mi = f.GetType().GetMethod("Load");
if (mi != null)
mi.Invoke(f, new object[] { });
}