- VERSION 5.00
- Begin VB.Form fInput
- BackColor = &H00F0F0F0&
- BorderStyle = 3 'Fixed Dialog
- Caption = "Dialog Caption"
- ClientHeight = 1860
- ClientLeft = 2760
- ClientTop = 3750
- ClientWidth = 6030
- BeginProperty Font
- Name = "Segoe UI"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "fInputBox.frx":0000
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1860
- ScaleWidth = 6030
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- Begin AeroSuite.AeroButton OKButton
- Default = -1 'True
- Height = 375
- Left = 4680
- TabIndex = 3
- Top = 120
- Width = 1215
- _ExtentX = 2143
- _ExtentY = 661
- Caption = "OK"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Segoe UI"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- End
- Begin AeroSuite.AeroTextBox tInput
- Height = 300
- Left = 120
- TabIndex = 1
- Top = 1440
- Width = 5775
- _ExtentX = 10186
- _ExtentY = 529
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Segoe UI"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Text = ""
- End
- Begin AeroSuite.AeroBasicForm AeroBasicForm1
- Height = 720
- Left = 600
- TabIndex = 0
- Top = 1080
- Width = 720
- _ExtentX = 1270
- _ExtentY = 1270
- End
- Begin AeroSuite.AeroButton CancelButton
- Cancel = -1 'True
- Height = 375
- Left = 4680
- TabIndex = 4
- Top = 600
- Width = 1215
- _ExtentX = 2143
- _ExtentY = 661
- Caption = "Cancel"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Segoe UI"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- End
- Begin VB.Label lPrompt
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Main Instruction"
- ForeColor = &H00000000&
- Height = 225
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 1305
- End
- End
- Attribute VB_Name = "fInput"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public Canceled As Boolean
- Private Sub CancelButton_Click()
- Canceled = True
- Hide
- End Sub
- Private Sub OKButton_Click()
- Hide
- End Sub