S slowtime Active Member Licensed User Longtime User Oct 11, 2013 #1 I am going to write a passwords keeper using Encryption library. Can you help me ? a) on "ExitApplication" are all variables values deleted ? Or must I set their value to "null" before close the app ? b) Are variable values cached in device ? In positive case is possible delete the cache ? Thank you in advance. p.s. sorry for my english
I am going to write a passwords keeper using Encryption library. Can you help me ? a) on "ExitApplication" are all variables values deleted ? Or must I set their value to "null" before close the app ? b) Are variable values cached in device ? In positive case is possible delete the cache ? Thank you in advance. p.s. sorry for my english
Erel B4X founder Staff member Licensed User Longtime User Oct 13, 2013 #2 a) Yes. Though you do not need to call ExitApplication. The memory used by your application process is not accessible from any other process. b) The variables are not cached. Upvote 0
a) Yes. Though you do not need to call ExitApplication. The memory used by your application process is not accessible from any other process. b) The variables are not cached.
S slowtime Active Member Licensed User Longtime User Oct 13, 2013 #3 Thank you very much. Ciao Upvote 0