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: Select all Expand view
- oASKFORM:bResized := { |nType, nWidth, nHeight| oASKFORM:SetSize(nWidth, nHeight) }
which was not the Solution
i have to use "fix" Size
- Code: Select all Expand view
- oASKFORM:bResized := { |nType, nWidth, nHeight| oASKFORM:SetSize( 534,270) } }
to "block resize"
how can i use "same Size" correct with o:bResized under Fivewin