B4J Question B4J can't find bjl files in Release mode

AKJammer

Active Member
Licensed User
Odd problem. I do most of my developing on my main computer at home. I'm currently at a clients venue and have all my code on a laptop. I copied the entire B4J_Dev tree from my main computer to this laptop and have appeared to be able to debug and compile without any issues. I just went further into my program and it blew up. When I went into debug mode, it worked fine. Running in Release mode, it says that it can't find a couple of the bjl files. I checked, the files are there, but they aren't getting compiled into my release. Any idea why this would be happening?
 

AKJammer

Active Member
Licensed User
In the Jar I found:
ContestResults.bjl

The error was:
java.io.FileNotFoundException: contestresults.bjl

In my code, I see I'm going all lower case.
frm.Initialize("contestresults", 850, 600)
frm.RootPane.LoadLayout("contestresults") 'Load the layout file

Changed my code to say "ContestResults"

No more error.

Thanks Erol!!
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top