📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form frmStrReverse
Caption = "Reversing a string with StrReverse"
ClientHeight = 1710
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 1710
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.TextBox txtOutput
Height = 285
Left = 0
TabIndex = 4
Top = 1440
Width = 4695
End
Begin VB.TextBox txtInput
Height = 285
Left = 0
TabIndex = 2
Top = 360
Width = 4695
End
Begin VB.CommandButton cmdReverse
Caption = "Reverse the string"
Height = 375
Left = 0
TabIndex = 1
Top = 720
Width = 1815
End
Begin VB.Label lblOutput
Caption = "The reversed string is"
Height = 255
Left = 0
TabIndex = 3
Top = 1200
Width = 4695
End
Begin VB.Label lblInput
Caption = "Enter a string"
Height = 255
Left = 0
TabIndex = 0
Top = 120
Width = 2295
End
End
Attribute VB_Name = "frmStrReverse"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Fig. 8.10
' Using StrReverse to reverse the characters in a string
Option Explicit
Private Sub cmdReverse_Click()
txtOutput.Text = StrReverse(txtInput.Text)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -