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

📄 frmparingtype.frm

📁 21加密算法,用vB语言编写实现,可了解各种加密算法的结构
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmParingType 
   Caption         =   "Paring type"
   ClientHeight    =   1155
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3000
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   ScaleHeight     =   1155
   ScaleWidth      =   3000
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton Command2 
      Caption         =   "Type 2"
      Height          =   375
      Left            =   1440
      TabIndex        =   2
      Top             =   600
      Width           =   855
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Type 1"
      Height          =   375
      Left            =   240
      TabIndex        =   1
      Top             =   600
      Width           =   855
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      Caption         =   "Give the type of Paring U want"
      Height          =   255
      Left            =   -30
      TabIndex        =   0
      Top             =   120
      Width           =   2925
   End
End
Attribute VB_Name = "frmParingType"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False




Private Sub Command1_Click()
    ParingType = 0
    Me.Hide
End Sub

Private Sub Command2_Click()
    ParingType = 1
    Me.Hide
End Sub

⌨️ 快捷键说明

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