Hi All,
Is "physical location" of images loaded using .PBR files cached similar to location of classes and DataWindow objects?
First time app needs to loads any class from disk, it searches the library list. When found, loads from disk and caches location for future loads. Next time class needs to load from disk, PB runtime doesn't search library list for the class. Instead, loads from previously found library.
Does anyone know whether PB also caches the location of image files linked into .PBD files using .PBR files? I would expect so but honestly never tested this particular combo.
Thanks in advance, /Michael
(Inspired by a discussion at the German user group conference earlier this week)
I usually have all code in PBD files like you to minimize EXE size. All images in the EXE puts them right in front of library list which is optimal performance.
I try to minimize EXE using separate resources.pbd containing all images. I will make a point of always placing it at start of library list.