frmfloodinfo.frm

来自「FloodEvaluation-程序是gis方面的程序」· FRM 代码 · 共 74 行

FRM
74
字号
VERSION 5.00
Begin VB.Form frmFloodInfo 
   Caption         =   "洪水信息"
   ClientHeight    =   1890
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   3540
   Icon            =   "frmFloodInfo.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   1890
   ScaleWidth      =   3540
   StartUpPosition =   3  'Windows Default
   Begin VB.Frame Frame1 
      Height          =   1215
      Left            =   120
      TabIndex        =   1
      Top             =   120
      Width           =   3255
      Begin VB.TextBox txtFloodName 
         Height          =   375
         Left            =   1560
         TabIndex        =   3
         Text            =   "北江洪水20040520"
         Top             =   240
         Width           =   1455
      End
      Begin VB.TextBox txtFloodDate 
         Height          =   375
         Left            =   1560
         TabIndex        =   2
         Text            =   "20040520"
         Top             =   720
         Width           =   1455
      End
      Begin VB.Label label3 
         Caption         =   "请输入洪水名称:"
         Height          =   255
         Left            =   120
         TabIndex        =   5
         Top             =   240
         Width           =   1455
      End
      Begin VB.Label Label1 
         Caption         =   "请输入洪水日期:"
         Height          =   255
         Left            =   120
         TabIndex        =   4
         Top             =   720
         Width           =   1455
      End
   End
   Begin VB.CommandButton cmdOK 
      Caption         =   "确  认"
      Height          =   375
      Left            =   1320
      TabIndex        =   0
      Top             =   1440
      Width           =   855
   End
End
Attribute VB_Name = "frmFloodInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOK_Click()
'Dim theFloodName As String, theFloodDate As String, bFloodInfoOK As Boolean
    theFloodName = txtFloodName
    theFloodDate = txtFloodDate
    bFloodInfoOK = True
    Unload Me
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?