?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "登錄"
ClientHeight = 2565
ClientLeft = 60
ClientTop = 345
ClientWidth = 3225
LinkTopic = "Form1"
ScaleHeight = 2565
ScaleWidth = 3225
StartUpPosition = 3 '窗口缺省
Begin VB.CheckBox Check1
Caption = "以密碼方式顯示用戶名"
Height = 495
Left = 240
TabIndex = 4
Top = 1680
Width = 2175
End
Begin VB.TextBox Text2
Height = 375
IMEMode = 3 'DISABLE
Left = 1320
PasswordChar = "*"
TabIndex = 3
Top = 840
Width = 1335
End
Begin VB.TextBox Text1
Height = 375
Left = 1320
TabIndex = 2
Top = 240
Width = 1335
End
Begin VB.Label Label2
Caption = "密碼:"
Height = 375
Left = 120
TabIndex = 1
Top = 840
Width = 615
End
Begin VB.Label Label1
Caption = "用戶名:"
Height = 375
Left = 120
TabIndex = 0
Top = 240
Width = 975
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Check1_Click()
If Check1.Value = 1 Then
Text1.PasswordChar = "#"
Else
Text1.PasswordChar = ""
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -