I have a \'loader app\' that loads a menu and when user clicks the menu image button a list view opens based on the text
(if text = employee) (Go to class
Another simple example
private Boolean FindForm(String formName) { foreach (Form f in Application.OpenForms) { if (f.Name.Equals(formName)) { f.Location = new Point(POINT.X, POINT.Y + 22); return true; } } return false; }