3-8.frm
来自「Visual Basic课程举例1 有很好的例题」· FRM 代码 · 共 40 行
FRM
40 行
VERSION 5.00
Begin VB.Form Form1
Caption = "3-8"
ClientHeight = 1650
ClientLeft = 60
ClientTop = 345
ClientWidth = 3615
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 1650
ScaleWidth = 3615
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "显示1~15间的奇数"
Height = 375
Left = 480
TabIndex = 0
Top = 960
Width = 2775
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
For i = 1 To 15
If i Mod 2 = 1 Then Print i;
Next i
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?