I have a project with 14 sources files in it, and the project is set to load all files when open. (PB 4.60 32bit, on Win7 32bit)
Works fine, except occasionally when closing and re-opening the project, the tabs will come out in a different order. It seems random - it doesn't end up alphabetical or most recently editted or anything I can make sense of. Given that the order is stored in the project file, it looks like whatever's going wrong is happening when the project is closed, not when it is opened later.
Is this a known issue? I've not noticed this before with projects, but I've not previously dealt with projects with more than four or five files in them.
Tab order not preserved.
Re: Tab order not preserved.
the oder of the tabs is defined in the XML pbp-file:
if you want reorder it, then edit this xml-file
Code: Select all
<section name="files">
<file name="Includes\Ship.pbi">
<file name="Includes\Configuration.pbi">
<file name="Includes\Language.pbi">
...
PB 6.01 ― Win 10, 21H2 ― Ryzen 9 3900X, 32 GB ― NVIDIA GeForce RTX 3080 ― Vivaldi 6.0 ― www.unionbytes.de
Lizard - Script language for symbolic calculations and more ― Typeface - Sprite-based font include/module
Lizard - Script language for symbolic calculations and more ― Typeface - Sprite-based font include/module
Re: Tab order not preserved.
Yes, I've already found that I can edit this file to fix it - I'd just like to understand why such fixing is occasionally needed and if there's any way to avoid this in the first place.STARGÅTE wrote:the oder of the tabs is defined in the XML pbp-file:if you want reorder it, then edit this xml-fileCode: Select all
<section name="files"> <file name="Includes\Ship.pbi"> <file name="Includes\Configuration.pbi"> <file name="Includes\Language.pbi"> ...
What seems to be happening is that, on exit, the pbp is being resaved with the tabs in a different order.