Phil Thoms
Programmer
How do you get rid of the Fox Icon in a form title bar and switching off the title bar doesn't seem to work properly also I want to delete the closable button in top right-hand corner. Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Local llClose
llClose = .f.
Do Case
Case Thisform.ReleaseType = 0
* variable released.
* don't deny closing, programmer should know what he does
llClose = .t.
Case Thisform.ReleaseType = 1
* user clicked close menu command or close box button
If Not Thisform.savechanges()
MessageBox("didn't yet save data")
llClose = .f.
EndIf
Case Thisform.ReleaseType = 2
* Windows is shutting down
TableRevert(.t.)
llClose = .t.
EndCase
Return llClose
is there a way of NOT including it in the title bar
philthoms said:Going back to the Fox Icon - is there a way of NOT including it in the title bar ?