⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 3.frm

📁 codding for pszone one can use it at playstation zones
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form3 
   Caption         =   "Form3"
   ClientHeight    =   4155
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   6810
   LinkTopic       =   "Form3"
   ScaleHeight     =   4155
   ScaleWidth      =   6810
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Command2 
      Caption         =   "EXIT"
      Height          =   855
      Left            =   3120
      TabIndex        =   5
      Top             =   2880
      Width           =   1815
   End
   Begin VB.CommandButton Command1 
      Caption         =   "PRINT"
      Height          =   855
      Left            =   1320
      TabIndex        =   4
      Top             =   2880
      Width           =   1815
   End
   Begin VB.TextBox Text2 
      Alignment       =   2  'Center
      Height          =   855
      Left            =   3240
      TabIndex        =   1
      Text            =   "0"
      Top             =   1680
      Width           =   1815
   End
   Begin VB.TextBox Text1 
      Height          =   855
      Left            =   3240
      TabIndex        =   0
      Top             =   600
      Width           =   1815
   End
   Begin VB.Label Label2 
      Caption         =   "SUM IS"
      Height          =   855
      Left            =   960
      TabIndex        =   3
      Top             =   1800
      Width           =   1815
   End
   Begin VB.Label Label1 
      Caption         =   "NUMBER 1"
      Height          =   855
      Left            =   1080
      TabIndex        =   2
      Top             =   600
      Width           =   1815
   End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim ANYSUM As Integer
ANYSUM = Text2.Text
Text2.Text = Text1.Text + ANYSUM
Text1.Text = " "
End Sub

Private Sub Command2_Click()
End
End Sub

⌨️ 快捷键说明

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