Page 3 of 3

Re: Using Chr() With Val()

Posted: Fri Feb 20, 2015 5:28 pm
by TI-994A
mestnyi wrote:...string variable to read the name of the function and execute it

Code: Select all

st$ = "suma2(3,5)"
Debug st$
If you're trying to store the name of a procedure into a string, and then execute that procedure by calling that string, well that's not quite possible. :)

Re: Using Chr() With Val()

Posted: Fri Feb 20, 2015 5:59 pm
by mestnyi
It's not exactly the

Code: Select all

st$ = "OpenWindow(1, 0, 0, 600, 400, "+Chr(34)+"Window"+Chr(34)+")"