I recently ran into problems with the progress bar, being fooled into thinking it wasn't working. I reported it on this thread https://www.b4x.com/android/forum/threads/b4j-6-8-with-openjdk-11-progress-bar-not-working.99878
Now I have encountered two more problems - theseecond I describe here:
I load a form using this code:
Once the form has been resized (jdk 11 problem, see https://www.b4x.com/android/forum/threads/more-geometry-problems-b4j-6-8-with-openjdk-11.100157 ) the results are different. The size of the form with jdk11 is smaller than with jdk1.8 - look especially at the right hand side.
Now I have encountered two more problems - theseecond I describe here:
I load a form using this code:
B4X:
frmCDAddition.Initialize("frmCDAddition",MB_Add.frmMBAddition.Width-25, MB_Add.frmMBAddition.Height-32)
'Load the main layout file
frmCDAddition.RootPane.LoadLayout("dtmm_mbaddcd")
frmCDAddition.SetOwner(MB_Add.frmMBAddition)
frmCDAddition.AlwaysOnTop = True
frmCDAddition.Title = "MusicBase CD Addition"
frmCDAddition.Resizable = False
frmCDAddition.SetWindowSizeLimits(575, 568, 575, 568)
frmCDAddition.Show
Once the form has been resized (jdk 11 problem, see https://www.b4x.com/android/forum/threads/more-geometry-problems-b4j-6-8-with-openjdk-11.100157 ) the results are different. The size of the form with jdk11 is smaller than with jdk1.8 - look especially at the right hand side.