Posted: Fri Jan 12, 2007 2:26 am Post subject: Resizing UCE GUI
Hi, I need some help with customising UCE (zenos2.5).
I am trying to make uce window "taller". Enlarging the main form taller seem to work only in some cases. The form size somehow "shrink" back to default height
I remember seeing this mentioned before last year.. but the search function doesnt go far back enuff. so.. no luck there
procedure TMainForm.WMGetMinMaxInfo(var Message: TMessage);
var MMInfo: ^MINMAXINFO;
begin //the constraint function of the form behaves weird when draging from the top or left side, so I have to do this myself.
//mainform.pix
MMInfo:=ptr(message.LParam);
if pixelsperinch=96 then
begin
// MMInfo.ptMinTrackSize:=point(490,460);
end;
end;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum