B4J Question Windows window icons

strupp01

Active Member
Licensed User
Longtime User
Is it possible to switch off, hide or query the window icons 'minimize', 'reduce', 'close' (see picture below)?

upload_2017-7-8_13-9-47.png
 

keirS

Well-Known Member
Licensed User
Longtime User
B4X:
MainForm = Form1
MainForm.SetFormStyle("UNDECORATED")
 MainForm.Show

You have to call SetFormStyle before the Form is shown.
 
Upvote 0
Top