Good, to hear it
Anyway, i have something like this:
------------------
program Nowy;
var must:image;
begin {START}
must:=loadimage('/must3.png');
drawImage(must, 0, 0);
repaint;
delay(1000);
end. {END}
------------------
Everything works fine, except the picture is not fully visible, because of status bar, clock, soft-keys-bar etp. How to make it full screen? I think i'm looking for something like java's
SetFullScreenMode(true);
but i'm not sure.