Anybody can help me in C#.net how to do macro like vfp..
Foxpro style:
mystring = "thisform.textbox."
myprop = "enabled"
mytrue = "=.T."
mymacro = mystring+myprop+mytrue
&mymacro
here's what I need in C#.net
textBox1.Enable = true; - this would be my execution.
string mystring mytexbox = "textBox1";
string myprop = "Enable ==";
boolean mytrue = true;
How to execute it in C#?
Thanks in advance...
Gary