?? 大寫字母的轉換.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 4440
ClientLeft = 60
ClientTop = 450
ClientWidth = 7605
LinkTopic = "Form1"
ScaleHeight = 4440
ScaleWidth = 7605
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 2055
Left = 120
TabIndex = 1
Top = 2280
Width = 7215
End
Begin VB.TextBox Text1
Height = 1935
Left = 120
TabIndex = 0
Top = 120
Width = 7335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Text1_Change()
End Sub
Private Sub Text2_Click()
Dim ss As String * 1
Dim i As Integer
i = 0
Do While (i < Len(Text1.Text))
If i = 0 Then
ss = UCase$(Mid(Text1.Text, i + 1, 1))
Text2.Text = ss
oru = Text2.Text
ElseIf Mid$(Text1.Text, i, 1) = "." Then
ss = UCase$(Mid$(Text1.Text, i + 1, 1))
oru = oru & ss
Text2.Text = oru
Else
ss = LCase$(Mid$(Text1.Text, i + 1, 1))
oru = oru & ss
Text2.Text = oru
End If
i = i + 1
Loop
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -