Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Raylin on September 01, 2010, 04:36:34 pm

Title: Should this work or am I being stupid?
Post by: Raylin on September 01, 2010, 04:36:34 pm
Code: (Axe BASIC) [Select]
:.INIT
:"appvRPGSave->Str1
:GetCalc(Str1,9)->A
:Data(100,7,7,0,1,1,1,1,121)->GDB1
:Copy(GDB1,Str1,9
:Archive A
Title: Re: Should this work or am I being stupid?
Post by: ACagliano on September 01, 2010, 04:39:39 pm
**Copy(GDB1,Str1,9

should be

Copy(GDB1,A,9   ;  A is your pointer to the appvar, not Str1.
Title: Re: Should this work or am I being stupid?
Post by: calc84maniac on September 01, 2010, 04:42:31 pm
Also Archive Str1 because Archive takes a filename.
Title: Re: Should this work or am I being stupid?
Post by: nemo on September 01, 2010, 06:36:41 pm
Code: [Select]
:.INIT
:"appvRPGSave"->Str1
:Data(100,7,7,0,1,1,1,1,121)->GDB1
:GetCalc(Str1,9)->A
:Copy(GDB1,A,9
:Archive Str1