Having trouble figuring this one out..
I currently have a frmMain and a frmLoading..
inside frmMain Shown event, I'm doing
frmLoading load = new frmLoading(); load.ShowDialog();
inside frmLoading.. I want to access frmMain.. I know I could pass the previous form inside constructor but I'd like to avoid that if possible..
Was thinking it would be this.Owner, or this.Parent.. nope, searched through all the properties in "this", "Form".. could not find it..
Any idea?