6.05 Optimized layout problems

Ianmac

Member
Licensed User
Longtime User
I have a series of programs running via a selection program. Everything works fine on the device when not optimised but when optimised they all experience the same problem, the layout behaves as if the screen dimension is twice the size in both directions and squashes everything up into the top left hand corner.
The Optimised version works fine in Windows
I am using V6.05 and have the full Net Framework update & service pack as linked via the web site as of 4th Feb 08. and it has been uploaded and installed on the device.
I have the original version of BinaryFile.dll in the same folder.
Am I missing something?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Optimized applications are .Net CF 2.0 applications while nonoptimized applications are .Net CF 1.0 applications.
.Net CF 1.0 treats VGA screens (hi-res) like QVGA screens (low-res).
.Net CF 2.0 doesn't "reduce" the resolution of VGA screens.

You can change the desktop screen size in the designer to 640 * 480 to match a VGA screen.
 

Hennell

Member
Licensed User
Longtime User
This thread and that tutorial solve completely what I was just about to ask about.

:sign0098:
 
Top