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

📄 form1.frm

📁 Visual Basic 6 大学教程的代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmReplace 
   Caption         =   "Replacing substrings in a string"
   ClientHeight    =   1515
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   1515
   ScaleWidth      =   4680
   StartUpPosition =   3  'Windows Default
   Begin VB.TextBox txtInput 
      Height          =   285
      Left            =   0
      TabIndex        =   2
      Top             =   360
      Width           =   4695
   End
   Begin VB.CommandButton cmdReplace 
      Caption         =   "Replace spaces with two periods"
      Height          =   375
      Left            =   0
      TabIndex        =   1
      Top             =   720
      Width           =   3375
   End
   Begin VB.Label lblOutput 
      Height          =   255
      Left            =   0
      TabIndex        =   3
      Top             =   1200
      Width           =   4695
   End
   Begin VB.Label lblInput 
      Caption         =   "Enter phrase"
      Height          =   255
      Left            =   0
      TabIndex        =   0
      Top             =   120
      Width           =   2295
   End
End
Attribute VB_Name = "frmReplace"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Fig. 8.9
' Using Replace to replace substrings in a string
Option Explicit

Private Sub cmdReplace_Click()
   lblOutput.Caption = Replace(txtInput.Text, " ", "..")
End Sub

⌨️ 快捷键说明

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