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

📄 例[6-17].frm

📁 蒋加伏主编VB程序设计第四版PPT及全部课本源码 北京邮电大学出版社 Visual Basic 程序设计教程(第四版) 主编 蒋加伏 张林峰 找了好久的(不带密码的)
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "例[6-17] 设置速度"
   ClientHeight    =   3090
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3375
   LinkTopic       =   "Form1"
   ScaleHeight     =   3090
   ScaleWidth      =   3375
   StartUpPosition =   3  '窗口缺省
   Begin VB.HScrollBar HScroll1 
      Height          =   375
      LargeChange     =   10
      Left            =   360
      Max             =   100
      SmallChange     =   2
      TabIndex        =   2
      Top             =   1080
      Width           =   2655
   End
   Begin VB.TextBox Text1 
      Height          =   615
      Left            =   1080
      TabIndex        =   1
      Top             =   240
      Width           =   1455
   End
   Begin VB.Label Label4 
      BorderStyle     =   1  'Fixed Single
      Height          =   615
      Left            =   840
      TabIndex        =   5
      Top             =   2040
      Width           =   1695
   End
   Begin VB.Label Label3 
      Caption         =   "快"
      Height          =   375
      Left            =   2760
      TabIndex        =   4
      Top             =   1560
      Width           =   495
   End
   Begin VB.Label Label2 
      Caption         =   "慢"
      Height          =   375
      Left            =   360
      TabIndex        =   3
      Top             =   1560
      Width           =   735
   End
   Begin VB.Label Label1 
      Caption         =   "速度"
      Height          =   495
      Left            =   240
      TabIndex        =   0
      Top             =   360
      Width           =   735
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub HScroll1_Change()
  Text1.Text = HScroll1.Value
End Sub

Private Sub HScroll1_Scroll()
  Label4.Caption = "Moving to " & HScroll1.Value
End Sub

⌨️ 快捷键说明

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