Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: nikitouzz on March 02, 2013, 06:29:26 am

Title: VAT
Post by: nikitouzz on March 02, 2013, 06:29:26 am
Hi i have some probleme with memkit by Quigibo... i explain.

for read archive/or not programme i use this routine and.... don't work as i want... why ?

Code: [Select]
:.A
:#Axiom(MEMKIT)
:load()
:fix 5
:while 1
:if getkey(9)
:clrdrawn
:print(L1)
:text(0,,L1)
:getcalc(L1,Y1)
:for(X,1,8)
:text(0,x*7,{X+Y1}>char
:End
:dispgraph
:next()
:End
:EndIf getkey(15)

this routine return :

-name
-0
-0
-0
-0
-0
-0
-0

why ?
Title: Re: VAT
Post by: Runer112 on March 02, 2013, 11:33:45 am
Print() doesn't copy the type byte for the variable, because that's not really part of the name. Try changing Print(L1) to Print(L1+1) and put dim()→{L1}r before it.
Title: Re: VAT
Post by: nikitouzz on March 02, 2013, 11:37:20 am
your code work perfectly :) your are awesome  :thumbsup: