fInputBox.frm
上传用户:jnjasmy
上传日期:2015-01-04
资源大小:637k
文件大小:4k
源码类别:

GDI/图象编程

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form fInput 
  3.    BackColor       =   &H00F0F0F0&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "Dialog Caption"
  6.    ClientHeight    =   1860
  7.    ClientLeft      =   2760
  8.    ClientTop       =   3750
  9.    ClientWidth     =   6030
  10.    BeginProperty Font 
  11.       Name            =   "Segoe UI"
  12.       Size            =   9
  13.       Charset         =   0
  14.       Weight          =   400
  15.       Underline       =   0   'False
  16.       Italic          =   0   'False
  17.       Strikethrough   =   0   'False
  18.    EndProperty
  19.    Icon            =   "fInputBox.frx":0000
  20.    LinkTopic       =   "Form1"
  21.    LockControls    =   -1  'True
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    ScaleHeight     =   1860
  25.    ScaleWidth      =   6030
  26.    ShowInTaskbar   =   0   'False
  27.    StartUpPosition =   1  'CenterOwner
  28.    Begin AeroSuite.AeroButton OKButton 
  29.       Default         =   -1  'True
  30.       Height          =   375
  31.       Left            =   4680
  32.       TabIndex        =   3
  33.       Top             =   120
  34.       Width           =   1215
  35.       _ExtentX        =   2143
  36.       _ExtentY        =   661
  37.       Caption         =   "OK"
  38.       BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  39.          Name            =   "Segoe UI"
  40.          Size            =   9
  41.          Charset         =   0
  42.          Weight          =   400
  43.          Underline       =   0   'False
  44.          Italic          =   0   'False
  45.          Strikethrough   =   0   'False
  46.       EndProperty
  47.    End
  48.    Begin AeroSuite.AeroTextBox tInput 
  49.       Height          =   300
  50.       Left            =   120
  51.       TabIndex        =   1
  52.       Top             =   1440
  53.       Width           =   5775
  54.       _ExtentX        =   10186
  55.       _ExtentY        =   529
  56.       BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  57.          Name            =   "Segoe UI"
  58.          Size            =   9
  59.          Charset         =   0
  60.          Weight          =   400
  61.          Underline       =   0   'False
  62.          Italic          =   0   'False
  63.          Strikethrough   =   0   'False
  64.       EndProperty
  65.       Text            =   ""
  66.    End
  67.    Begin AeroSuite.AeroBasicForm AeroBasicForm1 
  68.       Height          =   720
  69.       Left            =   600
  70.       TabIndex        =   0
  71.       Top             =   1080
  72.       Width           =   720
  73.       _ExtentX        =   1270
  74.       _ExtentY        =   1270
  75.    End
  76.    Begin AeroSuite.AeroButton CancelButton 
  77.       Cancel          =   -1  'True
  78.       Height          =   375
  79.       Left            =   4680
  80.       TabIndex        =   4
  81.       Top             =   600
  82.       Width           =   1215
  83.       _ExtentX        =   2143
  84.       _ExtentY        =   661
  85.       Caption         =   "Cancel"
  86.       BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  87.          Name            =   "Segoe UI"
  88.          Size            =   9
  89.          Charset         =   0
  90.          Weight          =   400
  91.          Underline       =   0   'False
  92.          Italic          =   0   'False
  93.          Strikethrough   =   0   'False
  94.       EndProperty
  95.    End
  96.    Begin VB.Label lPrompt 
  97.       AutoSize        =   -1  'True
  98.       BackStyle       =   0  'Transparent
  99.       Caption         =   "Main Instruction"
  100.       ForeColor       =   &H00000000&
  101.       Height          =   225
  102.       Left            =   120
  103.       TabIndex        =   2
  104.       Top             =   120
  105.       Width           =   1305
  106.    End
  107. End
  108. Attribute VB_Name = "fInput"
  109. Attribute VB_GlobalNameSpace = False
  110. Attribute VB_Creatable = False
  111. Attribute VB_PredeclaredId = True
  112. Attribute VB_Exposed = False
  113. Option Explicit
  114. Public Canceled As Boolean
  115. Private Sub CancelButton_Click()
  116.   Canceled = True
  117.   Hide
  118. End Sub
  119. Private Sub OKButton_Click()
  120.   Hide
  121. End Sub