I am using VBA for Excel, and am trying to execute the following:
Dim strElement as String
strElement = "frmLoad.lblInd icator" & 1 & ".BackColor = vbGreen"
Evaluate(strEle ment)
---------
The "Evaluate() " function doesn't work, and when I tried "Eval()" it returned an error.
Dim strElement as String
strElement = "frmLoad.lblInd icator" & 1 & ".BackColor = vbGreen"
Evaluate(strEle ment)
---------
The "Evaluate() " function doesn't work, and when I tried "Eval()" it returned an error.
Comment