home *** CD-ROM | disk | FTP | other *** search
Null Bytes Alternating | 1997-01-09 | 1.9 KB | 28 lines |
- '++LotusScript Development Environment:2:5:(Options):0:66
-
- '++LotusScript Development Environment:2:5:(Forward):0:1
- Declare Sub Initialize
-
- '++LotusScript Development Environment:2:5:(Declarations):0:2
-
- '++LotusScript Development Environment:2:2:BindEvents:1:129
- Private Sub BindEvents(Byval Objectname_ As String)
- Static Source As DOCUMENT
- Set Source = Bind(Objectname_)
- End Sub
-
- '++LotusScript Development Environment:2:2:Initialize:1:10
- Sub Initialize
- ' Initialize event on the Schedule Document object
- ' This script runs when the Schedule.MPR or Schedule.APR
- ' is opened.
- ' It hides command bars of the Approach window to make a clean window for
- ' the application. Also, the functionality of these sections is replaced by buttons
- ' in the application's interface.
-
- currentwindow.actionbarvisible = False
- currentwindow.statusbarvisible = False
- currentwindow.viewtabvisible = False
- currentwindow.iconbarvisible = False
-
- End Sub ' Initialize event for Schedule document