FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour NOSIZE / NORESIZE
Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
NOSIZE / NORESIZE
Posted: Sat Nov 05, 2022 09:04 AM
hi,

i have use NOMAXIMIZE, NOMINIMIZE so only "X" Buuton is left
but you can "resize" Form as there is no Keyword NOSIZE / NORESIZE under Fivewin :(

---

i try to use
Code (fw): Select all Collapse
oASKFORM:bResized  := { |nType, nWidth, nHeight| oASKFORM:SetSize(nWidth, nHeight) }
which was not the Solution :(

i have to use "fix" Size
Code (fw): Select all Collapse
oASKFORM:bResized  := { |nType, nWidth, nHeight| oASKFORM:SetSize( 534,270) } }
to "block resize"

how can i use "same Size" correct with o:bResized under Fivewin :?:
greeting,

Jimmy
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM
Re: NOSIZE / NORESIZE
Posted: Sat Nov 05, 2022 09:31 AM

If you want a not resizeable form then use a dialog.

Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
Re: NOSIZE / NORESIZE
Posted: Sat Nov 05, 2022 09:56 AM
hi Enrico,
Enrico Maria Giordano wrote:If you want a not resizeable form then use a dialog.
ah ... Ok have not use DIALOG yet, thx
greeting,

Jimmy

Continue the discussion