I have several textbox in a form. I have written many of the codes and store them in database As:
Textbox1.Location = New System.Drawing.Point(609, 3)
Textbox2.Location = New System.Drawing.Point(659, 3)
Textbox1.BackColor = System.Drawing.Color.Green
Textbox2.BackColor = System.Drawing.Color.Blue
TextboxX.AnyProperty = PropertyValue
The reason of writing code in database is that if user wants textbox at specific location or wants to change any property of the textbox, our programmers change the code in Database for that textbox instead of recompiling the software.
Is there any way to execute these codes from database to change the properties of textbox accordingly?