To disable the control boxes (max/min/restore..) here's some info from Microsoft (pertains to XL2000, but will probably work with later versions as is or with some gentle massaging):
http://support.microsoft.com/kb/213502
As for disabling the File-Properties menu, try this:
Sub HidePropItem()
Application.CommandBars("Worksheet Menu Bar").FindControl _
(ID:=750, Recursive:=True).Enabled = False
End Sub
If you do this, make sure that the workbook's close event restores the Properties menu, otherwise it will stay hidden for all workbooks you (and other users) use. Simply change .Enabled = False to .Enabled = True.
Bookmarks