HP Forums
HP Prime touch periodic table : new version - Printable Version

+- HP Forums (https://archived.hpcalc.org/museumforum)
+-- Forum: HP Museum Forums (https://archived.hpcalc.org/museumforum/forum-1.html)
+--- Forum: Old HP Forum Archives (https://archived.hpcalc.org/museumforum/forum-2.html)
+--- Thread: HP Prime touch periodic table : new version (/thread-256873.html)



HP Prime touch periodic table : new version - Mic - 11-24-2013

Hello,

Here is a new version with these corrections :

- scrolling bugs corrected
- press ENTER key to display element's page and HOME key to go back table
- electronegativity diagram bug corrected

The program works on HP Prime calculators. On the current emulator, I got an error (argument ??).

Download :

HERE

Tips to send the program :

HERE

Remember the video :

HERE


Edited: 24 Nov 2013, 11:41 a.m.


Re: HP Prime touch periodic table : new version - Miguel Toro - 11-24-2013

Hello Mic,

Thank you for the improved version. There still the syntax error caused by the way FindEl not declared before Elements as already pointed out by Han before so, for the program to work, I put all the FindEl routine after the elements code and then declare FindEl before elements :

FindEl();
EXPORT elements()
BEGIN
..... elements code;
END;

FindEl(x,y)
BEGIN
..... FindEl code;
END;

Thanks and regards,

Miguel


Re: HP Prime touch periodic table : new version - toml_12953 - 11-25-2013

Quote:
Hello Mic,

Thank you for the improved version. There still the syntax error caused by the way FindEl not declared before Elements as already pointed out by Han before so, for the program to work, I put all the FindEl routine after the elements code and then declare FindEl before elements :


How does this program run as-is on the submitter's calculator?


Re: HP Prime touch periodic table : new version - Tim Wessman - 11-25-2013

Because he has two versions, a french and english one, and the french one is already on the system. The routine is actually most likely calling the routine from the other file and not the one from this file. However, since they are identical it works....

TW


Re: HP Prime touch periodic table : new version - Terje Vallestad - 11-25-2013

I think that is what happens also if you have the English version non touch "elements" and the touch version "hp_elements" in the calculator. "elements" works fine on its own, whilst the touch version "hp_elements" will in its current version not run unless "elements" is also present.

Cheers