I've got my main form with four tabs on a tab control. Each tab contains about 1000-2000 lines of code and I would like to make this much neater.
Would this involve Modules? For example, I would like to store the code of 1 tab in a module or class ... (missing the term here). I would end up with 4 files containing the code of the 4 tabs and then I could simply include them...
Is it discouraged to do so? Perhaps it would create a problem when accessing some variables or functions?