public void MainFormText() { string[] words; char[] separators = { ',' }; if (User != 0) { words = (UserData[User - 1].Split(separators, StringSplitOptions.RemoveEmptyEntries)); this.Text = "FlexiMap " + words[1]; } else { this.Text = "FlexiMap Guest"; HelpForm help = new HelpForm(); Application.Run(help); } }