Hi,
I am creating an application having multiple Activity.
actPlayer (data stored in SQLite)
actCourse (Data stored SQLite and details in OS file based on Map through RandomAccessFile)
actRound (???)
App user adds players and course and based on this stored information gets to the actRound.
actRound is the core of my app and is very complex with tons of information and lots of code
I know how i will be saving it, i.e., base info in SQLite and complex info as Map in OS file.
My question is regarding the architecture of the application.
What is the best place to write the code of saving this complex information.
Since the functionality code in actRound is complex and huge, I tried to add a code module and also a class module. But in those module i do not have access to the variables and Views (few added through designer and many added programmatically) that i have added in my actRound.
(Do not want to move variables to Process_Globals)
Just want to know the best practice and approach.
Regards & thanks in adv.
I am creating an application having multiple Activity.
actPlayer (data stored in SQLite)
actCourse (Data stored SQLite and details in OS file based on Map through RandomAccessFile)
actRound (???)
App user adds players and course and based on this stored information gets to the actRound.
actRound is the core of my app and is very complex with tons of information and lots of code
I know how i will be saving it, i.e., base info in SQLite and complex info as Map in OS file.
My question is regarding the architecture of the application.
What is the best place to write the code of saving this complex information.
Since the functionality code in actRound is complex and huge, I tried to add a code module and also a class module. But in those module i do not have access to the variables and Views (few added through designer and many added programmatically) that i have added in my actRound.
(Do not want to move variables to Process_Globals)
Just want to know the best practice and approach.
Regards & thanks in adv.