home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.MDIForm mdiOther
- AutoShowChildren= 0 'False
- BackColor = &H00C0C0C0&
- Caption = "MDIForm1"
- ClientHeight = 3990
- ClientLeft = 1095
- ClientTop = 1800
- ClientWidth = 7365
- Height = 4680
- Left = 1035
- LinkTopic = "MDIForm1"
- Top = 1170
- Width = 7485
- Begin VB.Menu mnuFile
- Caption = "&File"
- Begin VB.Menu mnuFileItems
- Caption = "E&xit"
- Index = 1
- End
- End
- Begin VB.Menu mnuView
- Caption = "&View"
- Begin VB.Menu mnuViewItems
- Caption = "&PowerPoint"
- Index = 1
- Shortcut = ^P
- End
- End
- Attribute VB_Name = "mdiOther"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub MDIForm_Load()
- Move 0, 0, Screen.Width, Screen.Height
- End Sub
- Private Sub mnuFileItems_Click(Index As Integer)
- Unload Me
- End Sub
- Private Sub mnuViewItems_Click(Index As Integer)
- Select Case Index
- Case 1
- frmPower.Show
- Case 2
- End Select
- End Sub
-