📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "循环嵌套"
ClientHeight = 2460
ClientLeft = 60
ClientTop = 345
ClientWidth = 7320
LinkTopic = "Form1"
ScaleHeight = 2460
ScaleWidth = 7320
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture1
Height = 3855
Left = 0
ScaleHeight = 3795
ScaleWidth = 7275
TabIndex = 0
Top = 0
Width = 7335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
'******************************************************************
'************** 过程名称:Picture1_Click
'************** 参数: 无
'******************************************************************
Private Sub Picture1_Click()
Dim se As String
Picture1.Print Tab(35); "九九乘法表"
Picture1.Print Tab(35); "---------------"
For i = 1 To 9
For j = 1 To 9
se = i & "*" & j & "=" & i * j
Picture1.Print Tab((j - 1) * 9 + 1); se;
Next j
Picture1.Print
Next i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -