- Local time
- Today, 22:00
- Joined
- Sep 12, 2006
- Messages
- 16,084
don't know why these are different colours - must br the php setting
anyway, i am trying to stop users getting at the dbwindow without using security. and i am setting these dbs properties. this is working to a ponit, but it still allows users to cutomise the toolbar, and thereby add the dbs window icon etc.
is there any way without using security that i can prevent this - ie would setting AllowBuiltinToolbars to false do so. This is a bit tricky as i would rather have users able to see certain buttons for the functionality.
do i have to create my own applcation tool bar?
or can i not do this at all
any help would be appreciated
anyway, i am trying to stop users getting at the dbwindow without using security. and i am setting these dbs properties. this is working to a ponit, but it still allows users to cutomise the toolbar, and thereby add the dbs window icon etc.
is there any way without using security that i can prevent this - ie would setting AllowBuiltinToolbars to false do so. This is a bit tricky as i would rather have users able to see certain buttons for the functionality.
do i have to create my own applcation tool bar?
or can i not do this at all
any help would be appreciated
PHP:
ChangeProperty "StartupShowDBWindow", dbBoolean, False 'hide the dbwindow
ChangeProperty "AllowBreakIntoCode", dbBoolean, False 'show code after error
ChangeProperty "AllowSpecialKeys", dbBoolean, False 'special keys
ChangeProperty "AllowBypassKey", dbBoolean, False 'bypass key
ChangeProperty "StartupShowStatusBar", dbBoolean, True 'status bar
ChangeProperty "AllowFullMenus", dbBoolean, False 'full menus
ChangeProperty "AllowShortCutMenus", dbBoolean, True 'shortcut menus
ChangeProperty "AllowBuiltinToolbars", dbBoolean, True 'built in tool bars