Hello!
I try to find a solution to hide the window system buttons, unfortunatelly I did not find any setup/simple solution to switch on/off something within the attributums which would operate.
Can you help me soemone? e.g simple login window where I don’t need the syetem buttons.
Now, I can warn the user if use e.g system close button during the login process, but it can be simplified by the hiding. Finally, I solved it by API functions, but realy hard to beleive, there is not a simpler solution…
HI,
to hide that buttons, when you select the window in designer, on properties tab you must put Frame type to None, and Caption must be empty
Hi,
Just clear the Window’s title
If you remove the SYSTEM attribute from the Window that gets rid of Close.
Remove MAX attribute that gets rid of Maxmize.
Remove the Icon to get rid of Minimize. You can also leave the Icon and make Minimize not work by in Event:Iconize doing a CYCLE.
From my list of code snips this one removes Minimize but leaves the Icon. I think can be changed to hide others.
2 Likes
Hi!
Thanks for all of you the useful help!
BR