home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form ExOption
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "Export"
- ClientHeight = 1635
- ClientLeft = 2310
- ClientTop = 2610
- ClientWidth = 5160
- ClipControls = 0 'False
- Height = 2040
- Left = 2250
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1635
- ScaleWidth = 5160
- Top = 2265
- Width = 5280
- Begin CommandButton btnCancel
- Cancel = -1 'True
- Caption = "&Cancel"
- Height = 465
- Left = 3600
- TabIndex = 2
- Top = 990
- Width = 1365
- End
- Begin CommandButton btnStatement
- Caption = "&Statement"
- Default = -1 'True
- Height = 465
- Left = 1890
- TabIndex = 0
- Top = 990
- Width = 1365
- End
- Begin CommandButton btnFunction
- Caption = "&Function"
- Height = 465
- Left = 180
- TabIndex = 1
- Top = 990
- Width = 1365
- End
- Begin Image Icon
- Height = 540
- Left = 180
- Picture = EXOPTION.FRX:0000
- Top = 270
- Width = 540
- End
- Begin Label MessageText
- BackColor = &H00C0C0C0&
- Caption = "Export Code To Visual Basic Code Window As A VB Function Or Statement?"
- Height = 375
- Left = 900
- TabIndex = 3
- Top = 360
- Width = 4065
- End
- Option Explicit
- Sub btnCancel_Click ()
- 'signal Cancel button selected
- MBD_BtnReturned = IDCANCEL
- 'remove form
- Me.Hide
- End Sub
- Sub btnFunction_Click ()
- 'signal Function button selected
- MBD_BtnReturned = IDYES
- 'remove form
- Me.Hide
- End Sub
- Sub btnStatement_Click ()
- 'signal Statement button selected
- MBD_BtnReturned = IDNO
- 'remove form
- Me.Hide
- End Sub
- Sub Form_Load ()
- 'centre form on screen
- Center_Form Me
- End Sub
-