frmsetting.frm

来自「完整的VB和单片机系统连接的源代码」· FRM 代码 · 共 113 行

FRM
113
字号
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmSetting 
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "设置"
   ClientHeight    =   2025
   ClientLeft      =   45
   ClientTop       =   315
   ClientWidth     =   3150
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2025
   ScaleWidth      =   3150
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdClose 
      Caption         =   "关闭"
      Height          =   375
      Left            =   840
      TabIndex        =   8
      Top             =   1440
      Width           =   1095
   End
   Begin VB.Frame frameWell 
      Caption         =   "矿井参数"
      Height          =   1455
      Left            =   600
      TabIndex        =   2
      Top             =   3480
      Width           =   4455
      Begin VB.TextBox Text1 
         Height          =   270
         Left            =   2160
         TabIndex        =   5
         Text            =   "1000"
         Top             =   840
         Width           =   1215
      End
      Begin VB.TextBox txtGapDepth 
         Height          =   270
         Left            =   1200
         TabIndex        =   3
         Text            =   "10000"
         Top             =   240
         Width           =   1215
      End
      Begin VB.Label Label4 
         Caption         =   "井深"
         Height          =   255
         Left            =   360
         TabIndex        =   6
         Top             =   840
         Width           =   1575
      End
      Begin VB.Label Label3 
         Caption         =   "脉冲距离"
         Height          =   255
         Left            =   240
         TabIndex        =   4
         Top             =   240
         Width           =   735
      End
   End
   Begin VB.CommandButton cmdOk 
      Caption         =   "确定"
      Height          =   375
      Left            =   3120
      TabIndex        =   1
      Top             =   5400
      Width           =   855
   End
   Begin VB.CommandButton cmdCancel 
      Caption         =   "取消"
      Height          =   375
      Left            =   4320
      TabIndex        =   0
      Top             =   5400
      Width           =   855
   End
   Begin MSComctlLib.Slider sldPicXscale 
      Height          =   255
      Left            =   360
      TabIndex        =   7
      Top             =   3720
      Width           =   3975
      _ExtentX        =   7011
      _ExtentY        =   450
      _Version        =   393216
      Min             =   1
      Max             =   50
      SelStart        =   1
      Value           =   1
   End
End
Attribute VB_Name = "frmSetting"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdClose_Click()
    Me.Hide
End Sub

Private Sub Form_Load()

End Sub

Private Sub frameCom_DragDrop(Source As Control, X As Single, Y As Single)

End Sub

⌨️ 快捷键说明

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