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

📄 frmtextbox.frm

📁 Visual Basic 6 大学教程的代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmTextBox 
   Caption         =   "Fig. 10.6: TextBoxes"
   ClientHeight    =   2235
   ClientLeft      =   2535
   ClientTop       =   2535
   ClientWidth     =   4470
   LinkTopic       =   "Form1"
   ScaleHeight     =   2235
   ScaleWidth      =   4470
   Begin VB.TextBox txtInput 
      Height          =   495
      Left            =   255
      TabIndex        =   0
      Text            =   "Enter some text here..."
      Top             =   105
      Width           =   3990
   End
   Begin VB.TextBox txtDisplay 
      Height          =   1275
      Left            =   255
      MousePointer    =   12  'No Drop
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   1
      ToolTipText     =   "Multilined TextBox with scrollbars"
      Top             =   795
      Width           =   3990
   End
End
Attribute VB_Name = "frmTextBox"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Fig. 10.6
' Demonstrating the TextBox Control
Option Explicit

Private Sub txtInput_Change()
   txtDisplay.Text = txtInput.Text   ' Copy to other TextBox
End Sub

⌨️ 快捷键说明

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