home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.MDIForm frmMain
- BackColor = &H8000000C&
- Caption = "
- ClientHeight = 4395
- ClientLeft = 240
- ClientTop = 1785
- ClientWidth = 7275
- LinkTopic = "MDIForm1"
- Begin VB.Menu mnuOptions
- Caption = "
- (&O)"
- Begin VB.Menu mnuClickLine
- Caption = "
- (&C)"
- End
- Begin VB.Menu mnuScribble
- Caption = "
- (&S)"
- End
- Begin VB.Menu mnuDragDrop
- Caption = "
- (&D)"
- End
- Begin VB.Menu sep1
- Caption = "-"
- End
- Begin VB.Menu mnuInstructions
- Caption = "
- (&I)"
- End
- Begin VB.Menu sep2
- Caption = "-"
- End
- Begin VB.Menu mnuExit
- Caption = "
- (&E)"
- End
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub MDIForm_Unload(Cancel As Integer)
- End
- End Sub
- Private Sub mnuClickLine_Click()
- frmClickLine.Cls
- End Sub
- Private Sub mnuDragDrop_Click()
- frmDrag.Show
- End Sub
- Private Sub mnuExit_Click()
- End
- End Sub
- Private Sub mnuInstructions_Click()
- '
- Dim MsgText
- Dim CR
- Dim PB
- '
- CR = Chr$(10) & Chr$(13)
- PB = Chr$(10) & Chr$(13) & Chr$(10) & Chr$(13)
- '
- MsgText = "
- MsgText = MsgText & CR & "
- MsgText = MsgText & PB & "
- MsgText = MsgText & CR & "
- MsgText = MsgText & PB & "
- MsgText = MsgText & CR & "
- (.txt),
- (.bmp), Windows
- (.exe),
- Help
- (.hlp)
- '
- MsgBox MsgText, 64, "
- End Sub
- Private Sub mnuScribble_Click()
- frmScribble.Cls
- End Sub
-