⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 practice9_9.frm

📁 深圳大学的vb上机与教学的课件
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   3450
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4185
   LinkTopic       =   "Form1"
   ScaleHeight     =   3450
   ScaleWidth      =   4185
   StartUpPosition =   2  '屏幕中心
   Begin VB.VScrollBar VScroll1 
      Height          =   3135
      LargeChange     =   5
      Left            =   1800
      Max             =   0
      Min             =   100
      TabIndex        =   0
      Top             =   120
      Width           =   615
   End
   Begin VB.Label Label8 
      BorderStyle     =   1  'Fixed Single
      Height          =   375
      Left            =   2640
      TabIndex        =   8
      Top             =   1440
      Width           =   615
   End
   Begin VB.Label Label7 
      BorderStyle     =   1  'Fixed Single
      Height          =   375
      Left            =   960
      TabIndex        =   7
      Top             =   1440
      Width           =   615
   End
   Begin VB.Label Label6 
      Caption         =   "摄氏"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   2760
      TabIndex        =   6
      Top             =   1080
      Width           =   495
   End
   Begin VB.Label Label5 
      Caption         =   "华氏"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   1080
      TabIndex        =   5
      Top             =   1080
      Width           =   495
   End
   Begin VB.Label Label4 
      Caption         =   "0"
      Height          =   255
      Left            =   2640
      TabIndex        =   4
      Top             =   2880
      Width           =   375
   End
   Begin VB.Label Label3 
      Caption         =   "32"
      Height          =   255
      Left            =   1320
      TabIndex        =   3
      Top             =   2880
      Width           =   375
   End
   Begin VB.Label Label2 
      Caption         =   "100"
      Height          =   255
      Left            =   2640
      TabIndex        =   2
      Top             =   0
      Width           =   375
   End
   Begin VB.Label Label1 
      Caption         =   "212"
      Height          =   255
      Left            =   1320
      TabIndex        =   1
      Top             =   0
      Width           =   375
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False




Private Sub Form_Load()
  Label8.Caption = VScroll1.Value
  Label7.Caption = (212 - 32) / 100 * VScroll1.Value + 32
End Sub

Private Sub VScroll1_Change()
  Label8.Caption = VScroll1.Value
  Label7.Caption = (212 - 32) / 100 * VScroll1.Value + 32
End Sub

Private Sub VScroll1_Scroll()
  Label8.Caption = VScroll1.Value
  Label7.Caption = (212 - 32) / 100 * VScroll1.Value + 32
End Sub

⌨️ 快捷键说明

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