The way my code is now its all basically in one class and I want to move different functions into other classes to organise it a bit.
What is the best way to do this as I have been having problems -
I was just bringing in a new Main class when I needed to call the functions in my main class but this would give errors when I run the program and not let me run it?
Private mc as new Main()
mc.functionNeeded
But the error when I try to run
"Stack over flow exception"
An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll
Any tips on how this is done. I couldnt find any info on it (probably because its so basic)
Thanks,