form1.frm

来自「vb电子书籍」· FRM 代码 · 共 59 行

FRM
59
字号
   VERSION 5.00
   Begin VB.Form Form1
      BackColor       =   &H00E0E0E0&
      ClientHeight    =   3195
      ClientLeft      =   60
      ClientTop       =   345
      ClientWidth     =   6270
      FillColor       =   &H00C0C0C0&
      BeginProperty Font
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Icon            =   "Form1.frx":0000
      LinkTopic       =   "Form1"
      MaxButton       =   0   'False
      ScaleHeight     =   3195
      ScaleWidth      =   6270
      StartUpPosition =   2  '屏幕中心
   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


'##################################################################
'## 过程名称:Form_Click
'## 参数: 无
'##################################################################
Private Sub Form_Click()
    Dim i As Integer, isum As Integer
    For i = 1 To 5
        isum = sum(i)
        Print "isum="; isum,
    Next i
    
    
End Sub
    
'##################################################################
'## 函数名称:sum
'## 参数:n 为Integer型
''## 返回类型: 不确定
'##################################################################
Private Function sum(n As Integer)
    Dim j As Integer
    j = j + n
    sum = j
    
End Function
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?