I use the C# version of the gallery.
It seems that there is an error in the GalleryRequest.cs module. The BaseGalleryRequest method contains the following line:
intermediatePaths = new string[] {paths.GetUpperBound(0).ToString()};In my opinion it should rather look like:
intermediatePaths = new string[paths.GetUpperBound(0)];
Otherwise, the gallery cannot display pictures in folders that are deeper than, as far as I remember, 3 or 4 levels from the root. I think that the same problem exists in VB version.
David, can you confirm this?
PS: I was trying to send information about this problem to David directly (from his Web site), but I was getting strange errors about his e-mail address. :-(
Marek