Posted: Sun Jan 23, 2011 8:44 pm Post subject: Ok... opening a new window!
Is there any way to open a window of ANOTHER existing turing file?
I have my loading bar, title screen, and main program on different files, most of which use the same variables and I dont want to root through them. This will save me a lot of time as my assignment is due tomorrow!
Sponsor Sponsor
ProgrammingFun
Posted: Sun Jan 23, 2011 9:03 pm Post subject: RE:Ok... opening a new window!
Why don't you just put all of your procedures into one file and then import that into the main program?
If all of you things are processes, you do not have to worry about variable names....
Tony
Posted: Sun Jan 23, 2011 9:23 pm Post subject: RE:Ok... opening a new window!
Scopes! Variables created inside of a procedure are local to just that procedure.
The "opening" that you might have in mind could be done for compiled programs with Sys.Exec, but not to source code files.