home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmNewDocuments
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "New - File"
- ClientHeight = 30
- ClientLeft = 15750
- ClientTop = 3270
- ClientWidth = 4710
- ControlBox = 0 'False
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MDIChild = -1 'True
- MinButton = 0 'False
- Moveable = 0 'False
- ScaleHeight = 30
- ScaleWidth = 4710
- ShowInTaskbar = 0 'False
- Begin VB.Label Label1
- Caption = "Please pick a option or press cancel..."
- Height = 15
- Left = 240
- TabIndex = 0
- Top = 0
- Width = 2895
- End
- Begin VB.Menu mnuTextDoc
- Caption = "New &Text Document"
- End
- Begin VB.Menu mnuRitchTextDoc
- Caption = "New &Ritch Text Document"
- End
- Begin VB.Menu mnuCancel
- Caption = "&Cancel"
- NegotiatePosition= 2 'Middle
- End
- Attribute VB_Name = "frmNewDocuments"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- Me.Height = 645
- Me.Width = 4800
- frmNewDocuments.Visible = False
- End Sub
- Private Sub mnuCancel_Click()
- Unload frmNewDocuments
- End Sub
- Private Sub mnuRitchTextDoc_Click()
- LoadNewDoc
- Unload frmNewDocuments
- End Sub
- Private Sub mnuTextDoc_Click()
- LoadNewTextDoc
- Unload frmNewDocuments
- End Sub
-