hey winter,
at the moment at the activation window where we need to put in or copy our username and serielnumber, we need to select the sting i.e. "Username" and delete it. or select it and copy our username in.
why not make it like this.
when (i think its a textbox) clicked the text "Username" will be deleted. so when clicked we can copy our username/key in.
that would also prevent mistakes like selecting "sername" and leaving the "U" and put in our name which wount work.
an event like this could be done:
at the moment at the activation window where we need to put in or copy our username and serielnumber, we need to select the sting i.e. "Username" and delete it. or select it and copy our username in.
why not make it like this.
when (i think its a textbox) clicked the text "Username" will be deleted. so when clicked we can copy our username/key in.
that would also prevent mistakes like selecting "sername" and leaving the "U" and put in our name which wount work.
an event like this could be done:
C# wrote:private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.Text = "";
}