Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - lstyle7400

Pages: [1]
1
QB64 Discussion / NOT ENOUGH MEMORY TO EXECUTE QB64 PROGRAM
« on: December 30, 2019, 07:21:38 pm »
I compiled an existing QB45 program into QB64.  The QB45 program runs well.  This program would not execute originally because the source code used too much memory.  I then broke the program into subroutines and the program executes well in QB45.  QB64 when it compiles takes QB45 subroutines and places them into one executable code main module.  Subs are contained within the QB64 main code module.  When the compile happened, the code would not run because no memory for the code.  So this is where I started originally in QB45 before breaking the code into sub-routines which are separate from the main module in QB45 but added to the main module in QB64.  Is there a way to run subs in QB64 so they are not added to the main module so the main will execute without not enough memory error?


Pages: [1]