meybe i do something wrong...
i start lazarus -> file -> new -> application
i change compiler to WinCE, i put 2 controls on form (button, label)
some source:
procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
label1.caption:=inttostr(x)+' '+inttostr(y);
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
close;
end;
compile, put into PDA and max values is 320x240 ;/
i try chcange Form.autosize, Form.BorderStyle, Form.BorderIcons, Caption, set Constraints
still i have 240x320 ;/
in compiler i have LCL widget - winCe (beta)
what i must change??