Guys
I have a textbox, I wana enter 4 digit and when I press enter it should show a label I have add the label but its not working the code I have look more like this
if(e.KeyChar == 4)
{
this.Controls.Add(label);
e.Handled = true;
}
Any help will be highly Appreciated
Thanx in advance