Hey everyone, little problem here, I have managed to make text dynamically appear in a text-box while I enter text into another.
how ever I would like to know to to limit the amount of text that is dynamically entered(I'd say about 10 characters at most). Any suggestions and help would be greatly appreciated!
here's a sample of what I have done so far:
how ever I would like to know to to limit the amount of text that is dynamically entered(I'd say about 10 characters at most). Any suggestions and help would be greatly appreciated!
here's a sample of what I have done so far:
Code:
Random r = new Random(); int IDrandom = r.Next(0, 9); Emp_ID.Text += IDrandom.ToString(); //Emp_ID.MaxLength = 10; does not work
Comment