Privat erkan kaplan Eval Funktion: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(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")
 
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

  1. Eval()

The Eval() function executes a JavaScript string. Consider the following:

For i= 1 To 3

 myControl = Eval("Button" + i)
 Print myControl.value

Next