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

📄 msgform.frm

📁 e-maill文件加密程序完整的源代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form MsgForm 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "StealthMail"
   ClientHeight    =   1116
   ClientLeft      =   2952
   ClientTop       =   3012
   ClientWidth     =   3504
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   NegotiateMenus  =   0   'False
   ScaleHeight     =   1116
   ScaleWidth      =   3504
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton UserCancel 
      Caption         =   "No"
      Height          =   340
      Left            =   1800
      TabIndex        =   0
      Top             =   600
      Width           =   1250
   End
   Begin VB.CommandButton OK 
      Caption         =   "OK"
      Height          =   340
      Left            =   360
      TabIndex        =   1
      Top             =   600
      Width           =   1250
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   192
      Left            =   0
      TabIndex        =   2
      Top             =   168
      Width           =   516
   End
End
Attribute VB_Name = "MsgForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub OK_click()
    MsgRet% = 0
    Unload MsgForm
    DoEvents
End Sub

Private Sub UserCancel_Click()
    MsgRet% = -1
    Unload MsgForm
    DoEvents
End Sub

⌨️ 快捷键说明

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