Single License Login

Log in using license without registration

private void login_Click(object sender, EventArgs e)
        {
            bool response = Api.licenselogin(license.Text); // Edit message value on program settings to change the successful message box value!
            if (response)
            {
                MessageBox.Show("Log In Ok", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly);
                new Form2().Show();
                this.Hide();
            }
        }

Last updated