home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form VidSynop
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- ClientHeight = 6480
- ClientLeft = 1065
- ClientTop = 480
- ClientWidth = 6795
- ControlBox = 0 'False
- Height = 6885
- HelpContextID = 240
- Left = 1005
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 6480
- ScaleWidth = 6795
- Top = 135
- Width = 6915
- WindowState = 2 'Maximized
- Begin CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "&Cancel"
- Height = 465
- HelpContextID = 240
- Left = 4860
- TabIndex = 2
- Top = 150
- Width = 1230
- End
- Begin CommandButton cmdDone
- Caption = "&Done"
- Default = -1 'True
- Height = 465
- HelpContextID = 240
- Left = 3330
- TabIndex = 1
- Top = 150
- Width = 1230
- End
- Begin TextBox txtSynopsis
- BackColor = &H0000FFFF&
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 5940
- HelpContextID = 240
- Left = 270
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Top = 750
- Width = 9015
- End
- ' Subsystem: Edit
- ' Module: VidSynop.Frm
- ' Date: 01/03/94
- ' Author: Richard Stauch
- ' Notes:
- ' This form displays up to MAXROWs of Video table data in
- ' a grid form for review.
- Option Explicit
- DefInt A-Z
- Sub cmdCancel_Click ()
- ' Remove the Synopsis form from the display.
- Unload VidSynop
- End Sub
- Sub cmdDone_Click ()
- ' Save the Synopsis text (edited or not).
- Synopsis$ = txtSynopsis.Text
- ' Call the Click event of the Cancel button.
- cmdCancel_Click
- End Sub
- Sub Form_Load ()
- ' Load the form, and set the Synopsis text.
- txtSynopsis.Text = Synopsis$
- End Sub
-