Possible Duplicate:
C# Get control by name
I have been looking around for an answer for this now for a while and was wondering if someone would help me please.
I would like to convert a type String into type TextBox so say below.
String text = "textBox" + number;
TextBox tb = text;
I would like to do this so I receive the number and then I know which textBox to write to.
Any help would be most appreciated! :)