Privat erkan kaplan Eval Funktion: Difference between revisions
Jump to navigation
Jump to search
Kaplanerkan (talk | contribs) Created page with " Eval() The Eval() function executes a JavaScript string. Consider the following: For i= 1 To 3 myControl = Eval("Button" + i) Print myControl.value Next" |
Kaplanerkan (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
Eval() | # Eval() | ||
The Eval() function executes a JavaScript string. Consider the following: | The Eval() function executes a JavaScript string. Consider the following: | ||
Revision as of 09:48, 26 February 2013
- Eval()
The Eval() function executes a JavaScript string. Consider the following:
For i= 1 To 3
myControl = Eval("Button" + i) Print myControl.value
Next