private void setTestMode() { if (LicenseUtility.TestMode) { button2.ForeColor = Color.Green; this.Text = "LeanPath License Manager - Using Test Database"; button2.Text = "Using Test Database"; } else { button2.ForeColor = Color.Red; this.Text = "LeanPath License Manager - Using Production Database"; button2.Text = "Using Production Database"; } licenseService = LicenseUtility.GetWebService(); }