Completed the code for saving bookmarks and reloading them when a file is opened in the IDE code editor.
I tested it with over 120 bookmarks in one file.
I had said previously that I was going to store the bookmarks in *.iwx files.
As it turned out I can't do it with one file extension.
That's because a given filename can have extensions of iwb, eba, inc, rc, asm, and a.
So I will be using:
iwb - ixb
eba - ixe
inc - ixi
rc - ixr
asm,a - ixa
Note: the final IDE will have a CLEANER function which will allow for the removal of un-needed files when an application is finished. The above ix- files will be added to the list that already contains obj, a, asm, o, obj, and link.
The user will be able to select which file extensions to remove and which to leave.
LarryMc