|
"Admin" wrote in message <jh7oqi$jpl$1@newscl01ah.mathworks.com>...
> modify "GUI Opitions" --> Resize behavior --> Other (Use ResizeFcn)
>
> Then edit "View Callbacks" --> ResizeFcn
> add the following codes to line " function figure1_ResizeFcn(hObject, eventdata, handles) "
>
> rect = get(0, 'ScreenSize');
> set(hObject, 'Position', rect);
Thank you for your reply.
I don't think this will completely solve my problem. I know that this will still allow my GUI to be resizable, which I don't want. Is there a way then to lock that size once it adjusts so the user cannot adjust the size of the window?
Thank you!
|