private void projectRecordsToolStripMenuItem_Click(object sender, EventArgs e) { ProRecords l = ProRecords.getInstance(); l.Show(); this.Hide(); }
public static ProRecords getInstance() { if (l == null) { l = new ProRecords(); l.Show(); return(l); } else { return(l); } }