Hi all
I first started using the BI file just to move stuff out of the main bas file to make mods easier
and keep things sorted. The normal way was to store all the image strings into a sub called (images).
where each image has it's own shared name.
When the program first starts all the image strings are loaded by running the sub IMAGES. Now they
can be loaded at any time using something like the code below. BINPICS converts the string back into
a .png image then it's loaded using _LOADIMAGE and _PUTIMAGE.
The BI file contained all the dim shared statements and the image strings
'CODE TO DISPLAY IMAGE
PIC1$=SPLASH1$
BINPICS '<- CONVERTS IMAGE STRING TO .PNG IMAGE
Like I said using the BI file was not the norm, it was added way back as a means to manage my
images files outside the main bas code. This had little effect when the BI was very small but over
time it grew and grew. All I needed was go back to my normal methods which was already planned
when the project was finished. Anyway, problem fixed.
R1